(Maybe axis-dev is the right forum?...)
Does anybody have a take on this?
Thanks,
-- Oliver
--- Begin Message ---
Hi all,
Would the following work in Axis? And in JAX-RPC?
// the service to be exposed:
public interface MyServiceProvider extends java.rmi.Remote {
public MyData doSomething(MyData someData) throws java.rmi.RemoteException;
}
// the interface that all data objects must implement:
public interface MyData extends java.io.Serializable {
}
// some specific data object:
public class SpecificData implements MyData {
public boolean flag;
}
???
Thx,
-- Oliver
--- End Message ---