D
Daniel Lee
I have two XSD files, one defines the message format and the other is a
common type definition. The XSD files are referenced using xs:import.
The wsdl file is generated by a tool, ThinkTeture Web Services
Contract-First(WSCF).
For example, this is the definition of some type
<xs:simpleType name="SomeType">
<xs:restriction base="xs:string">
<xs:minLength value="1" />
<xs:maxLength value="10" />
<xsattern value="([0-9a-zA-Z]*)" />
</xs:restriction>
</xs:simpleType>
In the past, I've been using XMLValidatingReader to verify the xml data
using XSD.
However, the webservice defines the object and refereces XSD files. How do
I use the XSD file to validate the request data on the provider side
Thanks
Daniel
common type definition. The XSD files are referenced using xs:import.
The wsdl file is generated by a tool, ThinkTeture Web Services
Contract-First(WSCF).
For example, this is the definition of some type
<xs:simpleType name="SomeType">
<xs:restriction base="xs:string">
<xs:minLength value="1" />
<xs:maxLength value="10" />
<xsattern value="([0-9a-zA-Z]*)" />
</xs:restriction>
</xs:simpleType>
In the past, I've been using XMLValidatingReader to verify the xml data
using XSD.
However, the webservice defines the object and refereces XSD files. How do
I use the XSD file to validate the request data on the provider side
Thanks
Daniel