I want to use typed parameters in the web methods. But when visual studio 2005 creates the web reference on for the client it automatically creates it's own types. I am using a .net web service and a .net client.
For example:
< WebMethod > _ Public Function Foo() as ServerNamespace.Bar ... End Function
at the client the method becomes WebServiceInstance.Foo() as ClientNamespace.Webservice.Bar
returning a different type.
I started writing my own serialization helper class to convert the type, but I would have thought there would be a better way....