Binding information

Each operation needs to be linked to the server URL.
  1. Right-click and select Generate Binding Content. This brings up the Binding Wizard.
  2. All the defaults can be used so click Finish.

The effect of this can be seen in the source view of the editor (see the Design | Source tabs at the bottom of the editor window), which shows the generated XML.

<wsdl:operation name="addBook">
  		<soap:operation
  			    soapAction="http://machine.mysite.com/BookLegacy/addBook" />
  		<wsdl:input>
  			    <soap:body use="literal" />
  		</wsdl:input>
  		<wsdl:output>
  			    <soap:body use="literal" />
  		</wsdl:output>
</wsdl:operation>