user271752
user271752

Reputation:

Debug Visual Studio 2005 Web Service from Visual Studio 2008 Client

I have a .NET Web Service running in VS2005 and a client that consumes it running in VS2008. Is there any way, while debugging the client, I can step into the code of the service? Both are running locally.

Many thanks for your time,

P

Upvotes: 1

Views: 632

Answers (2)

Samuel DR
Samuel DR

Reputation: 1231

If both projects are configured to start on debug, I think it will step into the service code.

Though you might need to set check the "Don't open a page" radiobutton in the service project propertypages startOptions.

Upvotes: 0

Franci Penov
Franci Penov

Reputation: 75982

VS 2008 can debug code built with VS 2005. You can attach to the web service process and debug it as any other process. Note that you might have to start second instance of Visual Studio, since attaching to existing process will stop your current debugging session.

Upvotes: 2

Related Questions