So I have a URL to my wcf service that looks like this:
http://dev.verse-master.com/api/VerseMasterService.svc/Search/bi/isaiah 34:16/0/60
My operation contract looks like this:
[OperationContract]
[WebGet(UriTemplate = "/Search/{translation}/{searchTerm}/{skip}/{take}", ResponseFormat = WebMessageFormat.Json)]
VerseMaster.BusinessLayer.DataObjects.ServerObjects.GetVersesSearchServerObject GetVersesBySearch(string translation, string searchTerm, string skip, string take);
I have tried from reading online to add this line to the web.config:
<httpRuntime requestPathInvalidCharacters="" requestValidationMode="4.0"/>
But I still get this error:
HTTP Error 400 - Bad Request.
Any ideas?