Ok so I have an ASP.Net website project. The project resides on a server on the network, accessed by Visual Studio 2008 via a fileshare.
In the web site project I add a web reference to a webservice I have previously created.
I can consume this webservice via winforms apps without any problems.
But when I try to reference the Webservice in my code, no intellisense comes up, and the service name gets the red underline in Visual Studioand say s "The type or namespace name 'IMWebService' could not be found are you missing an assembly reference or a using directive?"
However, if I know the exact method signature of a method of the webservice, I can type it in, save it to the webserver, and it works just fine. For example:
bool test = Contractor.CheckLogin(email, password);
How do I get my Visual Studio to recognize the service just as the website is doing?