Tagged Questions

1
vote
1answer
684 views

Check in C# whether php soap returned soapFault

I have problem with checking SoapFault response from writen in PHP Soap webservice. Responce looks like this (default "throw new SoapFault("SOAP:CLIENT", "Bad login");" <SOAP-ENV:Envelope ...
1
vote
1answer
217 views

Should constructors for WCF Services use faults for error handling?

I have a wcf service. The service itself (class that inherits the ServiceContract) has a constructor that sometimes throws exceptions. I want to present the user a message if the service fails. Should ...
1
vote
1answer
993 views

How to Return Errors from an ASMX Web Service?

My web service method returns a collection object, this will serialize nicely, thanks to the way C# web services work! But if my code throws an uncaught exception, I want to instead return a custom ...
0
votes
1answer
81 views

soapfault: Couldn't create SOAP message

11-23 16:19:30.085: SoapFault - faultcode: 'S:Client' faultstring: 'Couldn't create SOAP message due to exception: Unable to create StAX reader or writer' faultactor: 'null' detail: null 11-23 ...
0
votes
1answer
283 views

How to resolve Soap Fault in Ksoap2?

I am trying to hit a web service with an android application. I am getting following exception about which I don't have any Idea. Please help: 09-01 11:21:29.873: WARN/System.err(921): SoapFault - ...
0
votes
2answers
641 views

ASP.Net Web Service - What is the correct way to add a detail element to a SOAP fault response that works for both SOAP 1.1 and SOAP 1.2?

ASP.Net 2.0 Web Services automatically create both SOAP 1.1 and SOAP 1.2 bindings. Our web service, however, has SOAP extensions and custom exception handling that make the assumption that only the ...
0
votes
1answer
289 views

SOAP WSE .Net issue with Action header

We have a SOAP Web Service we wrote that accepts work fine testing without a WSE policy set on the class using the Policy Attribute on the class that implements the WS ...