Hello group.
I am implementing a Soap gateway to a JRMP service server.
The server has an always-bound service, that is responsible for
authenticating the remote users.
Upon successful login the server object instantiates and exports a worker
object of a specific type:
public interface LoginService {
public WorkerInterface login(...);
}
public interface WorkerInterface {}
public interface WorkerX extends WorkerInterface {}
public interface WorkerY extends WorkerInterface {}
Is there a way to implement such a service construction with Axis or not?
Any guidelines?
The task as I see it has two parts.
1. Building Soap stubs for all the Worker... interfaces.
2. Buildibg a gateway Soap Service to implements the LoginService.
The problems I think are obvious.
1. How to build a stub for an Interface
2. how to dynamically export Soap services for the worker objects.
Please help.
Lachezar.