vote up 1 vote down star

I'm trying to debug a web service (Windows XP SP3, VS 2008, ASP.NET 2, VB.NET).

For most of it, if the asp.net worker process is already loaded, I can start the Windows form that calls the web service, attach to aspnet_wp.exe in Visual Studio, and then debug to my heart's content, but catching the Application Start event in global.asax is a pain.

If I reset IIS, of course there is no process to attach to, until the Application start event is all over.

The only way I've found to do this is create a separate aspx page, set it as the start page, and run that - then I can stop on the break in the App start event, but it's a nuisance having to maintain a page that's essentially just a test stub.

Any ideas for something a bit neater? Kind of, "Attach to a process as soon as it starts".

Better still, of course, would be not to have to attach explicitly to aspnet_wp.exe in order to be able to debug the web service, but I haven't found a way of doing that either.

Thanks for any suggestions.

flag

50% accept rate
Do you have any reason for not using the VS2008's built-in webserver (Cassini) for debugging the web service? I think it's a more natural choice than IIS for this purpose. – Darin Dimitrov Jan 12 at 20:49
@Darin.. That's a thought... no, not really, other than a general preference for as realistic a test envt as possible, and habit. I do expose the web service externally as well, but there's no reason not to use the built in one for testing. I'll try it, thanks. – ChrisA Jan 12 at 20:54

1 Answer

vote up 3 vote down

Try sticking this in your Application Start event, it should kick your debugger everytime. Just make sure you take it out when you're done :-).

System.Diagnostics.Debugger.Launch()

Or better yet, in the OnStart of your WebService:

Protected Overrides Sub OnStart(ByVal args() As String)
    ' Add code here to start your service. This method should set things
    ' in motion so your service can do its work.
    System.Diagnostics.Debugger.Launch()
End Sub

Update: Adding this comment to the answer since it's a good idea:

Wrap this in #if DEBUG and it's a bit safer (won't end up slipping something so catastrophic into test/production environments). – sliderhouserules

link|flag
Well it certainly launches the debugger! Thanks for that.. I was hoping for something a bit less drastic, but hopefully I won't need to debug the App_Start event too often, so taking that line out won't be too much of a chore. – ChrisA Jan 12 at 23:05
1  
Wrap this in #if DEBUG and it's a bit safer (won't end up slipping something so catastrophic into test/production environments). – sliderhouserules May 13 at 18:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.