I'm sending a JSon to my Asp.Net MVC 3 Controller that is inside a Web Worker (using jquery-hive). At the PostMessage, I can capture a Asp.Net error telling me that it find the controller but has no action method X.

See the code: Here I call the Worker at main.js:

 var worker = new Worker('models/worker.js');

worker.onmessage = function (event) {
    var a = event;
};
worker.postMessage(null);

The code into worker.js:

  importScripts('hive.pollen.js');  $(function (msg) {
    $.ajax.get({
        url: '/Search/Method1/',
        dataType: 'POST',
        data: null,
        success: function (jsonObj) {
            $.send( jsonObj);
                }
    });
});

The controller has this method:

[HttpPost]
    public JsonResult Method1(string test)
    {
        return Json("worked! " + test);
    }

The posMessage that the worker give me back, it's a asp.net error.

[HttpException]: A public action method "Method1" was not found on controller SearchController

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It seems like you are issuing a GET request ($.ajax.get method).
Try using jquery's $.post()

link|improve this answer
You can also change [HttpPost] to [HttpGet]. Also, beware of the string inside the Json method. AFAIK, Json is supposed to encode arrays or objects (which will contain values or properties, respectively). Not sure if it is standard or possible to Json encode a string. – Marcelo Zabani Oct 20 '11 at 1:22
You're right Marcelo. I don't know why the hell I thought that jquery-hive do not implement the $.post. Working like a charm! Tks – Mr. Ott Oct 20 '11 at 22:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.