Note: I am just consuming webservice I have no control over webservice code.
So in .net 2.0 I reference the webservice and see a class in the webservice namespace, say foobar. It's defined as:
public class foobar : System.Web.Services.Protocols.SoapHttpClientProtocol
but in .net 3.5 when i add a reference to the same webservice I no longer have this foobar class available. I do see foobarSoap which is an interface which exposes all of the methods in the foobar class above. It's defined as:
public interface foobarSoap
However it doesn't expose the properties (for obvious reasons).
I need to access these properties. How do I do it?