Hi,
I have 3 interfaces A,B and C in my application.
interface A {
public void method1();
public void method2();
}
interface B {
public void method3();
public void method4();
}
interface C extends A,B{
}
Now I want C to be exposed as a web service.
So
L PROTECTED]
>Sent: 20 October 2004 16:35
>To: [EMAIL PROTECTED]
>Subject: Java2WSDL on class that implements multiple interfaces
>
>Running the WSDL2Java tool on a class that implements multiple
>interfaces (or a base class and 1+ interfaces), results in a
>WSDL schema that (ra
Running the WSDL2Java tool on a class that implements multiple
interfaces (or a base class and 1+ interfaces), results in a WSDL schema
that (randomly?) selects only one of the interfaces (or base class) as
the of the implementing class.
Is there a way to express multiple interface