Frage

I'm migrating an old Java application, originally written for Oracle Application Server, to WebLogic 10.3.6 in Oracle Fusion Middleware. The application uses Oracle Advanced Queue / JMS functionality. The AQ is already configured in a database. Now that the application is running in WebLogic when I reach the AQ code I see this error:

java.lang.UnsupportedOperationException: WebLogic server side components must use AQ JMS datasource configuration

I have been reading turgid Oracle documentation for over 8 hours now and I still have no idea how I'm supposed to address this. I believe the error message is telling me I need to use WebLogic's in-built JMS connections to talk to the database's AQ but when I try to understand how to achieve this I'm just going round in circles.

When I googled the error message I found this suggesting I put my old aqapi.jar at the beginning of the server node's classpath. I did this but to no effect.

Is it actually necessary for me to change the way I connect to the AQ, using the WebLogic approach, or can I make a relatively simple change and continue using the existing approach?

War es hilfreich?

Lösung

In my case the answer was yes, I did need to change the way I connected to AQ. I never saw any explanation of why this was different in WebLogic or what the benefits were in doing it this way. Although the WebLogic documentation was very confusing and fairly useless for actually making configuration changes I was eventually directed to the following very useful Oracle blog posts.

How to Create a Simple JMS Queue in Weblogic Server 11g and How to Set Up an AQ JMS (Advanced Queueing JMS) for SOA Purposes

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top