不廢話了,直奔主題吧
wcf端:
近年來比較流行restful,為了能讓ajax調用,同時也為了支持restful風格的uri,在創建一個Ajax-enabled Wcf Service後,必須手動修改svc文件,指定Factory,即:
Factory="System.ServiceModel.Activation.WebServiceHostFactory"Factory="System.ServiceModel.Activation.WebServiceHostFactory"
%>附註:如果不加入Factory,則wcf將無法以類似http://localhost/helloWorld.svc/Hello/person/name 的restful方式直接存取。
同時也要去掉web.config中的
multipleSiteBindingsEnabled="true" />
好了,開始寫程式碼,鑑於wcf呼叫時有GET/POST二種方式,下面把幾種常用的情況都寫一個範例方法:
Service; 🎜>