Is there a way to import a wsdl which references other xsd files into the soa project without importing referenced xsd file?
book
Article ID: KB0094360
calendar_today
Updated On:
TIBCO ActiveMatrix Service Bus
|
-
|
Not Applicable
|
-
|
Description
Resolution:
Yes you can you need to change this part in your wsdl file.
<xsd:schema>
<xsd:import namespace="http://eds.com/nextgen/ProviderFullFillment" schemaLocation="./ProviderFullfillmentService.xsd" />
</xsd:schema>
To
<xsd:schema>
<xsd:import namespace="http://eds.com/nextgen/ProviderFullFillment" schemaLocation="file:///C:/temp/ProviderFullfillmentService.xsd" />
</xsd:schema>
in your wsdl then you don't need to import referenced xsd's file into the SOA project.
Issue/Introduction
Is there a way to import a wsdl which references other xsd files into the soa project without importing referenced xsd file?
Feedback
thumb_up
Yes
thumb_down
No