Author: arnaudsimon
Date: Tue Nov 13 02:57:46 2007
New Revision: 594482
URL: http://svn.apache.org/viewvc?rev=594482&view=rev
Log:
Changed to use initial context helper
Modified:
incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongProducer.java
Modified:
incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongProducer.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongProducer.java?rev=594482&r1=594481&r2=594482&view=diff
==============================================================================
---
incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongProducer.java
(original)
+++
incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongProducer.java
Tue Nov 13 02:57:46 2007
@@ -669,12 +669,9 @@
// _log.debug("protected void createConnection(String clientID = " +
clientID + "): called");
// _log.debug("Creating a connection for the message producer.");
- File propsFile = new File(_fileProperties);
- InputStream is = new FileInputStream(propsFile);
- Properties properties = new Properties();
- properties.load(is);
+
- Context context = new InitialContext(properties);
+ Context context =
InitialContextHelper.getInitialContext(_fileProperties);
ConnectionFactory factory = (ConnectionFactory)
context.lookup(_factoryName);
_connection = factory.createConnection(_username, _password);