hey guys,
im making this xml schema document and i've come up with a strange problem. i made this xsd using Oxygen, then i opened it up on JDeveloper. now the problem is that on Oxygen, the document is valid, but on JDeveloper i get an error saying "Reference #*$!xx not found"
below is the snippet of my code,
namespace is
<xs:schema xmlns:soen="http://schemas.xmlsoap.org/soap/encoding/">
<xs:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<xs:complexType name="ArrayOf_tns1_RemoteUser">
<xs:complexContent>
<xs:restriction base="soen:Array">
<xs:attribute ref="soen:arrayType"
wsdl:arrayType="tns1:RemoteUser[]"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ArrayOf_tns1_RemoteComponent">
<xs:complexContent>
<xs:restriction base="soen:Array">
<xs:attribute ref="soen:arrayType"
wsdl:arrayType="tns1:RemoteComponent[]"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
I get error message on base="soen:Array" and ref="soen:arrayType" saying "reference soen:Array not found" and "reference soen:arrayType not found" only on JDeveloper but not on Oxygen.
any suggestions, help is much appreciated
cheers