I'm trying to implement Real Time Updates by using Windows Communication Foundation and REST; I've successfully solved one part (see link)
So I subscribe to the events that I want, but don't get ANY notification. This is what I have in my server, listening for updates:
[OperationContract]
[WebInvoke(
Method = "POST",
RequestFormat= WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "RTUHandler")]
void RTUPostInfo(Stream stream);
I have the subscription working from Facebook:
{"data":[{"object":"user","callback_url":"http:\/\/mysite.com\/rtu\/rtuhandler.svc\/rtuhandler","fields":["books","friends","interests","movies","music"],"active":true}]}
As you can see, the url for callback is:
http://mysite.com/rtu/rtuhandler.svc/rtuhandler
Is there anything that I have to take in account to use Real Time Updates with Windows Communication Foundation and REST? As a side note, I can send POST requests to that URL using Fiddler and simulating the Json data as Facebook would do; and works as expected...but from Facebook I get nothing.
Thanks in advance.
Maxi.
void RTUPostInfo(FBChanged stream);– Maximiliano Santa Cruz Nov 10 '11 at 16:33