What is the process involved in viewing a webservice in a browser from within visual studio?

Posted by Sam Holder on Stack Overflow See other posts from Stack Overflow or by Sam Holder
Published on 2010-06-09T07:58:00Z Indexed on 2010/06/09 8:02 UTC
Read the original article Hit count: 260

Filed under:
|
|

I have created a new VS2008 ASP.Net Web service project, with the default name WebService1. If I right click on the Service1.asmx file and select 'View in Browser' what are the processes that go on to make this happen? I am asking because I have a situation where when I run this from a visual studio project started in our development shell (which sets up a common build environment) I cannot get the web service to show up in the browser.

It starts the asp.net development server and creates a single file:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\c43ddc22\268ae91b\hash\hash.web

but when I start it from a stand alone project i get a whole slew of files in here:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\edad4eee\d198cf0e\App_Web_defaultwsdlhelpgenerator.aspx.cdcab7d2.vicgkf94.dll

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\edad4eee\d198cf0e\service1.asmx.cdcab7d2.compiled

etc etc

I am trying to debug this but not really getting anywhere. i have inspected the output from VS but the only option I get is for the build output, which is basic and doesn't really contain any information that is useful. I have tried running both versions with DebugView running but no output there either.

I would like to know if there are any log files I could look at, or if anyone has any suggestions on how I might be able to debug what is going wrong here?

For completeness the output I get when it doesn't work is:

Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not create type 'WebService1.Service1'. Source Error: Line 1: Source File: /Service1.asmx Line: 1 Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3082

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about debugging