Reference.vb

  • Thread starter Thread starter Lance Geeck
  • Start date Start date
L

Lance Geeck

There seems to be a file called Reference.vb that is generated based on a
web service that I developed.

I changed the name of a public function in the web service and when I try to
call it, I am stopped in the reference.vb because it is looking for the old
name of the function.

The Reference.vb file is automatically generated, but I can't figure out why
it is holding the old function name.

Any suggestions?

Thanks
 
Lance,
Reference.vb holds the proxy class for the client side of the Web Service.
If you change the Web Service you need to update this proxy class.

To update the Web Service, expand the Web Services node in Solution
Explorer, right click on your web service. Select Update Web Reference.

Hope this helps
Jay
 
Hello,

Lance Geeck said:
There seems to be a file called Reference.vb that is generated
based on a web service that I developed.

I changed the name of a public function in the web service
and when I try to call it, I am stopped in the reference.vb
because it is looking for the old name of the function.

The Reference.vb file is automatically generated, but I
can't figure out why it is holding the old function name.

You may want to turn to the ng for ASP.NET questions:

news://msnews.microsoft.com/microsoft.public.dotnet.framework.aspnet

Web interface:

http://msdn.microsoft.com/newsgroup...roup=microsoft.public.dotnet.framework.aspnet
 
Back
Top