Hiren Mistry
Hiren Mistry

Reputation: 414

Getting Badrequest error while parsing json object from client side to WCF service

Client:

<script src="http://code.jquery.com/jquery-nightly.min.js" type="text/javascript">      </script>
<script src="JSON.js" type="text/javascript"></script>
<script type="text/javascript">
    function register() {
        var searchRequest = new Object();
        searchRequest.Name = "Chris";

        //var dataToSend = '{"searchRequest":[' + JSON.stringify(searchRequest) + ']}';
        var dataToSend = "JSON";

        var resolution = { r: { Name: "Fred", Rank: 2, SerialNumber: 17268 } };

        // convert object to JSON string  (See http://jollytoad.googlepages.com/json.js)
        var objectAsJson = $.toJSON(resolution);
        alert(objectAsJson);
        $.ajax({
            cache: false,
            type: "POST",
            async: false,
            url: "http://localhost:64202/MyService.svc/" + objectAsJson ,
            data: objectAsJson ,
            //data: dataToSend,
            contentType: "application/json",
            dataType: "html",
            processData: false,
            success: function (data)
            {
                $('body').html(data);
            },
            error: ServiceFailed
        });
    }
    function ServiceFailed(result) {
        alert(result.statusText);
        alert("Failed");
    }
    function ServiceSucceeded(result) {
        debugger;
        alert("Success; " + result.GetDateTimeResult);

    }

    $(document).ready(function () {
        $("#btnGet").click(function () {
            register();
        });
    });

Service Interface

[OperationContract, WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Wrapped,    RequestFormat = WebMessageFormat.Json,UriTemplate="{reg}")]
//Stream GetDateTime(string message, int x, int y);
string GetDateTime(string reg);

Service

public string GetDateTime(string reg)
{
   //reg = "{\"EMail\": \"[email protected]\",\"Name\": \"Hiren\",\"Age\": 23,\"Zipcode\": 85 }";
   DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(RegistrationForm));
   UTF8Encoding uniEncoding = new UTF8Encoding();
   MemoryStream stream1 = new MemoryStream();
   stream1.Position = 0;
   var sw = new StreamWriter(stream1, uniEncoding);
   //try
   //{
   sw.Write(reg);
   sw.Flush();//otherwise you are risking empty stream
   stream1.Seek(0, SeekOrigin.Begin);

   // Test and work with the stream here. 
   // If you need to start back at the beginning, be sure to Seek again.
   //}
   //finally
   //{
   //    sw.Dispose();
   //}

   RegistrationForm obj = (RegistrationForm)ser.ReadObject(stream1);
   //var address = new JavaScriptSerializer().Deserialize<RegistrationForm>(reg);
   // return "sa:" + reg.EMail;
   return "sa:";
}

Upvotes: 0

Views: 238

Answers (2)

Hiren Mistry
Hiren Mistry

Reputation: 414

Problem got resolved with the idea which you have pointed out to me that only not require we need to do other things to make it work.

Upvotes: 0

kostas ch.
kostas ch.

Reputation: 2035

Try to remove objectAsJson from url. Put in your interface

[OperationContract, WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Wrapped,  
  RequestFormat = WebMessageFormat.Json,UriTemplate="/GetDateTime")]       
    string GetDateTime();   

And pass your data as you do.

Upvotes: 1

Related Questions