You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I add @SiZe annotation to a Class Field it is not generated in wsdl as minLength attribute.
I've actually try more ways of adding length or pattern specification to a field to make it really mandatory, but nothing works.
My problem is, that I need to validate incoming request against WSDL generated from java classes. But whatever I do, I can't make it validate the value of incoming element.
I have this CODE element in wsdl <xs:element name="code" type="tns:riderStringValue"/> and current validation only checks, whether or not the element is present in the request. However it may be empty, and I'd love to prevent this situation by validation of the request.
When I add @SiZe annotation to a Class Field it is not generated in wsdl as minLength attribute.
I've actually try more ways of adding length or pattern specification to a field to make it really mandatory, but nothing works.
My problem is, that I need to validate incoming request against WSDL generated from java classes. But whatever I do, I can't make it validate the value of incoming element.
I have this CODE element in wsdl <xs:element name="code" type="tns:riderStringValue"/> and current validation only checks, whether or not the element is present in the request. However it may be empty, and I'd love to prevent this situation by validation of the request.
The type riderStringValue is like this:
and I'd need something like this:
The text was updated successfully, but these errors were encountered: