HI! Axis server puts the stacktrace of an exception into <detail><ns2:stackTrace>. .NET client expects the stacktrace embedded in <faultstring> (see example). Any chance to get Axis to do this .NET like (I recon SOAP stacktraces are not standardized)?
Thanks! .NET stacktrace example: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <soap:Fault> <faultcode>soap:Server</faultcode> <faultstring>System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.ApplicationException: no answer at my.pocket.test.HelloInfo() in c:\inetpub\wwwroot\my\pocket\test.asmx.cs:line 67 --- End of inner exception stack trace ---</faultstring> <detail /> </soap:Fault> </soap:Body> </soap:Envelope> Regards, Thomas