Hi all,
we're about to establish a connection from an enterprise java application on a websphere appserver to a crystal report XI server via the JAVA RAS SDK.
Somewhere in the javacode that is deployed on the websphere appserver you can find the following code (analogously):
My Question:
Due to security aspects: the logon method establishes a remote connection to the determined server, by sending username and password. What is the protocol used by the JAVA RAS SDK, to do the remote call that is encapsulated in the ISessionMgr.logon(...) call???
If sensitive data should be reported, its not secure to send username and password by a unconfident protocol.
Any suggestions out there or hints for literature?
thanks in advance
ulliM
we're about to establish a connection from an enterprise java application on a websphere appserver to a crystal report XI server via the JAVA RAS SDK.
Somewhere in the javacode that is deployed on the websphere appserver you can find the following code (analogously):
Code:
try {
ISessionMgr sessionMgr = CrystalEnterprise.getSessionMgr();
IEnterpriseSession session = sessionMgr.logon("username", "password", "servername","secEnterprise");
} catch (SDKException e) {
e.printStackTrace();
}
My Question:
Due to security aspects: the logon method establishes a remote connection to the determined server, by sending username and password. What is the protocol used by the JAVA RAS SDK, to do the remote call that is encapsulated in the ISessionMgr.logon(...) call???
If sensitive data should be reported, its not secure to send username and password by a unconfident protocol.
Any suggestions out there or hints for literature?
thanks in advance
ulliM