我正在使用 wso2esb4.7.0,我尝试使用数据库工作正常我编写了没有发布 wsdl 选项的代理,所以那些工作正常。没有操作发布很好。现在我希望发布该操作,为此我编写了一个示例 wsdl,并将其放在我的本地系统下载文件夹中。当我导入代理时,它无法导入,如果我用这个 url 给任何 wso2dss wsdl:192.168.1.14:8282/services/user?wsdl
服务工作正常并且发布操作也但是我不想使用那个 wso2dss 操作,我希望发布我自己的操作我该怎么做这是我的 wsdl 文件,像这样
<definitions name="HelloService"
targetNamespace="http://www.examples.com/wsdl/Addition.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.examples.com/wsdl/Addition.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<message name="SayHelloRequest">
<part name="var1" type="xsd:integer"/>
<part name="var2" type="xsd:integer"/>
</message>
<message name="SayHelloResponse">
<part name="result" type="xsd:integer"/>
</message>
<portType name="Hello_PortType">
<operation name="sayHello">
<input message="tns:SayHelloRequest"/>
<output message="tns:SayHelloResponse"/>
</operation>
</portType>
<binding name="Hello_Binding" type="tns:Hello_PortType">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="sayHello">
<soap:operation soapAction="sayHello"/>
<input>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:examples:helloservice"
use="encoded"/>
</input>
<output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:examples:helloservice"
use="encoded"/>
</output>
</operation>
</binding>
<service name="Hello_Service">
<documentation>WSDL File for HelloService</documentation>
<port binding="tns:Hello_Binding" name="Hello_Port">
<soap:address
location="http://www.examples.com/SayHello/">
</port>
</service>
我将它存储到这个路径 home/downloads/system/addtion.wsdl 但它没有导入它给出的错误我可以在哪里存储这个 wsdl 以导入 wso2esb