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 Leszek Krause <LK...@lukas.com.pl> on 2003/10/03 10:55:53 UTC

WSDL2Java

I've been trying to change my axis from version 1.0 to 1.1,
but I've found some truble:
After generating classes from my wsdl an exception is missing.
 
I used to have:
public void foo(Foo foo) throws java.rmi.RemoteException,
FooException;
and now I've got:
public void foo(Foo foo) throws java.rmi.RemoteException;
 
I haven't change my wsdl and I can't find out what is wrong.
I tried to use switch -T1.2 and -T1.1 while generating, but that gave
me no results.
 
Can anybody tell me what is wrong?