Hi.
I have created a simple web service project, only using the HelloWorld
sample already there, with Visual Studio 2005. If I browse the web service
.asmx file by right-clicking it using the new built-in web server everything
works just fine.
All attempts to access the service through IIS fails with the parser error
"Could not create type 'Service1'" with a reference to line 1 of the .asmx
file:
<%@ WebService Language="C#" CodeBehind="~/App_Code/Service1.cs"
Class="Service1" %>
This is true if I publish the site/service with precompilation or if I copy
it to a different location. Whatever I do I can only get it to work with the
built-in web server. Can someone please help me figuring out what is wrong?
I have configured the web site to use ASP.NET 2.0 so that is not the problem.
/Joakim
Roy Kiesler - 17 Nov 2005 22:51 GMT
I'm running into the very same error -- has anyone been able to figure
this out?
Parser Error Message: Could not create type 'Service'.
Source Error:
Line 1: <%@ WebService Language="C#"
CodeBehind="/APDemo/App_Code/Service.cs" Class="Service" %>
Source File: /APDemo/Service.asmx Line: 1
Version Information: Microsoft .NET Framework Version:2.0.50727.42;
ASP.NET Version:2.0.50727.42
> Hi.
> I have created a simple web service project, only using the HelloWorld
[quoted text clipped - 16 lines]
>
> /Joakim