Azure Service bus Relay with Java

735 Views Asked by At

I am trying to have a POC running, with which I can use Azure Service Bus relay with Java as backend.

Azure Service Bus relay allow .NET libraries to integrate. There is no Java library available.

If it is not possible with Java, is there any other alternative with java for relay functionality.

2

There are 2 best solutions below

2
On BEST ANSWER

I searched an answer for your question from MSDN thread How to relay on premises java web service through service bus?.

This isn't available in Java. Only WCF Services are able to use Service Bus Relay feature currently.

Some options to workaround this might be:

  1. Create a wrapper WCF service in front of the existing Java Service and register it with Service Bus Relay this way making it available.

  2. Making this into a Loosely coupled architecture by leveraging the Service Bus features that are available currently for Java, like Queues and Topics.

Hope it helps. Best Regards.

0
On

It is possible to use a Java backend with Relay, but you cannot do the same thing as the WCF backend. You have to create a hybrid connection to support scenarios outside of WCF.