I have created a webservice that allows me to query my db and returns a
dataset. It looks good on the server and i can view and test it using
the ?WSDL suffix. The problem is on the client. I used the wsdl utility
to create my .vb file and then compiled it and stuck the result in
the /bin directory. So far, so good. But then I changed the web-
service. It was accepting only one argument to my Select function, and I
wanted to send in another to allow SELECTion from any table (it
originally had one table name hardcoded.) Things worked fine on the
server that hosts my webservice, but when I used wsdl on the new
webservice and recompiled and replaced the old .dll, I get an error that
tells me that the # of arguments doesn't match the function. It is still
using the old version. I have deleted the old .dll and replaced it. How
do I flush the old version from memory so that I can call it with the new
# of arguments?
Thanks,
Trey