OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: [xml-dev] Help Needed to create an XSD

[ Lists Home | Date Index | Thread Index ]

Your schema would look something like this:

<x:schema targetNamespace="your-namespace-uri"
    xmlns:x="http://www.w3.org/2001/XMLSchema"
    xmlns:foo="http://www.foo.ca/XMLSchemas">
   <x:import namespace="http://www.foo.ca/XMLSchemas"
        schemaLocation="http://www.foo.ca/XMLSchemas/UAT/Transmit.xsd">
   <x:element name="myrpt">
     <x:complexType>
       <x:sequence>
         <x:element name="id" type="x:string"/>
         <x:element name="status" type="x:string"/>
         <x:element ref="foo:rptTransmit"/>
       </x:sequence>
     </x:complexType>
   </x:element>
</x:schema>

Regards,
Anne

On 10/4/05, Cyril <cyrilw@technicost.com> wrote:
Hi,

I am creating a webservice that will use the output from a 3rd party. The
output of the 3rd party is an XML file with its own namespace:

Eg:

<rptTransmit xmlns=" http://www.foo.ca/XMLSchemas "
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=" http://www.foo.ca/XMLSchemas
http://www.foo.ca/XMLSchemas/UAT/Transmit.xsd">
:
</rptTransmit>



Now I need to create my own XSD that contains some info in addition to the
XML file I get from the 3rd party. It should look something like this

<myrpt>
<id>0000</id>
<status>pending</status>

<rptTransmit xmlns=" http://www.foo.ca/XMLSchemas "
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=" http://www.foo.ca/XMLSchemas
http://www.foo.ca/XMLSchemas/UAT/Transmit.xsd">
:
</rptTransmit>
</myrpt>



How will I create the XSD schema with the namespace of my tags and taking
into consideration of the 3rd party namespace? Can anyone give me a sample
XSD that will match what I 'd like to achieve

Thanks,
Cyril



-----------------------------------------------------------------
The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
initiative of OASIS <http://www.oasis-open.org>

The list archives are at http://lists.xml.org/archives/xml-dev/

To subscribe or unsubscribe from this list use the subscription
manager: < http://www.oasis-open.org/mlmanage/index.php>






 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS