• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Send JMS Messages from one weblogic server to other

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I'm using weblogic 10.1.3. I'm trying to send JMS messages from one server to other server. The JMS sender server is deployed on 64-bit. And receiver is deployed on 32 bit.

I've tried sending the messages by changing the destination url to point other server however, while sending the message application throws JMSException : Connection not found.
This exception occurs when your trying to fetch the QueueSession.

Can you please guide me what is the ideal configuration to send JMS messages from one server to other?

I've tried to send the messages to other server from standalone program to that particular MDB and it worked fine.

The code is as follows,


 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its quite possible the connection does not exist.

1. Does the JNDI factory contain the queue connection factory object bound to the key of your choice ?
2. Did you associate the connection factory with the server ?
3. Look up the JNDI tree to confirm #1
 
Bhagyesh Bhatewara
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Everything is in place. The issue is now resolved.

I have deployed the sender application with new Domain having different name as of the receiver app.
Also, i gave different name to JMS Server and deployment. It has resolved this issue.
 
Deepak Bala
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bhagyesh Bhatewara wrote:Hi,

Everything is in place. The issue is now resolved.

I have deployed the sender application with new Domain having different name as of the receiver app.
Also, i gave different name to JMS Server and deployment. It has resolved this issue.



Well that is weird. A name change solved the problem ? For the sake of others that may stumble upon this thread, can you share the old and new names with us ?
 
To do a great right, do a little wrong - shakepeare. twisted little ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic