How should the the SlideShowServicePath and SlideShowServiceMethod of a SlideShow control be configured when using a WCF service instead of an ASMX?
I am porting an ASMX to WCF.
I have created a Ajax enabled WCF Service, and I have configured the two properties similarly to the ASMX case (see below) but my WCF service is not invoked.
mySSExt.SlideShowServicePath = "~/services/ImagesHelper.svc";
mySSExt.SlideShowServiceMethod =
"SearchPhotos";
Should I do anything else/differently?
Thx, Mauro