I have a REST and WCF service and want to send a custom status code based on the operation.
Example when some validation fails then i want to send HTTP 444 and when authorization fails i want to send HTTP 455
The question is how do we have it validated for both SOAP and REST web services.
On the client how does the error code act because when you send a HTTP 400/500 from a WCF Service (using SOAP) an exception is throw on the client showing the status code.
Now if i send a new custom status code how does the client handle this?