“WSDL类型”;soapenc:string";无法解决

“WSDL类型”;soapenc:string";无法解决,soap,wsdl,websphere,jax-ws,rad,Soap,Wsdl,Websphere,Jax Ws,Rad,将我的WSDL导入RAD 8(websphere 6.1)会出现以下错误: <wsdl:part name="muid" type="soapenc:string"/> 无法解析muid引用的字符串类型 XSD:类型引用'http://schemas.xmlsoap.org/soap/encoding/#string'是未解析的字符串是已在“XML”架构中定义的类型。选中,哪个前缀用于引用命名空间http://www.w3.org/2001/XMLSchema(XML模式名称空

将我的WSDL导入RAD 8(websphere 6.1)会出现以下错误:

<wsdl:part name="muid" type="soapenc:string"/>

无法解析muid引用的字符串类型


XSD:类型引用'http://schemas.xmlsoap.org/soap/encoding/#string'是未解析的

字符串
是已在“XML”架构中定义的类型。选中,哪个前缀用于引用命名空间
http://www.w3.org/2001/XMLSchema
(XML模式名称空间)在WSDL中(很可能类似于
xsi
xs
xsd

然后把线路换成

<wsdl:part name="muid" type="xs:string"/>


其中
xs
是您的名称空间前缀。

相关帖子:和。
string
也在
http://schemas.xmlsoap.org/soap/encoding/
命名空间,基于位于该地址的XSD
soapenc:string
似乎是
xs:string
的扩展(添加其他属性),因此切换类型将限制此
wsdl:part
中允许的内容。