Hi,
I would like to know the best way to validate incoming request message using a schema ? I’m developing a RPC-style web services that looks like :
public ServiceResponse processService(ServiceRequest sr) throws SomeServiceException;
The ServiceResponse and ServiceRequest both are of complex types defined in my response & request schema, respectively.
Thanks.