Azure Service Bus is your friend here. What you're really looking to do is to enable a Service Bus Relay, specifically as overviewed here:
http://www.windowsazure.com/en-us/develop/net/how-to-guides/service-bus-relay/
Also, the service in your environment has to expose itself to Service Bus through your firewall. You can find some handy tips here (http://msdn.microsoft.com/en-us/library/windowsazure/ee706729.aspx) although often times the simple act of registering with Service Bus tends to give it enough information to NAT and traverse through your infrastructure.
Service Bus supports a wide variety of relay bindings, as documented here: http://msdn.microsoft.com/en-us/library/windowsazure/hh410102.aspx .
I have a presentation on my blog about Service Bus, and the sample code has two projects that specifically demonstrate the relay. Take a look at http://www.stratospher.es/blog/post/slides-and-code-from-dallas-july-10-2012-windows-azure-cloud-summit and download the sample code there. The two projects you want are "RelayDemoServer" and "RelayDemoClient". The sample code configures the relay in code, but you can also do this via configuration if that's more your style.
In a nutshell, you essentially have to create the WCF endpoint for the service you want on the server side (in your infrastructure), and then create an equivalent relay binding in Service Bus. Once that happens, you'll end up with a Service Bus hosted version of your internal endpoint. It looks something like this:
// create the host itself...
System.ServiceModel.ServiceHost host =
new ServiceHost(typeof(ProblemSolver));
// programmatically add the endpoints
// 1. the WCF endpoint "internally"
host.AddServiceEndpoint(
typeof(IProblemSolver),
new NetTcpBinding(),
"net.tcp://localhost:9358/solver"
);
// 2. the endpoint that is projected back through the service bus (note: NetTcpRelayBinding)
// This one will end up with a DNS name of "sb://[serviceNamespace].servicebus.windows.net/solver"
host.AddServiceEndpoint(
typeof(IProblemSolver),
new NetTcpRelayBinding(),
ServiceBusEnvironment.CreateServiceUri("sb", Microsoft.WindowsAzure.CloudConfigurationManager.GetSetting("ServiceBusNamespace"), "solver"))
.Behaviors.Add(new TransportClientEndpointBehavior
{
TokenProvider = TokenProvider.CreateSharedSecretTokenProvider("owner", Microsoft.WindowsAzure.CloudConfigurationManager.GetSetting("ServiceBusSecret"))
});
host.Open();
Then, on the client side, you simply consume the service via the Service Bus. That looks like this:
var cf = new ChannelFactory<RelayDemoServer.IProblemSolverChannel>(
new NetTcpRelayBinding(),
new EndpointAddress(
ServiceBusEnvironment.CreateServiceUri(
"sb",
Microsoft.WindowsAzure.CloudConfigurationManager.GetSetting("ServiceBusNamespace"),
"solver"
)
)
);
cf.Endpoint.Behaviors.Add(
new TransportClientEndpointBehavior
{
TokenProvider = TokenProvider.CreateSharedSecretTokenProvider(
"owner",
Microsoft.WindowsAzure.CloudConfigurationManager.GetSetting("ServiceBusSecret")
)
}
);
using (var ch = cf.CreateChannel())
{
Console.WriteLine(ch.AddNumbers(4, 5));
}
The secret sauce is the call to CreateServiceUri which figures out the SB hosted URI.
Hope this is helpful, but let me know if you need more,
Adam Hoffman
Windows Azure Blog - http://stratospher.es
Twitter - http://twitter.com/stratospher_es