Is there a way to import a wsdl which references other xsd files into the soa project without importing referenced xsd file?

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:

Products Versions
TIBCO ActiveMatrix Service Bus -
Not Applicable -

Description

Resolution:
Yes you can you need to change this part in your wsdl file.

&ltxsd:schema>

&ltxsd:import namespace="http://eds.com/nextgen/ProviderFullFillment" schemaLocation="./ProviderFullfillmentService.xsd" />

</xsd:schema>

To

&ltxsd:schema>

&ltxsd: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?