You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by David Thielen <da...@windward.net> on 2004/07/18 00:21:36 UTC

[axis]: Can I define my java to pass an array of a base class - and Java2Wsdl will handle all child classes?

Hi;

 

Here is my situation. I want to have a web service with the following
method:

 

String doIt(Base [] params)

 

class Base {

.

}

 

class Derived extends Base {

.

}

 

class Another extends Base {

}

 

Can this be done?

 

Thanks - dave