|
From: Bud B. <bu...@re...> - 2007-03-09 21:47:32
|
I'm experiencing some weirdness running my application within Eclipse. Whe=
n
I run under the debugger (Debug As...), my application works as I expect.
When I call initiator.start(), quickfixj initiates a logon to the
counterparty and everything seems to go well. When I run the application
(Run As...), the session appears to start but quickfixj does not initiate a
login sequence. Is it something to do with the blocking call to
System.in.read() after I start the initiator?=20
initiator =3D new ThreadedSocketInitiator(application,
messageStoreFactory, settings, logFactory, messageFactory);
initiator.start();
System.out.println("press <enter> to quit");
System.in.read();
initiator.stop();
System.exit(0);
Thanks. -- Bud
|