About the service definition
The WSDL schema presents its various operations as a single web service.
The service element defines that service, ActuateAPI. The service definition includes:
*The name of the requested service.
service name="ActuateAPI"
*The name of the port through which the client accesses the iHub web services.
port name="ActuateSoapPort"
*The binding definition expressed as a namespace.
binding="wsdlns:ActuateSoapBinding"
*The location of the port, defined as host_name:port_number, expressed as a valid URL.
soap:address location="http://localhost:8000"
The following example shows the service definition for ActuateAPI:
<service name="ActuateAPI">
<port name="ActuateSoapPort"
binding="wsdlns:ActuateSoapBinding">
<soap:address location="http://localhost:8000"/>
</port>
</service>