winforms 1.1 and ws 2.0

M

moondaddy

I have a vb.1.1 winforms app (solution). One of the projects in the
solution was a web services project which the winforms app uses. I had to
upgrade the web services app to .Net 2.0 and therefore had to remove it from
the solutions as the solution must remain as .Net 1.1 for now. Is there any
way to step through the code as it executes from the winforms app into the
code in the web services (from the 1.1 solution into the 2.0 ws project)?

Thanks.
 
J

Jeffrey Tan[MSFT]

Hi moondaddy,

Thanks for your post!

Regarding this scenario, we can first run the .Net2.0 WebService
application under VS2005 debugger with a breakpoint in the webmethod. Then,
we can run the client Winform application under VS.net2003 debugger and
step through each line. Whenever the client code executes the webmethod
calling, the server-side VS2005 will break at that webmethod breakpoint.

Hope this helps!

Best regards,
Jeffrey Tan
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 
J

Jeffrey Tan[MSFT]

You are welcome

Best regards,
Jeffrey Tan
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top