一步一步搭建客服系統 (4) 客戶列表 - JS($.ajax)調用WCF 遇到的各種坑


本文以一個生成、獲取“客戶列表”的demo來介紹如何用js調用wcf,以及遇到的各種問題。

 

1 創建WCF服務

1.1 定義接口

創建一個接口,指定用json的格式:
 
 
.

1.2 接口實現

實現上面的接口,並加上AspNetCompatibilityRequirements 和 JavascriptCallbackBehavior :

.

.
這里使用了一個靜態的構造函數,這樣它就只會被調用一次,以免每次調用時都會初始化隊列。

 

1.3 定義服務

添加一個wcf service, 就一行:

<%@ ServiceHost Language="C#" Debug="true" Service="Youda.WebUI.Service.Impl.Queue" CodeBehind="~/Service.Impl/Queue.cs" %>

 

整體結構如下:

image


.

2 調用WCF

客戶端調用Add方法,創建一組對話:

.

.
客服端取所有的客戶:

.

.

 

3 配置

 

webconfig配置如下:

.

.

 

4 遇到的各種坑

4.1 Status 為 200, status text為 ok, 但報錯

http STATUS 是200,但是回調的卻是error方法

查了下資料,應該是dataType的原因,dataType為json,但是返回的data不是json格式

於是將ajax方法里把參數dataType:"json"去掉就ok了

 

4.2 Json 數據請求報錯(400 錯誤 )

詳細的錯誤信息如下:

Service call failed:

status: 400 ; status text: Bad Request ; response text: <?xml version="1.0" encoding="utf-8"?>

The server encountered an error processing the request. The exception message is 'The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter http://tempuri.org/:content. The InnerException message was 'There was an error deserializing the object of type System.String. Encountered invalid character…

 

解決方法是,要用JSON.stringify把data轉一下,跟

data: '{"clientID":"' + clientID + '", "serviceID":"' + serviceID + '", "content":"' + content + '"}',

這樣與拼是一樣的效果,但明顯簡單多了

參考上面Add方法的調用。

 

4.3 參數沒傳進wcf方法里

 

調試進了這個方法,但參數全為空,發現用的是webget,改成post后就行了

[OperationContract]

[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Json)]

List<string> GetMsg(string clientID, int count);

 

4.4 使用https時遇到了404 、 500的錯誤

先添加https的binding:

image

 

再設置下Service Behaviors:

image

 

詳細的配置,可參考上面的完整文本配置

 

4.5 其它配置

時間設置長點, size設置大點:

<binding name="HttpBind" openTimeout="00:10:00" sendTimeout="00:10:00"
         maxBufferSize="5242880" maxBufferPoolSize="5242880" maxReceivedMessageSize="5242880"
         crossDomainScriptAccessEnabled="true" />

 

使用webHttpBinding 的binding;name和 contract 要寫全:

<service behaviorConfiguration="ServiceBehavior" name="Youda.WebUI.Service.Impl.Queue">
       <endpoint address="" behaviorConfiguration="web" binding="webHttpBinding"
         bindingConfiguration="HttpBind" name="HttpBind" contract="Youda.WebUI.Service.Interface.IQueue" />

 

 

 

 

 一步一步搭建客服系統

 

 

.


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM