views:

13

answers:

1

Basically, I have a regenerated wrapper code for a web service that I need to use; when I run this, it works perfectly and receives the data from web service.

How can I add an already regenerated code from a .wsdl file to another Visual Studio solution as a web service?

A: 

First of all, you should be doing all new web service development (both client and server) using WCF. You should use "Add Service Reference" instead of "Add Web Reference".

In either case, simply give the file system path to the .WSDL file.

John Saunders