Has anyone tried or implemented a solution that would validate incoming request using schema types defined in a WSDL doc ?
For e.g. Let's assume following method is exposed as a service and takes in a "partNumber" as an input string. Its simple type is defined with restriction.
public org.w3c.dom.Element getPartDetails(String partNumber);
Would proxy or server-side skeleton make sure that partNumber string can be of max 20 char and it can have one of two values specified ?
I wish to validate incoming SOAP request using XSD. or is there any alternate available?