I have a serializable object called "users" which is a collection of "user" objects.

The usercollection has a method called GetDistinct, which returns a distinct collection of users. Now the problem is that when I call my webservice

dim proxy as new mywebservice

dim usercol as usercollection = proxy.GetAllUsers <---- this is not working


Because it looks like the returning object from the webservice is of a type in the webservice namespace, but the object im defining on the client "usercol" is also a usercollection but from another namespace(my business objects). Therefor I get an error And I cant really use the object in the webservice namespace because it doesnt contain the method GetDistinct

What am I mssing here??!?!?
/Henrik