Someone reported this same problem last night at the hands on labs at the PDC. They had inadvertantly left out the namespace on the class name in the webservice directive in the ASMX. They had written:
Once they added the namespace to the class name (so it was a fully qualified class name) the error message went away and everything worked beautifully. Hope this helps.
Russ Helfand
Contributor
3304 Points
744 Posts
Re: Problem with Hands On Lab
Sep 14, 2005 06:42 PM|LINK
Someone reported this same problem last night at the hands on labs at the PDC. They had inadvertantly left out the namespace on the class name in the webservice directive in the ASMX. They had written:
<%@ WebService Language="C#" Class="HelloWorldService" %>
It should have been:
<%@ WebService Language="C#" Class="Samples.AspNet.HelloWorldService" %>
Once they added the namespace to the class name (so it was a fully qualified class name) the error message went away and everything worked beautifully. Hope this helps.
-Russ-
Groovybits.com