| Michael Giagnocavo |
Hello,
I'm trying to debug a process that makes use of several webservices (all hosted on my machine). In the area where I have trouble, I debug, line by line, stepping over each one.
When I sometimes call a webservice, and I'm debugging, nothing happens, then the output window shows:
The thread '<No Name>' (0x258) has exited with code 0 (0x0).
When I break execution, the green arrow appears on the line (***) of the VS.NET generated webserivice proxy.
<System.Diagnostics.DebuggerStepThroughAttribute(), _ System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.or g/GetAccount", Use:=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle:=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)> _ Public Function GetAccount(ByVal AccountID As Long, ByVal MemberID As Integer, ByVal Password As String) As Account ***Dim results() As Object = Me.Invoke("GetAccount", New Object() {AccountID, MemberID, Password}) Return CType(results(0),Account) End Function
How can I troubleshoot more?
Thanks, -Mike
|
|
| |
| |
| Srinath Vasireddy |
Hello Michael,
The documents has a section called "Debugging Script and Web Applications" and there is WebService debugging explained there. Please let me know if the document doesn't help.
Do you have remote debugging components installed on the machine running webservice?
Regards, Srinath Vasireddy This posting is provided "AS IS" with no warranties, and confers no rights. You assume all risk for your use. © 2001 Microsoft Corporation. All rights reserved.
|
|
| |
|
|