Groups | Search | Server Info | Login | Register
Groups > comp.sys.sun.apps > #21
| Newsgroups | comp.sys.sun.apps |
|---|---|
| Date | 2014-09-22 08:56 -0700 |
| References | <32a5e614-5694-4682-b24d-12dd04da1b67@y5g2000hsf.googlegroups.com> |
| Message-ID | <13b32ee4-337c-4fa4-ba99-e1b5bc9b4054@googlegroups.com> (permalink) |
| Subject | Re: xjc jaxb Two declarations cause a collision in the ObjectFactory class. |
| From | tornike.amonashvili@gmail.com |
On Thursday, December 20, 2007 4:26:56 PM UTC+4, pinguin wrote:
> During generation of a webservice with eclipse europe (xfire) using
> jaxb I got an error message.
> After trying the same with netbeans 6.0 I got an error message.
> As it seams, the xsd defenition is case sensative the xjc compiler is
> not.
>
> Is there a known work around?
>
> Problem can be reproduced with xjc from jdk 1.6.0_03
> output from compilation
>
> H:\Mijn Documenten\KLIC\xjcbug> d:\apps\Java\jdk1.6.0_03\bin\xjc
> myschema.xsd
> parsing a schema...
> compiling a schema...
> [ERROR] Two declarations cause a collision in the ObjectFactory class.
> line 46 of file:/H:/Mijn%20Documenten/KLIC/xjcbug/myschema.xsd
>
> [ERROR] (Related to above error) This is the other declaration.
> line 48 of file:/H:/Mijn%20Documenten/KLIC/xjcbug/myschema.xsd
>
> [ERROR] Two declarations cause a collision in the ObjectFactory class.
> line 48 of file:/H:/Mijn%20Documenten/KLIC/xjcbug/myschema.xsd
>
> [ERROR] (Related to above error) This is the other declaration.
> line 47 of file:/H:/Mijn%20Documenten/KLIC/xjcbug/myschema.xsd
>
> Failed to produce code.
>
> schema myschema.xsd
>
> <?xml version="1.0" encoding="UTF-8"?>
> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
> elementFormDefault="qualified" attributeFormDefault="unqualified">
> <!--
> Simple type defenities
> -->
> <xs:simpleType name="straatType">
> <xs:restriction base="xs:string">
> <xs:maxLength value="32"/>
> </xs:restriction>
> </xs:simpleType>
> <xs:simpleType name="huisNummerType">
> <xs:restriction base="xs:int">
> </xs:restriction>
> </xs:simpleType>
> <xs:simpleType name="huisNummerToevoegingType">
> <xs:restriction base="xs:string">
> <xs:maxLength value="4"/>
> </xs:restriction>
> </xs:simpleType>
> <xs:simpleType name="postCodeType">
> <xs:restriction base="xs:string">
> <xs:maxLength value="6"/>
> <xs:pattern value="([0-9]{4,4}[A-Z]{2,2})"/>
> </xs:restriction>
> </xs:simpleType>
> <xs:simpleType name="woonPlaatsType">
> <xs:restriction base="xs:string">
> <xs:maxLength value="32"/>
> </xs:restriction>
> </xs:simpleType>
> <!--
> Complexe type definities
> -->
> <xs:complexType name="adresType">
> <xs:sequence>
> <xs:element name="straat" type="straatType" />
> <xs:element name="huisnummer" type="huisNummerType" />
> <xs:element name="huisnummertoevoeging"
> type="huisNummerToevoegingType" minOccurs="0" />
> <xs:element name="postcode" type="postCodeType" />
> <xs:element name="woonplaats" type="woonPlaatsType" />
> </xs:sequence>
> </xs:complexType>
> <!--
> Element definities
> -->
> <xs:element name="adres" type="adresType"/>
> <xs:element name="_adres" type="adresType"/>
> <xs:element name="Adres" type="adresType"/>
> </xs:schema>
Back to comp.sys.sun.apps | Previous | Next | Find similar
Re: xjc jaxb Two declarations cause a collision in the ObjectFactory class. tornike.amonashvili@gmail.com - 2014-09-22 08:56 -0700
csiph-web