public SerialService[] findServices(String sessionID)
throws RemoteException
{
SessionManager manager = namingServer.getEngine().getSessionManager();
WillowSession session=manager.findSession(sessionID);
if(session==null)
{
throw new RemoteException("Session invalid or expired");
}
WorkflowParticipant participant=session.getParticipant();
String userid=participant.getUUID();
String password=participant.getPassword();
Vector vector = new Vector(0);