No targetnamespace set for local elements inside complextype [message #77496] |
Thu, 19 March 2009 07:33  |
Eclipse User |
|
|
|
Hello,
I have defined a complextype in an wsdl inside <types> section under
schema, as below :
------------------------------------------------------------ -----------
test.wsdl
------------------------------------------------------------ -----------
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.example.org/test/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="test"
targetNamespace="http://www.example.org/test/">
<wsdl:types>
<xsd:schema targetNamespace="http://www.example.org/test/">
<xsd:complexType name="ct1">
<xsd:sequence>
<xsd:element name="ele1" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
</wsdl:definitions>
------------------------------------------------------------ -----------
Now i am using below code snippet :
------------------------------------------------------------ -----------
String sourceLoc = "C:\\test.wsdl";
File file1 = new File(sourceLoc);
final ResourceSet resourceSet = new ResourceSetImpl();
final Resource res1 =
resourceSet.getResource(URI.createURI(file1.toURI().toString ()), true);
WSDLResourceImpl wsdlr = (WSDLResourceImpl)res1;
Definition definition = wsdlr.getDefinition();
Types types = definition.getETypes();
XSDSchema schema = (XSDSchema) types.getSchemas().get(0);
XSDComplexTypeDefinition complexType = (XSDComplexTypeDefinition)
schema.getTypeDefinitions().get(0);
final XSDElementDeclaration element =
(XSDElementDeclaration)((XSDModelGroup)((XSDParticle)complex Type.getContent()).getContent()).
getContents().iterator().next().getContent();
System.out.println(element.getName());
System.out.println(element.getTargetNamespace());
------------------------------------------------------------ -----------
So now when i get the targetNamespace for ele1 which is defined in complex
type "ct1" then it is returnd as "null", where as it should be
"http://www.example.org/test/".
This case works fine when we have this schema defined in an XSD file and
process it ??
It seems there is something wrong in the "XSDSchema" which is returned by
wsdl "Definition".
--
Thanks and best regards,
Bhuvan Mehta
|
|
|
Re: No targetnamespace set for local elements inside complextype [message #77519 is a reply to message #77496] |
Thu, 19 March 2009 08:17  |
Eclipse User |
|
|
|
Bhuvan,
Comments below.
Bhuvan wrote:
> Hello,
>
> I have defined a complextype in an wsdl inside <types> section under
> schema, as below :
> ------------------------------------------------------------ -----------
> test.wsdl
> ------------------------------------------------------------ -----------
> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
> xmlns:tns="http://www.example.org/test/"
> xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
> xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="test"
> targetNamespace="http://www.example.org/test/">
> <wsdl:types>
> <xsd:schema targetNamespace="http://www.example.org/test/">
> <xsd:complexType name="ct1">
> <xsd:sequence>
> <xsd:element name="ele1" type="xsd:string"/>
> </xsd:sequence>
> </xsd:complexType>
> </xsd:schema>
> </wsdl:types>
> </wsdl:definitions>
> ------------------------------------------------------------ -----------
>
> Now i am using below code snippet :
> ------------------------------------------------------------ -----------
> String sourceLoc = "C:\\test.wsdl";
>
> File file1 = new File(sourceLoc);
> final ResourceSet resourceSet = new ResourceSetImpl();
> final Resource res1 =
> resourceSet.getResource(URI.createURI(file1.toURI().toString ()), true);
> WSDLResourceImpl wsdlr = (WSDLResourceImpl)res1;
> Definition definition = wsdlr.getDefinition();
> Types types = definition.getETypes();
> XSDSchema schema = (XSDSchema) types.getSchemas().get(0);
> XSDComplexTypeDefinition complexType = (XSDComplexTypeDefinition)
> schema.getTypeDefinitions().get(0);
> final XSDElementDeclaration element =
> (XSDElementDeclaration)((XSDModelGroup)((XSDParticle)complex Type.getContent()).getContent()).
>
>
> getContents().iterator().next().getContent();
>
> System.out.println(element.getName());
> System.out.println(element.getTargetNamespace());
>
> ------------------------------------------------------------ -----------
> So now when i get the targetNamespace for ele1 which is defined in
> complex type "ct1" then it is returnd as "null", where as it should be
> "http://www.example.org/test/".
No, local element declarations by default have form="unqualified" and
the schema itself by default has elementFormDefault="unqualified" so
unless you take explicit action to set one of these two things to
"qualified" the element will be unqualified and hence will have null
target namespace.
>
> This case works fine when we have this schema defined in an XSD file
> and process it ??
It will work the same way or are you asserting otherwise?
>
> It seems there is something wrong in the "XSDSchema" which is returned
> by wsdl "Definition".
No, I think your expectations are incorrect.
>
> --
> Thanks and best regards,
> Bhuvan Mehta
>
|
|
|
Re: No targetnamespace set for local elements inside complextype [message #604133 is a reply to message #77496] |
Thu, 19 March 2009 08:17  |
Eclipse User |
|
|
|
Bhuvan,
Comments below.
Bhuvan wrote:
> Hello,
>
> I have defined a complextype in an wsdl inside <types> section under
> schema, as below :
> ------------------------------------------------------------ -----------
> test.wsdl
> ------------------------------------------------------------ -----------
> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
> xmlns:tns="http://www.example.org/test/"
> xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
> xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="test"
> targetNamespace="http://www.example.org/test/">
> <wsdl:types>
> <xsd:schema targetNamespace="http://www.example.org/test/">
> <xsd:complexType name="ct1">
> <xsd:sequence>
> <xsd:element name="ele1" type="xsd:string"/>
> </xsd:sequence>
> </xsd:complexType>
> </xsd:schema>
> </wsdl:types>
> </wsdl:definitions>
> ------------------------------------------------------------ -----------
>
> Now i am using below code snippet :
> ------------------------------------------------------------ -----------
> String sourceLoc = "C:\\test.wsdl";
>
> File file1 = new File(sourceLoc);
> final ResourceSet resourceSet = new ResourceSetImpl();
> final Resource res1 =
> resourceSet.getResource(URI.createURI(file1.toURI().toString ()), true);
> WSDLResourceImpl wsdlr = (WSDLResourceImpl)res1;
> Definition definition = wsdlr.getDefinition();
> Types types = definition.getETypes();
> XSDSchema schema = (XSDSchema) types.getSchemas().get(0);
> XSDComplexTypeDefinition complexType = (XSDComplexTypeDefinition)
> schema.getTypeDefinitions().get(0);
> final XSDElementDeclaration element =
> (XSDElementDeclaration)((XSDModelGroup)((XSDParticle)complex Type.getContent()).getContent()).
>
>
> getContents().iterator().next().getContent();
>
> System.out.println(element.getName());
> System.out.println(element.getTargetNamespace());
>
> ------------------------------------------------------------ -----------
> So now when i get the targetNamespace for ele1 which is defined in
> complex type "ct1" then it is returnd as "null", where as it should be
> "http://www.example.org/test/".
No, local element declarations by default have form="unqualified" and
the schema itself by default has elementFormDefault="unqualified" so
unless you take explicit action to set one of these two things to
"qualified" the element will be unqualified and hence will have null
target namespace.
>
> This case works fine when we have this schema defined in an XSD file
> and process it ??
It will work the same way or are you asserting otherwise?
>
> It seems there is something wrong in the "XSDSchema" which is returned
> by wsdl "Definition".
No, I think your expectations are incorrect.
>
> --
> Thanks and best regards,
> Bhuvan Mehta
>
|
|
|
Powered by
FUDForum. Page generated in 0.05524 seconds