私はxmlとurlを検証するためのxmlリクエストとxsdスキーマの例を持っています
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>