Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using ASP.NET Web API, and am having a wonderful time. At least with GETs. For some reason when I try to send data via jQuery $.post() or $.ajax(), the values recieved by my ApiController are always null. What's more strange is that sending data to it with Fiddler does just fine. I'm sure it's a problem with how I'm constructing the object in javascript, but I can't seem to find it. Here's the code:

// C#
[HttpPost]
public HttpResponseMessage BeginTrack([FromBody]string requestContext) {
.. requestContext is always null.  Except when it comes from Fiddler.
        RequestContext ctx = null;
        if (Request.Content.Headers.ContentType.MediaType == "application/json") {
            try {
                ctx = Json.Decode<RequestContext>(requestContext);
            } catch (Exception ex) {
                return Request.CreateErrorResponse(HttpStatusCode.InternalServerError,
                    "An error has occured while processing your request.  See Exception for details.", ex);
            }
        }

        if (ctx == null) //... 

And the jQuery...

getRequestContext = function (source, docType, id, ip) {
    return { 
        SourceSite: source,
        DocumentType: docType,
        Id: id,
        HostUrl: document.URL,
        HostDomain: document.location.hostname,
        IPAddress: ip,
        UserAgent: navigator.userAgent,
        Referrer: document.referrer
    };
},

beginTracking = function (done, fail) {
    var data = JSON.stringify(getRequestContext('none', 'P', 0, 'ip'));
    $.post(
        serviceBase + "/Tracking/BeginTrack",
         data,
        done,
        "json"
        ).fail(fail);
}

UPDATE: So apparently this works fine in ASP.NET WebForms (.NET 3.5), but not in MVC4 in the same project...

share|improve this question

2 Answers

up vote 1 down vote accepted

You need to send "=mystring" rather than "mystring" from jquery. This is a known issue which is due to the way data are mapped in Web API.

share|improve this answer
So basically just prepend data with an =? I'll give it a shot when I get back to work. Thanks. – wtfsven Jan 24 at 3:42
Yup. turns out that was the problem. Prepend an '=' and all is well. Thanks! – wtfsven Jan 24 at 15:49

On your controller method, add the HttpPost attribute.

[HttpPost]
public virtual ActionResult DoSomething 
{
}
share|improve this answer
Left that out. It was in my code, just not in the posted code. So the problem persists, unfortunately. – wtfsven Jan 23 at 22:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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