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.