Click here to Skip to main content
15,881,089 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

My service method defined as 'getDocument(DocumentRequest in0)',
In the above method what parameter 'in0' means??? :doh:

In WSDL defnision is like the below

XML
<wsdl:operation name="getDocument" parameterOrder="in0">
  <wsdl:input message="intf:getDocumentRequest" name="getDocumentRequest" />
  <wsdl:output message="intf:getDocumentResponse" name="getDocumentResponse" />
  <wsdl:fault message="intf:ServiceException" name="ServiceException" />
  </wsdl:operation>


plz advice to access the above service method.:confused:
Posted

1 solution

DocumentRequest is the parameter type (class) and in0 is the identifier (parameter name used to reference the object instance). It's a generated name so the next parameters would be named in1, in2, in3, etc...

About calling the webservice have a look here:
http://msdn.microsoft.com/en-us/magazine/cc163830.aspx[^]

Good luck!
 
Share this answer
 
v2
Comments
Dhanamanikandan 28-Sep-10 0:41am    
Reason for my vote of 5
Automatic vote of 5 for accepting answer.
Dhanamanikandan 28-Sep-10 0:41am    
Thankq Nijboer

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900