public void getDataBahnHandle() { |
try { |
_chatSession.createBahn(partyName, "Chat"); |
System.out.println("New Party created"); |
} catch (jdceRMIBahnException e) { |
System.out.println("Exception in creations" +e); |
} catch (Exception e) { |
e.printStackTrace(); |
} |
// long startTime = System.currentTimeMillis(); |
try { |
_chatBahn = _chatSession.getDataBahnHandle(partyName, "Chat"); |
} catch (jdceRMIBahnException e) { |
System.out.println("Exception in creations" +e); |
} catch (Exception e) { |
e.printStackTrace(); |
} |
} |