我有示例 xml 请求和 xsd 架构来验证 xml 和 url
如何创建wsdl文件
URL http://somewebsite:10806
is this the wsdl file on my server ?
targetNamespace="http://www.examples.com/wsdl/HelloService.wsdl"
also should i change <soap:address location="http://www.examples.com/SayHello/"> with
<soap:address location="http://somewebsite:10806">
<definitions name="HelloService"
targetNamespace="http://www.examples.com/wsdl/HelloService.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.examples.com/wsdl/HelloService.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<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>