messaging management for asynchronous services

I need to know if it’s possible to manage the communication with asynchronous services with other tools, without depending on the adapter (MSG) that Jopera offers. I mean, what can I do if I need to manage the queues with a different messaging server, in order to get higher interoperability and scalability?

Axis1.4

Yes, MSG gives you access only to a local queue, which you can use for inter-process asynchronous message passing.

To interact asynchronously with external services, you can try with the INVOKE and RECEIVE adapters which are implemented using Axis1.4. With it you can send and receive SOAP messages from WS-* asynchronous transports (e.g. JMS message queues).

Otherwise you are welcome to develop your own JOpera plugin adapter to integrate with the messaging technology of your choice.