vote up -1 vote down star

I'm a newbie to XML Schema. I have to write following XML file into a schema. Can anyone give a hint?

My Question is: How can I overload <bean> and <property> elements?

<bean id="FileReader" class="org.openadaptor.core.node.ReadNode">
  <property name="connector">
    <bean class="lk.mediation.oa.connector.iostream.FileReadConnectorWithDTO">
      <property name="mediationUtil" ref="MediationDBUtil" />
      <property name="batchSize" value="100" />
      <property name="inputLocation" value="E:/TestData/input/" />
      <property name="dataReader">
        <bean class="org.openadaptor.auxil.connector.iostream.reader.string.LineReader" />
      </property>
    </bean>
  </property>
</bean>

Your assistance is kindly appreciated.

flag
What do you mean by "I have to write following XML file into a schema"? Do you mean you to create an XSD for the xml? – Bhushan Apr 20 at 8:42

2 Answers

vote up 1 vote down

It seems that you need to read up more on XML and XSD. I find the tutorials at W3C to be great at this as a starting point. I ran your sample through Liquid XML Studio Community Edition and this is what I got. It' needs some tweaking, but it's a starting point.

`<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
 <xs:element name="bean">
<xs:complexType>
  <xs:sequence>
    <xs:element minOccurs="0" name="property">
      <xs:complexType>
        <xs:sequence>
          <xs:element minOccurs="0" name="bean">
            <xs:complexType>
              <xs:sequence>
                <xs:element minOccurs="0" maxOccurs="unbounded" name="property">
                  <xs:complexType>
                    <xs:sequence minOccurs="0">
                      <xs:element minOccurs="0" name="bean">
                        <xs:complexType>
                          <xs:attribute name="class" type="xs:string" use="optional" />
                        </xs:complexType>
                      </xs:element>
                    </xs:sequence>
                    <xs:attribute name="name" type="xs:string" use="optional" />
                    <xs:attribute name="ref" type="xs:string" use="optional" />
                    <xs:attribute name="value" type="xs:string" use="optional" />
                  </xs:complexType>
                </xs:element>
              </xs:sequence>
              <xs:attribute name="class" type="xs:string" use="optional" />
            </xs:complexType>
          </xs:element>
        </xs:sequence>
        <xs:attribute name="name" type="xs:string" use="optional" />
      </xs:complexType>
    </xs:element>
  </xs:sequence>
  <xs:attribute name="id" type="xs:string" use="optional" />
  <xs:attribute name="class" type="xs:string" use="optional" />
</xs:complexType>

`

link|flag
vote up 0 vote down

Exactly, what i want is to create an XSD based on the xml.

You can See and elements are overloaded.

Do you have any idea?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.