You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Davanum Srinivas (JIRA)" <ax...@ws.apache.org> on 2005/04/30 06:23:11 UTC

[jira] Commented: (AXIS-1963) WSDL2JAVA problems with custom exceptions

     [ http://issues.apache.org/jira/browse/AXIS-1963?page=comments#action_64123 ]
     
Davanum Srinivas commented on AXIS-1963:
----------------------------------------

please upload your WSDL

thanks,
dims

> WSDL2JAVA problems with custom exceptions
> -----------------------------------------
>
>          Key: AXIS-1963
>          URL: http://issues.apache.org/jira/browse/AXIS-1963
>      Project: Axis
>         Type: Bug
>   Components: WSDL processing
>     Versions: 1.2RC2, 1.2RC3
>  Environment: Linux
>     Reporter: Sergio Bossa

>
> I have a custom exception coded as follows:
> public class MySOAPFault extends AxisFault
> {
>     public static final String ERROR="Error.1";
>     
>     public MySOAPFault(String code, String message)
>     {
>         super(message);
>         
>         setFaultCodeAsString(code);
>     }
> }
> And this is its WSDL mapping:
> <element name="MySOAPFault">
>    <complexType>
>     <sequence/>
>    </complexType>
> </element> 
> ...
> <wsdl:message name="MySOAPFault">
>       <wsdl:part element="tns:MySOAPFault" name="fault"/>
> </wsdl:message>
> ...
> When I run WSDL2JAVA over my WSDL, I get a class named MySOAPFault_Element (not MySOAPFault, as it should be), leading to compile time errors.
> However, all works fine if I use Axis API directly, or if I use other languages: the custom exception is correctly thrown and deserialized.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira