Re: [Quickfix-developers] Need info on Quick Fix password encryption.
Brought to you by:
orenmnero
From: Zuber <moh...@in...> - 2010-08-03 10:06:23
|
Thanks Kenny for you reply, but I am not able to have a clear idea of how to do it, i have made a Logger class which extends quickfix. import quickfix.Log; import quickfix.SLF4JLogFactory; import quickfix.SessionID; import quickfix.SessionSettings; public class LogFactory extends SLF4JLogFactory implements quickfix.LogFactory{ public LogFactory(SessionSettings settings) { super(settings); // TODO Auto-generated constructor stub } @Override public Log create() { // TODO Auto-generated method stub return null; } @Override public Log create(SessionID arg0) { // TODO Auto-generated method stub return null; } } The logs which in am getting are as followes: 11:01:13 [SocketConnectorIoProcessor-0.0]: sessionCreated MINA session created: /<IP ADDRESS> 11:01:13 [QFJ Timer]: ? FIX.4.4:38-><EXCHANGE>: Application exception in toAdmin() 11:01:13 [QFJ Timer]: send FIX.4.4:38-><EXCHANGE>: 8=FIX.4.49=11035=A34=149=3852=20100803-10:01:13.10256=<EXCHANGE>98=0108=30141=Y553=<FIX USER ID>554=<FIX PASSWORD>10=098 11:01:13 [QFJ Timer]: ? FIX.4.4:38-><EXCHANGE>: Initiated logon request 11:01:13 [SocketConnectorIoProcessor-0.0]: exceptionCaught socket exception (/63.247.113.201:443): Initial SSL handshake failed. 11:01:13 [SocketConnectorIoProcessor-0.0]: ? FIX.4.4:38-><EXCHANGE>: Disconnecting I want to get rid of the PASSWORD(marked). Thanks Zuber -- View this message in context: http://old.nabble.com/Need-info-on-Quick-Fix-password-encryption.-tp29324628p29333740.html Sent from the QuickFIX - Dev mailing list archive at Nabble.com. |