Click here to Skip to main content
15,891,777 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can anyone please help me determine why my wrapped JSON parameters are coming in NULL?

I'm trying to integrate a vendor's product into our internal software and have created a WCF web service to handle their POST requests.

The vendor's JSON data format in the request body look like this:
{ "Call": { "call_detail_id": "3514736", "ouid": "7425" } }

If I create a test interface with WebMessageBodyStyle.Bare and pass in a couple JSON parameters, it works great. However, the vendor's typed JSON is not coming through.

Any help would be very much appreciated.

Thanks,


Andre Ranieri


C#
[ServiceContract]
    public interface IMyService    
{
        [OperationContract]
        [WebInvoke(
               Method = "POST", 
               UriTemplate = "post-call/",
               RequestFormat = WebMessageFormat.Json, 
               ResponseFormat = WebMessageFormat.Json,
               BodyStyle = WebMessageBodyStyle.WrappedRequest
               )
        ]
        string lmc_BusinessLogic(Call myCall);

    }


    public class Call
    {
        [DataMember(Name = "call_detail_id")]
        public string call_detail_id { get; set; }
        [DataMember(Name = "ouid")]
        public string ouid { get; set; }

    }



Implementation:

C#
public string lmc_BusinessLogic(Call myCall)
        {
            // myCall object is null when passed in here.
            // Implement some business logic once the parms are getting passed.

        }
Posted
Updated 7-May-13 18:46pm
v2

1 solution

Change
C#
BodyStyle = WebMessageBodyStyle.WrappedRequest to BodyStyle = WebMessageBodyStyle.Bare

also change
JavaScript
{ "Call": { "call_detail_id": "3514736", "ouid": "7425" } } to { "myCall": { "call_detail_id": "3514736", "ouid": "7425" } }

Hope this helps
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900