Hi,
        I would like to invoke a web service that accepts a void as a parameter. The WSDL entry is mentioned below. How do I invoke the NewGame method using my Call object ?
 
  <message name="NewGameRequest" />
- <message name="NewGameResponse">
  <part name="return" type="xs:int" />
  </message>
 
- <binding name="ITicTacToebinding" type="tns:ITicTacToe">
  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
- <operation name="NewGame">
  <soap:operation soapAction="urn:Magic-ITicTacToe#NewGame" />
- <input>
  <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:Magic-ITicTacToe" />
  </input>
- <output>
  <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:Magic-ITicTacToe" />
  </output>
  </operation>
</binding>
 
Regards,
Pramod Nair

Reply via email to