RE: Detailed ASP.Net info not displaying in browser
- From: wawang@xxxxxxxxxxxxxxxxxxxx (Walter Wang [MSFT])
- Date: Fri, 18 Aug 2006 06:51:03 GMT
Hi Tim,
From your description of the two pc's behavior, it seems the first one isonly showing the exception's message.
I recommend you use the simplest web service to diagnose this issue:
public string HelloWorld() {
throw new Exception("hello");
}
If my guess is right, the first pc should only report
=========================
hello
=========================
while the second pc will report something like:
=========================
System.Exception: hello
at Service.HelloWorld() in
c:\Inetpub\wwwroot\webserviceException2\App_Code\Service.cs:line 18
=========================
Please create a console application, add web reference to the simplest web
service, then call the HelloWorld() method, on 2nd pc, it should report
something like:
=========================
An unhandled exception of type
'System.Web.Services.Protocols.SoapException' occurred in
System.Web.Services.dll
Additional information: System.Web.Services.Protocols.SoapException: Server
was unable to process request. ---> System.Exception: hello
at Service.HelloWorld() in
c:\Inetpub\wwwroot\webserviceException2\App_Code\Service.cs:line 18
--- End of inner exception stack trace ---
=========================
What I want to know is the exception reported by the 1st pc. If it's still
only a message, then this issue is not related to IE, it should be related
to the web service handler. If it's correct, then this issue is related to
IE (or the built-in test page to test the web service).
Please let me know the result. Thanks.
Regards,
Walter Wang (wawang@xxxxxxxxxxxxxxxxxxxx, remove 'online.')
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.
.
- Follow-Ups:
- RE: Detailed ASP.Net info not displaying in browser
- From: Tim Reynolds
- RE: Detailed ASP.Net info not displaying in browser
- From: Tim Reynolds
- RE: Detailed ASP.Net info not displaying in browser
- References:
- RE: Detailed ASP.Net info not displaying in browser
- From: Walter Wang [MSFT]
- RE: Detailed ASP.Net info not displaying in browser
- From: Tim Reynolds
- RE: Detailed ASP.Net info not displaying in browser
- Prev by Date: SchemaImporterExtension woes
- Next by Date: Re: XML attribute test is failing and i don't know why
- Previous by thread: RE: Detailed ASP.Net info not displaying in browser
- Next by thread: RE: Detailed ASP.Net info not displaying in browser
- Index(es):
Relevant Pages
|
Loading