I have a schema fragment

<xs:element name="CustomData" minOccurs="1">
        <xs:complexType>
        <xs:simpleContent msdata:ColumnName="CustomData_Text" 
msdata:Ordinal="1">
            <xs:extension base="xs:string">
               <xs:attribute name="field-name" form="unqualified"
use="required" type="xs:string"/>
           </xs:extension>
      </xs:simpleContent>
      </xs:complexType>
</xs:element>

I have a code fragment:

customDataInput = financialAid.addNewCustomDataInput();
customData = customDataInput.addNewCustomData();
customData.setFieldName("expires");
//set customData value to paymentDto.getExpMonth()+"/"+paymentDto.getExpYear();

I'm trying to figure out how to write the last line.  I cant find a
method on the CustomData type that will allow a "setCustomData_Text"
type behavior.  I found another message in the archives that showed a
similar problem in the reverse, but it was never fully responded to.
Does anyone have any advice?

Michael

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to