• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Converting from WebLogic to OAS and EJBs

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
While trying to deploy an app on OAS (that has been deployed on WebLogic), I get the following error:

An error occured deploying EJB module: java.lang.InstantiationException: No javax.jms.Destination found at the specified
destination-location (project.Audit.JMSTopic) for MessageDrivenBean LoggingMDB

I've got the following defined in the jms.xml. The location should be the correct jndi name, according to the weblogic deployment descriptors (though in all examples, I see the jndi syntax represented as, for instance, "jms/MyTopic", but I think it's ok since the call to the InitialContext takes the fully qualified class name).


<!-- topic connection factories -->
<topic-connection-factory
location="JMS.Topic.Connection.Factory"
/>

<topic
name="NotifyJMSTopic"
location="Notify.JMSTopic"
>
</topic>

Any assistance would be appreciated.
reply
    Bookmark Topic Watch Topic
  • New Topic