Is the following scenario possible in Azure?
I need to get data from client premises in windows azure, process it and save it in db or table storage. Client rooms are located behind the firewall / nat .. etc. What is the best way to create one single solution (which will be launched for all clients) and allow me to get the data of a particular client.
Basically, the working role will receive data from client 1, process and save it; than from client 2, etc.
I thought using relaying the buss service, but is it possible to create a custom wcf service that will run for many users exposed at the same endpoint and allow the working role to request data at that endpoint, but for a specific client?
source
share