I've installed Cultiv RestContour on an Umbraco 4.5.2 site. I've removed the bin reference in restExtensions.config. I can get the GUID of my form using the example:
yoursite.ext/base/getContourForm/GetAllForms
...but when I copy the GUID that I get and use it in the url:
...I get the error "Extension not found or permission denied". Does anybody know which extension it doesn't find or where I should be looking at the permissions? Have checked that NETWORK SERVICE has full access to Cultiv.RestContour.dll in the bin folder.
Also make sure that getContourForm and GetFormFields have the correct casing. I don't think it's too important for the formGuid variable but it doesn't hurt checking the casing there as well.
Wow! This was a great package! Really nice to be in full control over both the form and the submission.
For me the biggest advantage with Contour is that I don't have to write all the boring backend code to handle the data from forms, but I don't like the client side code that it generates and the postback. This package solves both problems!
Extension not found or permission denied
Hi!
I've installed Cultiv RestContour on an Umbraco 4.5.2 site. I've removed the bin reference in restExtensions.config. I can get the GUID of my form using the example:
yoursite.ext/base/getContourForm/GetAllForms
...but when I copy the GUID that I get and use it in the url:
yoursite.ext/base/getContourForm/GetFormFields?formGuid=xxx-xx
...I get the error "Extension not found or permission denied". Does anybody know which extension it doesn't find or where I should be looking at the permissions? Have checked that NETWORK SERVICE has full access to Cultiv.RestContour.dll in the bin folder.
Thanks!
/Thomas Kahn
Hey Thomas,
Good, for 4.5.2 you don't need the /bin/ indeed!
Does your restExtensions.config file look like this?
Also make sure that getContourForm and GetFormFields have the correct casing. I don't think it's too important for the formGuid variable but it doesn't hurt checking the casing there as well.
Update: Ah wait, I see what the problem is, the URL should be like:
yoursite.ext/base/getContourForm/GetFormFields/?formGuid=xxx-xx
Notice the slash before the questionmark.
Hi Sebastiaan!
Thanks!
I added the slash and got the expected JSON-string.
Now I'll move on to see if I can get the form working.
/Thomas Kahn
Wow! This was a great package! Really nice to be in full control over both the form and the submission.
For me the biggest advantage with Contour is that I don't have to write all the boring backend code to handle the data from forms, but I don't like the client side code that it generates and the postback. This package solves both problems!
/Thomas Kahn
is working on a reply...