I have to add a Service Bus Endpoint in the WCF service in order to communicate with it from the AZure Service Bus using Relays.
Now I have few services in on-premise whose configuration I cannot change. Is it possible to communicate with those without adding a servicebus endpoint?
The one service that I have access to , I adding another service end point like this and its working
<service name="Service.ProblemSolver">
<endpoint contract="Service.IProblemSolver"
binding="netTcpBinding"
address="net.tcp://localhost:9358/solver"/>
<endpoint contract="Service.IProblemSolver"
binding="netTcpRelayBinding"
address="sb://namespace.servicebus.windows.net/solver"
behaviorConfiguration="sbTokenProvider"/>
</service>
But, is it possible without adding a new binding?