Hello,
I am trying to throw an custom exception and when I run WSDL2Java it creates my excepion but the package name is REVERSED for InvalidDataFormatException.java WSDL2Java puts this java class in exceptions.ws.com package instead of com.ws.exceptions package
Please let me know if its a bug in AXIS 1.2 or I am making a mistake in my declaration( I hope so.. but I don't have a clue)
Here is the schema for my exception (ExceptionSchema.xsd)
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:stns="java:com.ws.exceptions"
elementFormDefault="qualified"
attributeFormDefault="qualified"
targetNamespace="java:com.ws.exceptions">
<xsd:complexType name="InvalidDataFormatException">
<xsd:sequence>
<xsd:element type="xsd:string"
name="errorCode"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
<xsd:element type="xsd:string"
name="errorDescription"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
<xsd:element type="xsd:string"
name="variables"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
and here is my WSDL
<?xml version="1.0" ?>
<definitions name="urn:DataInquiry"
targetNamespace="urn:DataInquiry2"
xmlns:tns="urn:DataInquiry2"
xmlns:typens="urn:DataInquiry2"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd1="java:com.ws.exceptions">
<!-- type defs -->
<import namespace="java:com.ws.exceptions" location="ExceptionSchema.xsd"></import>
<types>
<xsd:schema targetNamespace="urn:DataInquiry2"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="inquiryRequest">
<xsd:all>
<xsd:element name="so" type="xsd:string"/>
<xsd:element name="lNumber" type="xsd:string"/>
</xsd:all>
</xsd:complexType>
<xsd:complexType name="inquiryResponse">
<xsd:all>
<xsd:element name="status" type="xsd:string"/>
<xsd:element name="mNumber" type="xsd:string"/>
<xsd:element name="mFlag" type="xsd:string"/>
<xsd:element name="mAFlag" type="xsd:string"/>
<xsd:element name="mLFlag" type="xsd:string"/>
</xsd:all>
</xsd:complexType>
</xsd:schema>
</types>
<!-- message declns -->
<message name="empty"/>
<!-- Raj -->
<message name="GetInquiryDataRequest">
<part name="inquiryRequest" type="typens:inquiryRequest"/>
</message>
<message name="GetInquiryDataResponse">
<part name="inquiryResponse" type="typens:inquiryResponse"/>
</message>
<message name="InvalidDataFormatException">
<part name="InvalidDataFormatException" type="xsd1:InvalidDataFormatException">
</part>
</message>
<!-- port type declns -->
<portType name="DataInquiry">
<operation name="getInquiryData">
<input name="input" message="tns:GetInquiryDataRequest"/>
<output name="output" message="tns:GetInquiryDataResponse"/>
<fault name="InvalidDataFormatException" message="tns:InvalidDataFormatException"/>
</operation>
</portType>
<!-- binding declns -->
<binding name="DataInquirySOAPBinding" type="tns:DataInquiry">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="getInquiryData">
<soap:operation soapAction=""/>
<input name="input">
<soap:body use="literal"/>
</input>
<output name="output">
<soap:body use="literal"/>
</output>
<wsdl:fault name="InvalidDataFormatException">
<wsdlsoap:fault name="InvalidDataFormatException" use="literal"/>
</wsdl:fault>
</operation>
</binding>
<!-- service decln -->
<service name="DataInquiryService">
<port name="DataInquiry" binding="tns:DataInquirySOAPBinding">
<soap:address location="http://localhost:8080/InquiryWSWAR/services/DataInquiry"/>
</port>
</service>
</definitions>
- Axis 1.2 WSDl2Java creating packages in the REVERSE... raj . x . arunmugan
- Re: Axis 1.2 WSDl2Java creating packages in th... Guy Rixon
- Re: Axis 1.2 WSDl2Java creating packages in th... raj . x . arunmugan
