I am trying to get the MDB example from the JBoss documentation running. Here is what
I have to get a connection and a queue, etc:
public void setupPTP() throws JMSException, NamingException
{
Properties properties = new Properties();
properties.setProperty(Context.INITIAL_CONTEXT_FACTORY,
"org.jnp.interfaces.NamingContextFactory");
properties.setProperty(Context.PROVIDER_URL, "jnp://localhost:1099/");
properties.setProperty(Context.URL_PKG_PREFIXES,
"org.jboss.naming:org.jnp.interfaces");
InitialContext iniCtx = new InitialContext(properties);
Object tmp = iniCtx.lookup("ConnectionFactory");
QueueConnectionFactory qcf = (QueueConnectionFactory)tmp;
conn = qcf.createQueueConnection();
queA = (Queue)iniCtx.lookup("queue/A");
queB = (Queue)iniCtx.lookup("queue/B");
session = conn.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);
conn.start();
}
When executing Object tmp = iniCtx.lookup("ConnectionFactory") I get this exception:
javax.naming.CommunicationException. Root exception is java.rmi.ConnectException:
Connection refused to host: 64.91.160.168; nested exception is:
java.net.ConnectException: Connection refused: connect
Can anyone tell me what I am doing wrong? Where is 64.91.160.168 coming from?
Thanks!!
Dan
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830593#3830593
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830593
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user