I have a duplex wcf service that works fine but know i want to use the ability of azure wcf-relay to connect the client and the service. I made it all work with all my other services my only problem is the duplex service since it has a callback and i am not sure what should i do, how to implement it with the azure wcf relay.
Example:
[ServiceContract(CallbackContract = typeof(IViewerManagerCallback), Name = "IViewerManager", Namespace = "http://samples.microsoft.com/ServiceModel/Relay/")]
public interface IViewerManager
{
[OperationContract]
[FaultContract(typeof(OperationFaultData))]
ViewLayout GetViewLayout(int viewId);