Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I try to use 'base':
namespace My.Extensions.Base{ [RestExtension("baseProvider")] public class BaseProvider { [RestExtensionMethod()] public static string GetPostsByTag(int tagID, string selected) { StringBuilder html = new StringBuilder(); ... return html.ToString(); } }}
but when I write: http://localhost/base/baseProvider/GetPostsByTag/7/tag
I get
"NetworkError: 404 Not Found - http://localhost/base/baseProvider/GetPostsByTag/7/tag"
What am Imissing?
Thanks,
kukuwka
Hi. I'm not much of an expert in umbraco base but since it's a 404 error I suspect that your web.config misses the registration of the base http module (umbraco.presentation.umbracobase.requestModule).
Try to use the debug in url. Then you can see excately what Umbraco does
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
/base return 404 Not Found
Hi,
I try to use 'base':
but when I write: http://localhost/base/baseProvider/GetPostsByTag/7/tag
I get
"NetworkError: 404 Not Found - http://localhost/base/baseProvider/GetPostsByTag/7/tag"
What am Imissing?
Thanks,
kukuwka
Hi. I'm not much of an expert in umbraco base but since it's a 404 error I suspect that your web.config misses the registration of the base http module (umbraco.presentation.umbracobase.requestModule).
Try to use the debug in url. Then you can see excately what Umbraco does
is working on a reply...