I finally found the answer to my question. to invoke the operation from the browser, I use:
http://localhost:8080/service/ctrService.svc/isContractUpToDate?contractId='1'&lastmodifieddate='2012/02/04 00:00:00'
and do it from a .NET client, I use:
IEnumerable<bool> resp = service.Execute<bool>(new Uri("http://localhost:8080/pricingservice/PricingDataService.svc/isContractUpToDate?contractId='1'&" +"lastmodifieddate='"+DateTime.Now.ToString()+"'")); Console.WriteLine("is contract uptodate ? " + resp.First());
source share