Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » ServerTools (WTP) » WSDL/XSD Editor resolves imports only by project path
WSDL/XSD Editor resolves imports only by project path [message #1092238] Thu, 22 August 2013 13:57
Frank Cersovsky is currently offline Frank CersovskyFriend
Messages: 1
Registered: August 2013
Junior Member
Our project team uses the WSDL and XSD editor for webservice design. We divided our webservices definitions into two parts recently. One directory contains common structures and the other one contains the webservices itself. This is replicated in all stages. The file structure on the file system looks like this.

...
.../Development
.../Development/Common
.../Development/Webservices
...
.../Test
.../Test/Common
.../Test/Webservices
...
.../Production
.../Production/Common
.../Production/Webservices

The whole tree is versioned in one svn repository. The access rights are set for each path separate and therefore each path is its own project in eclipse. This looks like this in eclipse project explorer.

RepDevelopment_Common [.../Development/Common]
RepDevelopment_Webservices [.../Development/Webservices]
RepTest_Common [.../Test/Common]
RepTest_Webservices [.../Test/Webservices]
RepProduction_Common [.../Production/Common]
RepProduction_Webservices [.../Production/Webservices]

The project structure differs from the file system structure. This fine for all tools we use. The schema validator for example can validate the WSDL and XSD. But the WSDL and XSD editors can't resolve the included files.

Test.xsd
...
<!-- 1. reference based on file system structure -->
<xsd:import schemaLocation="../Common/Basic.xsd" namespace="myschemas/Basic" />
<!-- 2. reference generated by XSD-editor -->
<xsd:import schemaLocation="../RepTest_Common/Basic.xsd" namespace="myschemas/Basic" />
...

The first import validates correctly. But the editor doesn't show the elements and messages. He can't find the Basic.xsd.
The second import works for the editor. But the validator brings a warning, because he can't find and validate the Basic.xsd. Additional problem for us the stage depended schemaLocation.

I expect the editor to behave like the validator and resolve imports based on the file system structure. Is this a bug or expected behavior of the editor? Or is there a configuration parameter?

Thanks for your help in advance.
Previous Topic:system_catalog.xml type errors
Next Topic:customizing getDoubleClickStrategy for XML editor
Goto Forum:
  


Current Time: Wed Apr 24 21:26:37 GMT 2024

Powered by FUDForum. Page generated in 0.02732 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top