.getJSON调用服务:服务中的异常

时间:2013-07-30 14:28:47

标签: json wcf jquery wcf-rest

我创建了一个WCF服务并在客户端调用它。

<script lang="javascript" type="text/javascript">
    var x;
    function ttsFunction() {
                   var data = new Object();
        data.text = $('#ddl').val();
        var jsonString = JSON.stringify(data);
        x = $.getJSON("http://localhost:8080/wscccService.svc/RunTts?jsoncallback=?", { text: jsonString });
    }
    $('#speak').val = x;
</script>

服务

namespace wsccc1
{
 [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
 [JavascriptCallbackBehavior(UrlParameterName = "jsoncallback")]//"jsoncallback is custom"

 public class wscccService : Iwservice
 {
    [WebGet(ResponseFormat = WebMessageFormat.Json)]
    public string RunTts(string length)
    {
        return Membership.GeneratePassword(Int32.Parse(length), 1);
    }
 }
}

接口代码:

namespace wsccc1
{
  [ServiceContract]
  public interface Iwservice
  {
     [OperationContract]
    //[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json,
    //    BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "RunTts")]
    string RunTts(string text);
  }
 }

例外情况如下: error

我猜参数“length”有问题,它是json格式。谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

您需要使用JSON deserializer来读取长度变量。现在你正在尝试Int32.Parse(“{\”text \“:\”8 \“}”),这没有意义。

示例(这是针对Newtonsoft JSON):

public string RunTts(string lengthObject) {
    JToken token = JObject.Parse(lengthObject);
    int length = (int)token.SelectToken("text");
    return Membership.GeneratePassword(length, 1);
}