Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3320664
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:58:13+00:00 2026-05-17T22:58:13+00:00

I’ve got my MVC2 RESTFul webservice all set to accept JSON and return some

  • 0

I’ve got my MVC2 RESTFul webservice all set to accept JSON and return some using an example I found here

Good stuff, this example works just fine posting the JSON via jQuery, and handling the JSON response:

        $(function () {
        $("#personCreate").click(function () {
            var person = getPerson();

            // poor man's validation
            if (person == null) {
                alert("Specify a name please!");
                return;
            }

            var json = $.toJSON(person);

            $.ajax({
                url: '/home/save',
                type: 'POST',
                dataType: 'json',
                data: json,
                contentType: 'application/json; charset=utf-8',
                success: function (data) {
                    // get the result and do some magic with it
                    var message = data.Message;
                    $("#resultMessage").html(message);
                }
            });
        });
    });

However, I need to call my webservice automatically (one server calling another, no client-side jQUERY here). So I’m doing this all in C#:

  private static void MakeJSONServiceCall(PersonInputModel person)
    {
        try
        {
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(ServiceUrl);
            request.Method = "POST";
            request.ContentType = "application/json; charset:utf-8";
            DataContractJsonSerializer ser = new DataContractJsonSerializer(person.GetType());
            MemoryStream ms = new MemoryStream();
            ser.WriteObject(ms, person);
            String json = Encoding.UTF8.GetString(ms.ToArray());
            StreamWriter writer = new StreamWriter(request.GetRequestStream());
            writer.Write(json);
            writer.Close();
        }
        catch (Exception e)
        {

        }
    }

Excep, when the DataContractJsonSerializer serializes my object I get some garbage with a bunch of escaped tags:

"{\"<Age>k__BackingField\":24,\"<Name>k__BackingField\":\"Jordan\"}"

Doesn’t look like good JSON to me!?

Fixed:

"{\"Age\":24,\"Name\":\"Jordan\"}"

The class, is properly decordated:

[Serializable]
public class PersonInputModel {
    public string Name { get; set; }
    public int Age { get; set; }
}

Fixed:

[DataContract]
public class PersonInputModel {
    [DataMember]
    public string Name { get; set; }
    [DataMember]
    public int Age { get; set; }
}

And than when I run the webservice, and put in the URL it never gets hit even as I step through this code.

What am I missing?

Thanks!


On closer examination using Fiddler, I’m not seeing a “POST” taking place at all as I step through:

        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(ServiceUrl); 
        request.Method = "POST"; 
        request.ContentType = "application/json; charset:utf-8"; 
        DataContractJsonSerializer ser = new DataContractJsonSerializer(person.GetType()); 
        MemoryStream ms = new MemoryStream(); 
        ser.WriteObject(ms, person); 
        String json = Encoding.UTF8.GetString(ms.ToArray()); 
        StreamWriter writer = new StreamWriter(request.GetRequestStream()); 
        writer.Write(json); 
        writer.Close(); 

Thoughts?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T22:58:13+00:00Added an answer on May 17, 2026 at 10:58 pm

    You need to use the DataContract attributes:

    [DataContract]
    public class PersonInputModel {
        [DataMember]
        public string Name { get; set; }
        [DataMember]
        public int Age { get; set; }
    }
    

    Your existing code is serializing the class’ compiler-generated backing fields, which have unexpected names.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.