is there a way to connect to jboss server as follows ???? following code is for sybase EA
server
Properties props = new Properties();
props.put("org.omg.CORBA.ORBClass", "com.sybase.CORBA.ORB");
ORB orb = ORB.init(new String[] {}, props);
Manager manager = ManagerHelper.narrow(orb.string_to_object(server));
String encryptedPassword = JCrypt.crypt(user, password);
Session tmpSession = manager.createSession(user, encryptedPassword);
UserManager userMgr = UserManagerHelper.narrow(tmpSession.create("Here i put
my jndi look up"));
String sessionId = userMgr.login();
session = manager.createSession(user, sessionId);
if this is possible how? wt are the jars needed.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4203968#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...