当我试图在sap中使用外部Web服务(WSDL文件)进行数据集成时,我在sap中创建客户端代理并给出了服务提供者webservice URL http://172.31.3.48:8717/?WSDL它给出了代理生成错误它给出了“Liberary haldler Exception”“incorrect value:unknown namespace http://www.w3.org/2001/xmlschema”的错误。我只是在我的服务提供商提供的这个文件中遇到了这个错误,除此之外所有的wsdl文件都成功生成了其中一个成功生成的文件是这个http://www.webservicex.net/stockquote.asmx?wsdl。
你的帮助将不胜感激。
Given below is my Wsdl file which giving me error..
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://tempuri.org/">
<wsdl:types>
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
<s:element name="GetData">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="user" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="pass" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="fromdate" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="todate" type="s:string"/>
</s:sequence>
</s:complexType>
</s:element>
<s:element name="GetDataResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="GetDataResult">
<s:complexType>
<s:sequence>
<s:element ref="s:schema"/>
<s:any/>
</s:sequence>
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
</wsdl:types>
<wsdl:message name="GetDataSoapIn">
<wsdl:part name="parameters" element="tns:GetData"/>
</wsdl:message>
<wsdl:message name="GetDataSoapOut">
<wsdl:part name="parameters" element="tns:GetDataResponse"/>
</wsdl:message>
<wsdl:portType name="WSCRPL9001Soap">
<wsdl:operation name="GetData">
<wsdl:input message="tns:GetDataSoapIn"/>
<wsdl:output message="tns:GetDataSoapOut"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="WSCRPL9001Soap" type="tns:WSCRPL9001Soap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="GetData">
<soap:operation soapAction="http://tempuri.org/GetData" style="document"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="WSCRPL9001Soap12" type="tns:WSCRPL9001Soap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="GetData">
<soap12:operation soapAction="http://tempuri.org/GetData" style="document"/>
<wsdl:input>
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="WSCRPL9001">
<wsdl:port name="WSCRPL9001Soap" binding="tns:WSCRPL9001Soap">
<soap:address location="http://172.31.3.48:8717/WS-CRPL-9001.asmx"/>
</wsdl:port>
<wsdl:port name="WSCRPL9001Soap12" binding="tns:WSCRPL9001Soap12">
<soap12:address location="http://172.31.3.48:8717/WS-CRPL-9001.asmx"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
这个元素似乎有些不对劲。直接引用模式的元素对我来说很奇怪--我从未见过这样的结构:
<s:element name="GetDataResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="GetDataResult">
<s:complexType>
<s:sequence>
<s:element ref="s:schema" />
<s:any />
</s:sequence>
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
</s:element>
我已经在Eclipse中验证了您的WSDL-看看Eclipse对此WSDL是怎么说的:
解析组件“%s:schema”时出错。检测到:架构“位于命名空间”http://www.w3.org/2001/xmlschema“中,但此命名空间中的组件无法从架构文档”file:///wsdltest.wsdl“中引用。如果这是不正确的命名空间,可能需要更改's:schema'的前缀。如果这是正确的命名空间,那么应该将适当的'import'标记添加到'file://wsdl.wsdl'中。
尝试完全删除
行,看看它是否适合您。或者以请求getData的方式逐个元素描述序列。
我有以下XSD,我正在从中生成JAXB绑定…(只为这个问题留下了相关部分):
当引用另一个XSD中的定义时,我们对不同命名空间中的另一个XSD使用“import”,对相同命名空间中的另一个XSD使用“include”。
我得到以下错误时运行我的应用程序:附加信息:错误在第2行位置64.从命名空间http://www.w3.org/2001/XMLSchema-instance期待元素CustomeLeads...遇到名称为“自定义线索”、命名空间的“元素”。 我不明白为什么我会收到这个错误消息,因为正如你从XML中看到的,“自定义领导”包含在XML中。如果我取出命名空间,文件将不会读取元素。包括命名空间似乎工作,
我请求soapenv提供以下信息: 我想删除xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance" 我能用我的服务吗?也许你可以设定组织。阿帕奇。轴客户调用具有某些属性的对象。。。我不知道。
是否有任何方法使DataContractSerializer在节点为空值时不写入节点?
下面是我的XSD。我犯了错误。你能验证一下吗? 请帮帮我。