Tagged Questions

0
votes
1answer
55 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
1answer
127 views

Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilder

Hey all, 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 …
0
votes
1answer
48 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 …
0
votes
0answers
107 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
2answers
49 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 …
0
votes
2answers
277 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 …
0
votes
0answers
117 views

How to serialize in a class a Soap Fault for a website?

I hope this question is not as cryptic as the other ones I do. I have two components: Web site that recieves Soap Envelopes and Soap Faults WinServices that sends Soap Envelopes. Ok, so the …