My Schema contains data types for which some of the attributes are mandatory,
as defined in the schema, but during testing or I just want to disable/enable
schema validation. The default client from the samples does schema validation
and complains about null values.
<xs:complexType name="Attachment">
<xs:sequence>
<xs:element name="dealtracid" type="xs:int"/>
<xs:element name="tviewid" type="xs:int"/>
<xs:element name="attachDesc" type="xs:string"/>
<xs:element name="docDate" type="xs:date" />
<xs:element name="file" type="tns:FileAttachment" />
</xs:sequence>
</xs:complexType>
Please point me to the document that addresses the client setting or the
build file options or a snippet of code
Thanks
Ravi Somepalli