Server side processing responds with 404 Page Not Found

Server side processing responds with 404 Page Not Found

octavoctav Posts: 18Questions: 0Answers: 0
edited September 2013 in General
Hi. I am trying to make a very simple server-side processing to get started.
This is my initialization code:

oTable = $('#solutionsTable').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"bSort": false,
"oLanguage": {
"sSearch": "Search all columns:"
},
"bProcessing": true,
// "bDeferRender": true,
"bServerSide": true,
"bAjaxSource": '@Url.Action("AJAXGetUserData")',
});

when trying to open the view that uses this table, I get a 404 Page Not Found error and the corresponding URL is obviously malformed, since it does not contain the action name:

http://localhost/Archimede.Web/INT/CMS/null?sEcho=1&iColumns=6&sColumns=&iD…chable_4=true&sSearch_5=&bRegex_5=false&bSearchable_5=true&_=1379693482183

when it should have been localhost/Archimede.Web/INT/CMS/AJAXGetUserData

What could be the problem? I also tried using POST Request, with the same result.

Replies

This discussion has been closed.