Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
555 views

WCF FaultException Without Sending StackTrace

I have some WCF services with predefined FaultContract attributes. When the FaultException<TDetail> exceptions are thrown, they're sending StackTrace, Source and other potentially unsave ...
3
votes
1answer
506 views

How do I return a (custom) SOAPFault from an Axis web service?

I have some WSDL from which I need to generate a web service implementation. I'm using Eclipse, and Axis1.4, and running on Weblogic9.2. Generating the server stubs goes fine, and I've implemented ...
3
votes
1answer
472 views

php try catch error reporting

I have an application which relies on a soap server to produce content. Additionally authentication to the site is based on a seperate LDAP server. Obviously if either of these are down or not ...
3
votes
2answers
4k views

Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilder

I've been using Apache CXF wsdl2java generated code to call methods from a webservice for some time now, which so far has been working fine.. The problem I'm having is that when the webservice ...
2
votes
1answer
299 views

How set STATUS CODE to 200 when SoapFaultException?

I use Glassfish 3 with jax-ws (metro). I write a SOAPHandler which can throw SOAPFaultException. I use Silverlight on the client side. SOAPFault set response code to 500, but Silverlight can't handle ...
2
votes
2answers
282 views

WCF Message.IsFault

I am trying to write a test and need to create a Message object with the IsFault property set to true. However, this property only has a getter. Does anyone know the best way to create a message where ...
1
vote
0answers
342 views

How to deserialize soap response with multiref in .net?

I am making a .net wcf client for java ws. But when i make a request, and response contains fault, it also contains multiRef section. So i get this exception: Server returned an invalid SOAP Fault. ...
1
vote
1answer
235 views

How to create a WCF MessageFault

I see two ways to create a MessageFault: FaultException fe = new FaultException("error"); MessageFault f = fe.CreateMessageFault(); Or FaultCode fc = new FaultCode("error"); ...
1
vote
1answer
685 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
3k views

Apache Axis WSDL2Java error - Missing <soap:fault> element

We are integrating a third party SOAP web services in our application. The WSDL is used with SOAPUI tool, where sample requests and responses worked fine. When we try to integrate with apache Axis ...
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
615 views

WCF UserName authentication and fault contracts

I have a WCF service configured to use custom UserName validation via the overriden Validate() method of the System.IdentityModel.Selectors.UserNamePasswordValidator class. All methods of the ...
1
vote
1answer
995 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
2answers
72 views

android soapfault error

I am a begginer in android,here I have activity that use web service: SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); GetBoundData val = new GetBoundData() { }; ...
0
votes
1answer
19 views

How can I get the whole xml response from SoapFaultClientException

I get this exception because response is soapFault. Is there options how I can get whole xml response from this exception ? I need this because important content of this xml inst in ...
0
votes
1answer
82 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
284 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
0answers
148 views

PHP SoapFault Exception - Value cannot be null for parameter inputUri

PHP page calling a .Net web service. The web service and the call from the PHP page had been working. Client requested a new feature, which involves grabbing some info from an XML file. The web ...
0
votes
2answers
1k views

WCF Web Service, Java Web Client, MustUnderstand headers not understood?

I'm hosting a WCF Web Service with the following WSDL (a simple service using wsHttpBinding and SSL for transport security): <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
1answer
51 views

WCF - ClientMessageInspector error reporting

I'm writing a web service at the moment, with a custom behaviour for validating input messages against an XML schema. However, I don't understand how I can report any of those errors back to the ...
0
votes
0answers
102 views

returning soap faultstring

Can someone please tell me the code to return the faultstring from a soap exception. I'm calling a webservice with an employee number. If the number isn't found in the database on the request, the ...
0
votes
0answers
175 views

QuotaExceededException in unsigned SOAPFault

I am using an external SOAP service (of which I cannot have changed in any way) with a MutualCertificateDuplexBindingElement: MessageSecurityVersion securityVersion = ...
0
votes
2answers
456 views

Akamai CCU SOAP API in soapUI

Has anyone been able to successfully use the Akamai CCU SOAP API? I'm trying to use it with soapUI with the following (Java) WSDL: https://ccuapi.akamai.com/ccuapi-axis.wsdl. When I run the sample ...
0
votes
1answer
346 views

PHP SOAP faultcode: soap:Server

Googled everywhere with no luck, could anyone tell me what's going on here? PHP version 5.2.10 trying to make a SOAP request and get this back. SoapFault exception: [soap:Server] The application ...
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 ...
0
votes
2answers
1k views

WCF EntLib Validation - change default SOAP Fault Reason text

I'm using the Enterprise Library Validation Application Block for my WCF service. All is fine, and .Net consumers can catch the FaultException<ValidationFault> exception to get a collection of ...
-1
votes
2answers
2k views

Android 2.1 and Ksoap2-Android-assembly-2.4 — SoapFault Error

I am very new to Android and ksoap2 development. I have been searching on the forums for an answer to my error and still have not found a fix. Hopefully someone will be able to figure how to fix the ...