Click here to Skip to main content
15,895,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have problem to call WCF function pass dictionary object (key, value ) as parameter using JSONP(for cross domain) and get back string value.
C#
string PostCustomDataJSONP(Dictionary<string,> Fields);

Please help me, what code i use in interface attribute and in jquery?

interface......
C#
[OperationContract]
       [WebGet(BodyStyle = WebMessageBodyStyle.Bare,
       RequestFormat = WebMessageFormat.Json,
       ResponseFormat = WebMessageFormat.Json,
       UriTemplate = "/PostCustomDataJSONP/")]
       string PostCustomDataJSONP(Dictionary<string,> Fields);


function for testing ...
C#
public string PostCustomDataJSONP(Dictionary<String, Object> Fields)
       {

           foreach (var i in Fields)
           {
               var key = i.Key;
               var val = i.Value;
              // test the data here....


           }

           return "12345";
       }

jqury ......
JavaScript
$(document).ready(function () {
       var wcfServiceUrl = "http://localhost:13561/Service.svc/";
       // sets both dropdown lists empty

       alert(wcfServiceUrl);
       // JSONP CALL TO WCF SERVICE
       $.ajax({
           cache: false,
           url: wcfServiceUrl + "PostCustomDataJSONP",
           // data: "{}",
           data: "{'Fields': {'FirstName':'" + 'shabber' + "'," + "'LastName':'" + 'raza' + "'}}",

           jsonpCallback: "entity",
           contentType: "application/javascript",
           dataType: "jsonp",
           error: function () {
               alert("list failed!");
           },
           success: function (list) {
               alert('hi1');
               //  alert(list);
               });
           }
       });
Posted
Updated 18-Sep-12 2:12am
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