Hello all .
I have a WS in the local machine that call another WS in a remote computer.
in this call i send some integers and 3 by-reference strings
The remote WS looks like that : void function(int a ,int b ,int c,ref string
x ,ref string y ,ref string z)
and the local WS calls it by this function: function(a , b , c , ref x ,
ref y , ref z);
in this case i got my new x,y,z values back. BUT if i change the remote WS
parameter name like this: void function(int a ,int b ,int c,ref string
NewXName ,ref string y ,ref string z) the "ref string x" was changed to
"ref string NewXName"
and yet calling this function in the same names as before: function(a , b ,
c , ref x , ref y , ref z); ( i still call it by "ref x") in this case i
dont get this parameter back from the WS
can you please tell me way?????
is the name is so importent ?
Manish Bafna - 28 Dec 2006 04:41 GMT
Hi,
Since signature of method has changed you need to click Update Web Reference
in your local web service.
Thanks and Regards,
Manish Bafna.
MCP and MCTS.
> Hello all .
> I have a WS in the local machine that call another WS in a remote computer.
[quoted text clipped - 12 lines]
> can you please tell me way?????
> is the name is so importent ?