Folks,
Perhaps it's a bit my newness to C# but I am a bit confused about when you need to pass the authentication token by ref or directly. The strangest thing is that I have two VS projects in which both methods of arg passing were used. What I did notice was that when I built my service reference against Tomcat, the authentication token was to be passed directly (or it wouldn't compile) but when I had my original service reference pointing to IIS, the token needed to be passed by reference (i.e. ref param required in front of argument).
At first, I thought this was a LL 971 vs CS 10 thing, but I believe that this is an Apache vs. IIS thing. Can someone confirm that this indeed what I should expect?
-Hugh