Hi Alex,
I'm posting some part of my wsdl for understanding to make a call to the url and call any serice from the wsdl and its methos and about QName used in the client code.
<wsdl:definitions name="TransferManagement_v1"
targetNamespace="http://www.dolby.com/dcinema/ws/smi/v1"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.dolby.com/dcinema/ws/smi/v1"
xmlns:tra="http://www.dolby.com/dcinema/ws/smi/v1/schemas/transfermanagement"
xmlns:com="http://www.dolby.com/dcinema/ws/smi/v1/schemas/common"
xmlns:flt="http://www.dolby.com/dcinema/ws/smi/v1/schemas/fault"
xmlns:v1_0="http://www.dolby.com/dcinema/ws/smi/v1_0"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!-- Request/Response Schema Definitions -->
<wsdl:types>
<xsd:schema targetNamespace="http://www.dolby.com/dcinema/ws/smi/v1_0">
<xsd:import schemaLocation="TransferManagement.xsd" namespace="http://www.dolby.com/dcinema/ws/smi/v1/schemas/transfermanagement"/>
<xsd:import schemaLocation="Common.xsd" namespace="http://www.dolby.com/dcinema/ws/smi/v1/schemas/common"/>
<xsd:import schemaLocation="Fault.xsd" namespace="http://www.dolby.com/dcinema/ws/smi/v1/schemas/fault"/>
<!-- transferContent elements -->
<xsd:element name="transferContentRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="transferType" type="tra:NetworkTransferType" minOccurs="0"/>
<xsd:element name="transferProtocolType" type="tra:TransferProtocolType" minOccurs="0"/>
<xsd:element name="contentType" type="com:ContentType" minOccurs="0"/>
<xsd:element name="auditoriumNumber" type="xsd:string" minOccurs="0"/>
<xsd:element name="destinationContentStore" type="com:ContentStoreType" minOccurs="0"/>
<xsd:element name="url" type="xsd:anyURI"/>
<xsd:element name="userName" type="xsd:string" minOccurs="0"/>
<xsd:element name="password" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
Other part in the bottm is:
<wsdl:binding name="TransferManagementBinding_v1_0" type="tns:TransferManagementService_v1_0">
<
soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="transferContent">
<soap:operation soapAction="http://www.dolby.com/dcinema/ws/smi/v1/transferContent"/>
<wsdl:input name="transferContentRequest">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="transferContentResponse">
<soap:body use="literal"/>
</wsdl:output>
<wsdl:fault name="transferContentFault">
<soap:fault name="transferContentFault" use="literal"/>
</wsdl:fault>
</wsdl:operation>