Hi there. I get this error
com.wm.app.b2b.server.ServiceException: javax.wsdl.WSDLException: WSDLException (at /wsdl:definitions/wsdl:types/xs:schema): faultCode=OTHER_ERROR: An error occurred trying to resolve schema referenced at ‘…/…/…/…/…/schema/payments/message/fault/Fault.xsd’, relative to ‘file:/C:/CCA/Aravind_First/WEB-INF/WEB-INF/wsdl/payments/account/service/financialSummary/’.: java.io.FileNotFoundException: This file was not found: file:/C:/CCA/Aravind_First/WEB-INF/WEB-INF/schema/payments/message/fault/Fault.xsd
at wm.server.ws.wsdl2wsd(ws.java:1132)
when attempting to create a consumer WSD for this WSDL (fragment only)
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns="http://schemas.xmlsoap.org/wsdl/[/size][SIZE=1][COLOR=#0000ff]"[/color] xmlns:tns="http://www.orange.com/payments/account/service/financialSummary[/size][SIZE=1][COLOR=#0000ff]"[/color] xmlns:flt="http://www.orange.com/payments/message/fault[/size][SIZE=1][COLOR=#0000ff]"[/color] xmlns:xs="http://www.w3.org/2001/XMLSchema[/size][SIZE=1][COLOR=#0000ff]"[/color] xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/[/size][SIZE=1][COLOR=#0000ff]"[/color] xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/[/size][SIZE=1][COLOR=#0000ff]"[/color] targetNamespace="http://www.orange.com/payments/account/service/financialSummary[/size][SIZE=1][COLOR=#0000ff]"[/color] name="FinancialAccountSummary">
<wsdl:types>
<xs:schema targetNamespace="http://www.orange.com/payments/account/service/financialSummary[/size][SIZE=1][COLOR=#0000ff]"[/color] xmlns="http://www.w3.org/2001/XMLSchema[/size][SIZE=1][COLOR=#0000ff]"[/color] xmlns:flt="http://www.orange.com/payments/message/fault[/size][SIZE=1][COLOR=#0000ff]">[/color]
<import namespace="http://www.orange.com/payments/message/fault[/size][SIZE=1][COLOR=#0000ff]"[/color] schemaLocation="…/…/…/…/…/schema/payments/message/fault/Fault.xsd"/>
<include schemaLocation="…/…/…/…/…/schema/payments/account/service/financialSummary/getFinancialAccountSummaryRequest.xsd"/>
<include schemaLocation="…/…/…/…/…/schema/payments/account/service/financialSummary/getFinancialAccountSummaryResponse.xsd"/>
<element name="getFinancialAccountSummaryRequest" type="tns:getFinancialAccSummaryReq"/>
<element name="getFinancialAccountSummaryResponse" type="tns:getFinancialAccSummaryResp"/>
<element name="fault" type="flt:Fault"/>
</xs:schema>
The Fault.xsd file is exactly where it should be, that is, exactly where the relative path in the schemaLocation says it is.
What am I doing wrong?