I am trying to get an Fine Uploader jQuery example to work. Basically it is just a way to upload files from client page to the webserver.
There is an example on how to set up the file stream on the server side on the project's GitHub page.
How do I from script call this HttpPost endpoint
? The simple jQuery example looks like this:
$(document).ready(function () {
$('#jquery-wrapped-fine-uploader').fineUploader({
request: {
endpoint: 'WhatToWriteHere??'
},
debug: true
});
});
So what do you type in the endpoint
? I suppose it would be something like Namespace.Namespace.ClassName.UploadMethod()
, but I've been fiddling along time with it, but cant get it to work. When debugging with Firebug, I get the following error(s):
405 Method Not Allowed
[FineUploader] xhr - server response received for 0
The HTTP verb POST used to access path '/FineUploaderTest/Uploadfolder' is not allowed.
Any idea?