Reputation: 11
I am using soap header for authentication process, if the authentication success, remaining processes are completed and got the response. But if authentication fails, i don't know how to send the error response back to client. I used soaphandler to retrieve the header values.
Regards venu
Upvotes: 1
Views: 976
Reputation: 166
Look at the sample code here http://buddhiraju.wordpress.com/2011/12/28/use-soap-message-handler-for-cross-cutting-concerns-caching/
This will give you an idea. You basically can modify the message content is the soap handler.
Upvotes: 1