• 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

JMS problem

 
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am using JMS queues to receive and send messages to Tibco.My code seems to have worked for around9-10 months suddenly it throws an exception that indicates that it cannot create the queue message receiver and InvalidDestinationException.
Can anyone tells me why i get this error.
 
author
Posts: 4335
39
jQuery Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please provide more information. Off hand I'd say your server config is wrong, but thats a shot in the dark.
 
shawn kennedy
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What information do you require?
All i can say is that all these queues are set up in the EMS Server and they are present there.So why should i suddenly start getting InvalidDestinationException when the queues are valid.
 
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If the code stops working after 9-10 months, then two possibilities come to mind:

(1) You just exceeded some limit -- either a file is full, or a queue is full, or something to that effect. Try rebooting the server, clearing out all of your logs and restarting it.

(2) You just changed something in the configuration in the process of doing something else. Was anyone else deploying or changing something on those servers?

Kyle
 
Ranch Hand
Posts: 1683
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Invoke getQueueName() on your Queue. Is the name of the queue returned correct?
 
shawn kennedy
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I tried rebooting the server and checked the config files and it yet gives me the same error.Besides the queue names have not changed at all thats why i am confused.
 
reply
    Bookmark Topic Watch Topic
  • New Topic