User136609187 posted
In the WCF service which iam developing am using custom fault exception to throw an exception as below .
throw FaultException<CustomError>(customError)
Now in the response only am getting only <s:envelope> , <s:body> and <s:fault>.
In the response i want to append Soap Header(<s:header>) also from the request .
How can i do that?
Please help me out