我遇到了一些wsdl schema命名空间地狱。
我有一个来自Axis Web服务的WSDL,我正在使用WCF生成存根服务以进行测试。
问题是,SVCUTIL工具可以很好地生成代码,但是在托管时,不会暴露任何方法。
我检查了WSDL并且有一行未通过验证。我试图检查这是否是罪魁祸首,但命名空间是如此混乱,我无法做出正面或反面。
所以,WSDL大致就是这样。我已经省略了WSDL绑定,服务和端口,因为我只想集中精力理解命名空间问题。
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:axis2="http://p1-services.customer.com/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:ns0="http://returnobject.foo.bar.com/xsd"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:ns1="http://ws.receiver.foo.bar.com" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
targetNamespace="http://p1-services.customer.com/">
<wsdl:documentation>WSP1IA01Service</wsdl:documentation>
<wsdl:types>
<xs:schema xmlns:ax22="http://returnobject.foo.bar.com/xsd"
attributeFormDefault="qualified"
elementFormDefault="qualified" targetNamespace="http://returnobject.foo.bar.com/xsd">
<xs:complexType name="ReturnEnvelope">
<xs:sequence>
<!-- Simplified -->
<xs:element minOccurs="0" name="errorCode" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
<xs:schema xmlns:ns="http://ws.receiver.foo.bar.com" attributeFormDefault="qualified" elementFormDefault="qualified"
targetNamespace="http://ws.receiver.foo.bar.com">
<xs:element name="setMessage">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="xmlMessage" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="setMessageResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:ReturnEnvelope"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</wsdl:types>
</wsdl:definitions>
验证失败的位是对SetMessageResponse元素中的ns0:ReturnEnvelope的引用。它说无法找到类型。
我无法理解为什么,因为上面声明了类型,targetNamespace指向NS0前缀。
有什么想法吗?这些类型声明应该如此复杂吗?
另外,这个结构的目的是什么:
<xs:schema xmlns:ax22="http://returnobject.foo.bar.com/xsd"
我已经读过,声明了前缀“ax22”以便在子元素中进一步使用。但它没有被使用,它与NS0命名空间冲突。
感谢您的帮助
答案 0 :(得分:1)
我不熟悉您的工具集,但我可以看到一个可能导致问题的问题。首先,一些基线:
wsdl:types
中定义了两种模式。第一个是名称空间http://returnobject.foo.bar.com/xsd
,其中包含ReturnEnvelope
类型。
第二个模式用于命名空间http://ws.receiver.foo.bar.com
,并定义setMessageResponse
命名空间中类型为ReturnEnvelope
的元素http://returnobject.foo.bar.com/xsd
。
ax22
未被使用且不必要,但它的存在不会干扰代表相同名称空间的ns0
。
第二个模式定义可以“看到”ns0,因为第二个模式定义嵌套在wsdl:definitions
内,其中定义了前缀。但是,第二个模式不能使用该命名空间的模式内容(第一个模式);他们是没有联系的兄弟姐妹。要允许使用其他命名空间的类型,您需要在第二个模式中添加xs:import
元素:
<xs:import namespace="http://returnobject.foo.bar.com/xsd"/>
根据工具的不同,您可能还需要使用schemaLocation
告诉它该架构的位置,但希望它可以解决它,因为它们彼此相邻。