Can't get an initial context of WebLogic server on Play Framework

Viewed 235

I have an application running on Play Framework 2, and I also have a WebLogic server 10.3.6 running on the same machine. (The Play application isn't deployed on the WebLogic server.) In the Play application, I'm trying to send a JMS to the WebLogic server.

I use a class that works perfectly well in a standalone Java application--specifically, WebLogic's example of how to send JMS messages. However, when I try to run the same class in the Play application, it fails to get an initial context. No error is thrown, the application simply hangs and does nothing when it comes to getting the initial context.

What could be the cause of this?

1 Answers
Related