Error - 'Services' does not exist in System.Web ??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey guys,
I got a wierd problem.

I am trying to divide the proxy class that is generated for connecting to a
web service as a superclass and a subclass.
The error is
The type or namespace name 'Services' does not exist in the class or
namespace 'System.Web' (are you missing an assembly reference).

Now I generated an empty Console Application and copied the two using
System.Web.Services... lines in there and that one is blowing up with the
same error.

Any help will be appreciated.......

Thanks in advance
 
Add a reference to System.Web.Services

Right-click on the "References" folder under the project in the Solution Explorer, and then click "Add Reference...". Under the ".NET" tab, scroll down to System.Web.Services, highlight it, and then click the OK button to add the reference.
 
Back
Top