> Am I missing something.
Not to go on a tirade or anything, but web services aren't meant to be used
this way. Web services are about sending XML messages across the network
for interop purposes with other technology platforms (think java to .NET
for example). Web Services are not about distributed objects. The reason
many people get this incorrect impression is because the framework you're
using to build web services (specifically .NET) hides to details and never
explains the proper usage model. In short, the framework's too good at its
job at hiding those details. You must approach the framework realizing that
working with classes and objects is simply a convenience in your development
environment. It's a convenience that abstracts the reality of XML, SOAP,
XSD, WSDL and HTTP. So, use the framework, but realize that web services
aren't classes and all the things you know and love about them.
-Brock
DevelopMentor
http://staff.develop.com/ballen
recoil@community.nospam - 13 Apr 2005 16:39 GMT
Yeah. I sort of realized it a bit after I posted it. (Well I realized
why it was not doing what I expected it to do).