Hi all, 

I an trying to send message to a JBOSSMQ queue which is located in a system and the 
system was in internetwork. I am sending using the IP address and code was as follows,

java.util.Hashtable JNDIParm = new java.util.Hashtable(); 
              JNDIParm.put(Context.PROVIDER_URL, "jnp://203.193.148.14:1099"); 
             
              JNDIParm.put(Context.INITIAL_CONTEXT_FACTORY, 
"org.jnp.interfaces.NamingContextFactory");            
            jndiContext = new InitialContext(JNDIParm); 
Queue queue = (Queue) jndiContext.lookup(destinationJndiName);
                QueueConnectionFactory queueConnectionFactory = 
(QueueConnectionFactory) jndiContext.lookup(connectionFactoryJndiName); 
                queueConnection = queueConnectionFactory.createQueueConnection();
                queueSession = queueConnection.createQueueSession( false, 
Session.AUTO_ACKNOWLEDGE );
                queueSender = queueSession.createSender(queue);
                queueConnection.start();
                
                ObjectMessage message;

.....

This is giving the follwong error

javax.naming.CommunicationException [Root exception is java.rmi.ConnectException: 
Connection refused to host: 192.168.123.2; nested exception is: 
        java.net.ConnectException: Connection timed out: connect]
        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:611)
        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:471)
        at javax.naming.InitialContext.lookup(InitialContext.java:347)
        at MsgSender.sendMessage(MsgSender.java:77)
        at InternationalCaseSend$CaseSenderThread.run(InternationalCaseSend.java:301)
Caused by: java.rmi.ConnectException: Connection refused to host: 192.168.123.2; 
nested exception is: 
        java.net.ConnectException: Connection timed out: connect
        at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:567)
        at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185)
        at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
        at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:101)
        at org.jnp.server.NamingServer_Stub.lookup(Unknown Source)
        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:492)
        ... 4 more
Caused by: java.net.ConnectException: Connection timed out: connect
        at java.net.PlainSocketImpl.socketConnect(Native Method)
        at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
        at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
        at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
        at java.net.Socket.connect(Socket.java:452)
        at java.net.Socket.connect(Socket.java:402)
        at java.net.Socket.(Socket.java:309)
        at java.net.Socket.(Socket.java:124)
        at 
sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22)
        at 
sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128)
        at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:562)
        .


Kindly, help me in this regard

Thanks in advance
            

<a 
href="http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3825041#3825041";>View 
the original post</a>

<a 
href="http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3825041>Reply 
to the post</a>


-------------------------------------------------------
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

Reply via email to