I'm developing webservices with jaxws, so I generate wsdl and xsd files from annotated java classes via wsgen.
I'm searching for possibility of automatic validation of parameters which are marked as required via the annotation @XmlElement(required = true) on the server-side.
All that I found is @SchemaValidation. But that doesn't fit the problem.
The documentation of that class says: "Validates all request and response messages payload(SOAP:Body) for a WebService against the XML schema."
But clearly that doesn't include a required checking.
Any idea?