I am quite new to working with web services.

I just recently created a web service that returns an xml document. All the xml serialization is done by .net, all i really did was create an array of a structure, populate it and return it.

Now in the app calling the method of the web service, what am I receiving the xml document into.

proxyWebService = devServer.Services

unknownVariableType = proxyWebService.GetMeSomeValues

What is the unknownVariableType?

I know I could just return a dataset, and have tried that and it does work, I just want to know if I could do it this way as well.

Thanks again.