c# JSON返回格式的WEB SERVICE

來源:互聯網
上載者:User

我貼c#的代碼: 複製代碼 代碼如下:namespace IWebs.Webs{
using System;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml;
using System.Xml.XPath;
using System.Web.Script.Services;
using IWebs;
[WebService (Name="cjjer",Description="一個返回使用者資料,訂單資訊的WebService,請求的手機號碼最長12位",Namespace="http://www.cjjer.com/webs/")]
[System.Web.Script.Services.ScriptService]
public class cjjer:WebService{
public class ReqHeader : SoapHeader{
public string userName;
public string password;
}
public ReqHeader header;
[WebMethod (Description ="輸入單個使用者的int值ID,返回使用者類",MessageName="GetUser",EnableSession = false)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
[SoapHeader("header", Direction = SoapHeaderDirection.In)]
public Model.Member GetUser(int uid){
this.ChechHeader(header);
return (new DAL.Members()).GetById(uid);
}
[WebMethod (Description ="輸入某個使用者的手機號碼,返回使用者類",MessageName="GetUserByMobile",EnableSession = false)]
[ScriptMethod(ResponseFormat=ResponseFormat.Json)]
[SoapHeader("header", Direction = SoapHeaderDirection.In)]
public Model.Member GetUserByMobile(string umobile){
this.ChechHeader(header);
return (new DAL.Members()).GetByMobile(umobile);
}
[WebMethod (Description ="輸入某個使用者的手機號碼,返回訂單數組",MessageName="GetOrdersByMobile",EnableSession = false)]
[ScriptMethod(ResponseFormat=ResponseFormat.Json)]
[SoapHeader("header", Direction = SoapHeaderDirection.In)]
public IWebs.Model.Order[] GetOrdersByMobile(string umobile){
this.ChechHeader(header);
return (new DAL.Orders()).GetByMobile(umobile,-365);
}
[WebMethod (Description ="輸入某個使用者的ID,返回訂單數組",MessageName="GetOrdersByUserId",EnableSession = false)]
[ScriptMethod(ResponseFormat=ResponseFormat.Json)]
[SoapHeader("header", Direction = SoapHeaderDirection.In)]
public IWebs.Model.Order[] GetOrdersByUserId(int uid){
this.ChechHeader(header);
return (new DAL.Orders()).GetOrdersByUserId(uid,-365);
}
private void ChechHeader(ReqHeader header){
if (header != null){
if (header.MustUnderstand)
{
string UserName = header.userName;
string PassWord = header.password;
if (UserName == "cjjer" && PassWord == "000000")
{
return ;
}
else
{
throw new ApplicationException (String.Format("使用者名稱[{0}]或密碼[{1}]錯誤",UserName,PassWord));
}
}
else
{
throw new ApplicationException ("包含使用者名稱和密碼資訊的訊息頭格式不正確");
}
}
else
{
throw new ApplicationException ("請提交包含使用者名稱和密碼資訊的訊息頭");
}
}
};
}

注意的是,這個請求必須要請求提交SoapHeader,其中的[System.Web.Script.Services.ScriptService]
這句是利用AJAX.NET處理JSON請求的,如果不需要就免了,如果需要的話下載AJAX.NET,然後在BIN裡面放System.Web.Extensions.Design.dll,System.Web.Extensions.dll,按照AJAX.NET預設的那個WEB.CONFIG修改你的web.config,在瀏覽器中查看*.ASMX檔案,如果使用?wsdl可以看到xml的wsdl的話第一步算成功了。
其中注意的是:
Web.Config
在httpHandler中有兩個節點很重要: 複製代碼 代碼如下:<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

這兩句聲明讓ScriptHandlerFactory處理WebService請求。
利用ajax請求的時候 http_request.setRequestHeader("Content-Type", "application/json");
加上這句預設的返回的就是JSON。
附上web.CONFIG和相關的dll檔案吧:
c# json
在c#代碼建立的時候道理一樣。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.