Generally ByRef parameter does not make any sense in web service world. All
parameters are passed by value. Honestly I do not know what is happening. Go
to the web service proxy class and see what is it calling.

Signature
Martin Kulov
http://www.codeattest.com
MCAD Charter Member
MCSD.NET Early Achiever
MCSD
> I know that passing variables "ByRef" to a web web service is permitted, but
> what I am expreriencing is quite odd.
[quoted text clipped - 7 lines]
>
> Has anyone else seen this?
erymuzuan - 10 Feb 2005 12:50 GMT
It's not entirely true when you say all the parameters are passed by
values, since web services define input and output messages element in
WSDL in such a way that it's always XML element fragment. You can of
course make input and output messages refer to the same element, but
this won't necessarily make them reference type. This must be
implemented by the web services framework(i.e. ASP.Net web services,
axis etc.)
regards
erymuzuan
> Generally ByRef parameter does not make any sense in web service world. All
> parameters are passed by value. Honestly I do not know what is happening. Go
> to the web service proxy class and see what is it calling.