c\#JSON 이 형식의 WEB 서 비 스 를 되 돌려 줍 니 다.
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.Service.ScriptService]는 AJAX.NET 을 이용 하여 JSON 요청 을 처리 한 것 이다.필요 하지 않 으 면 면제 된다.필요 하 다 면 AJAX.NET 을 다운로드 한 다음 BIN 에 System.Web.Extensions.Design.dll,System.Web.Extensions.dll,AJAX.NET 의 기본 WEB.CONFIG 에 따라 웹.config 를 수정 하고 브 라 우 저 에서*.ASMX 파일 을 봅 니 다.사용 하면?wdl 에서 xml 의 wdl 을 볼 수 있다 면 첫 번 째 단 계 는 성공 한 셈 이다.그 중에서 주의해 야 할 것 은 웹.config 는 http Handler 에서 두 개의 노드 가 매우 중요 하 다 는 것 이다.
<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"/>
이 두 개의 성명 은 ScriptHandler Factory 로 하여 금 웹 서비스 요청 을 처리 하 게 한다.ajax 요청 이용 시 httprequest.setRequestHeader("Content-Type", "application/json"); 이 말 을 더 하면 기본적으로 되 돌아 오 는 것 이 JSON 이다.웹.CONFIG 와 관련 된 dll 파일 을 첨부 하 십시오.c# jsonc\#코드 를 만 들 때 도 마찬가지 입 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
C#Task를 사용하여 비동기식 작업을 수행하는 방법라인이 완성된 후에 이 라인을 다시 시작할 수 없습니다.반대로 조인(Join)만 결합할 수 있습니다 (프로세스가 현재 라인을 막습니다). 임무는 조합할 수 있는 것이다. 연장을 사용하여 그것들을 한데 연결시키는 것이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.