RE: Detailed ASP.Net info not displaying in browser



Hi Tim,

From your description of the two pc's behavior, it seems the first one is
only 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.

.



Relevant Pages

  • Re: an OO design question
    ... I see absolutely no reason to use a web service in this system. ... sending data to you over HTTP. ... I can see a strategy pattern for handling the upload to the third party ... > ascii spool report files are uploaded from various sources ...
    (microsoft.public.dotnet.general)
  • Re: error: The operation has timed-out (executionTimeout?)
    ... Actually, there was no SQL timeout issue in this case, and when I said ... fixing the performance of this particular report. ... I had to set executionTimeout in both my web site and the web ... web service timing out, then my web site timing out it's own request to the ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: Web Service and Web app
    ... C> I make the web service call back to the calling web application, ... and report path of an ms report viewer so that it can be called from a ... server calling the data server not the client. ...
    (microsoft.public.dotnet.framework.aspnet)
  • RE: Asynchronous Web Service Method Failure
    ... I don't pass any files, just parameters for the report, ... The web service methods don't return any ... Some of my reports are XML ... streamreaders and writers fail when run async. ...
    (microsoft.public.dotnet.framework.aspnet.webservices)
  • RE: Asynchronous Web Service Method Failure
    ... Let's say I have a web service called wsReportGenerator that has a method ... When I call a method that opens stream readers or writers somewhere within, ... >>particular report. ... Some of my reports are XML ...
    (microsoft.public.dotnet.framework.aspnet.webservices)

Loading