次の方法があります。
using System.Web.Services;
using System.Web.Script.Services;
using System.Web.Script.Serialization;
using Newtonsoft.Json;
using System.Collections;
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
//[System.ComponentModel.ToolboxItem(false)]
[System.Web.Script.Services.ScriptService]
// [System.Web.Script.Services.ScriptService]
public class Tripadvisor : System.Web.Services.WebService {
public Tripadvisor () {
//Uncomment the following line if using designed components
//InitializeComponent();
}
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string HotelAvailability(string api)
{
JavaScriptSerializer js = new JavaScriptSerializer();
string json = js.Serialize(api);
//JsonConvert.SerializeObject(api);
return json ;
}
ここでResponseFormat属性を設定すると、jsonがまだXMLとして返されます。
このasmxサービスを使用してJSON形式にしたい
私は同じ問題に直面し、それを機能させるために以下のコードを含めました。
[WebMethod]
[ScriptMethod(UseHttpGet=true ,ResponseFormat = ResponseFormat.Json)]
public void HelloWorld()
{
Context.Response.Clear();
Context.Response.ContentType = "application/json";
Context.Response.Write("Hello World");
//return "Hello World";
}
更新:
純粋なJSON形式を取得するには、次のようなjavascriptシリアライザーを使用できます。
public class WebService1 : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(UseHttpGet=true ,ResponseFormat = ResponseFormat.Json)]
public void HelloWorld()
{
JavaScriptSerializer js = new JavaScriptSerializer();
Context.Response.Clear();
Context.Response.ContentType = "application/json";
HelloWorldData data = new HelloWorldData();
data.Message = "HelloWorld";
Context.Response.Write(js.Serialize(data));
}
}
public class HelloWorldData
{
public String Message;
}
ただし、これは複雑な型では機能しますが、文字列には違いはありません。
ただの疑い。 JSON応答を取得できないのはいつですか?クライアントからWebサービスを呼び出すとき(Webブラウザー、つまりxhrを想定しています)、要求のコンテンツタイプヘッダーを「application/json; charset = yourcharset」として指定する必要があるためです。
上記のソリューションは、クライアントからコンテンツタイプが指定されていても、常にjsonを返します。 dotnet asmxフレームワークでは、コンテンツタイプヘッダーメソッドを使用してこれを許可しているため、上記の方法は、適切なソリューションが利用可能な場合、ハックとして分類できます。
での同様の質問ASMX WebサービスからJsonデータを返す
これも役立つかもしれません-> http://forums.asp.net/p/1054378/2338982.aspx#2338982
追伸:ドットネットバージョン4を使用していると仮定しています。
親愛なる将来の読者:現在受け入れられている答えは正しい方法ではありません。 JavaScriptSerializer
を使用することにつながり、xml(または実際に将来登場する可能性のあるシリアル化形式)を要求する機能を失います。 「正しい方法」では、コードも少なくなります!
[ScriptService]
属性を使用してサービスクラスをデコレートすると-ASP.NET 3.5+はJSONへの応答を自動的にシリアル化する必要がありますAjax呼び出しがJSONを要求する場合。 JSONに手動でシリアル化するという提案は、Newtonsoftなどの別のシリアライザーを使用する場合を除き、単に間違っています。
XMLを見ているということは、次のいずれかを示唆しています。
JSON対応ASMX Webサービスの簡単な動作例を次に示します。
<%@ WebService Language="C#" Class="WebService" %>
using System;
using System.Collections.Generic;
using System.Web.Services;
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
public class WebService : System.Web.Services.WebService {
[WebMethod]
public MyClass Example()
{
return new MyClass();
}
public class MyClass
{
public string Message { get { return "Hi"; } }
public int Number { get { return 123; } }
public List<string> List { get { return new List<string> { "Item1", "Item2", "Item3" }; } }
}
}
JavaScriptでリクエストしてレスポンスを処理します(MyClass.MessageからのメッセージでJSアラートをポップアップ表示します):
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test</title>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.4.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
$.ajax({
type: "POST",
url: "WebService.asmx/Example",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: "{ }",
error: function (XMLHttpRequest, textStatus, errorThrown) { alert(langError + " " + textStatus); },
success: function (msg) {
alert(msg.d.Message);
}
});
</script>
</body>
</html>
HTTPリクエスト:
POST http://Host.com/WebService.asmx/Example HTTP/1.1
Accept: application/json, text/javascript, */*; q=0.01
Content-Type: application/json; charset=utf-8
X-Requested-With: XMLHttpRequest
Referer: http://Host.com/Test.aspx
Accept-Language: en-GB,en;q=0.5
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)
Connection: Keep-Alive
Content-Length: 3
Host: Host.com
{ }
HTTP応答:
HTTP/1.1 200 OK
Cache-Control: private, max-age=0
Content-Type: application/json; charset=utf-8
Server: Microsoft-IIS/8.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Tue, 20 Feb 2018 08:36:12 GMT
Content-Length: 98
{"d":{"__type":"WebService+MyClass","Message":"Hi","Number":123,"List":["Item1","Item2","Item3"]}}
結果:
JSポップアップに「こんにちは」と表示されます。