0

We've been writing services to access our on-premises databases through Azure Service Bus Relay for awhile now. That means that we've had to deploy them as WCF services. Our web site development is moving to node.js and I would like to begin deploying our API services on node as well. However, while the Azure NPM package has good support for queues/topics on Azure Service Bus, I can find no mention of the relaying capabilities. I've had a look at the code for the Azure SDK on github, but again, relay seems to be conspicuously absent.

Is it possible to use Azure Service Bus Relay with a node.js backend?

Andy S
  • 8,641
  • 6
  • 36
  • 40

2 Answers2

1

Right now, Relay only supports a WCF service. You can try to use Clemens Vasters' post on Port Bridge to get your scenario working. In his post, he describes creating a WCF client / service that will forward requests to a specific port.

TheDude
  • 3,796
  • 2
  • 28
  • 51
1

Now Azure support Node.js. You can find the infomration from here. This link is the samples for Node.js.

Crazy Crab
  • 694
  • 6
  • 16