簡単な ASP.NET Web サービスがあります。
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.Services;
using System.Web.Script.Services;
using System.Web.Script.Serialization;
using System.Web.UI.WebControls;
using System.Web.UI;
namespace WebService1
{
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
[ScriptService]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string Get()
{
member mem = new member();
mem.hello = "hello hello hello";
mem.kalon = "fafasdf";
mem.name = "wfasdfawe";
return new JavaScriptSerializer().Serialize(mem);
}
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
}
public class member
{
public string hello { get; set; }
public string name { get; set; }
public string kalon { get; set; }
}
}
WebClient を使用して SilverLight から文字列を取得する際に問題に直面しています。あなたは私を啓発することができますか?以下のコードを使用して、WebService から文字列を取得します。
WebClient wc = new WebClient();
public MainPage()
{
InitializeComponent();
wc.DownloadStringCompleted += new DownloadStringCompletedEventHandler(wc_DownloadStringCompleted);
}
private void button1_Click(object sender, RoutedEventArgs e)
{
Uri uri = new Uri("http://www.MyWeb.com/Service1.axms/Get");
wc.DownloadStringAsync(uri);
}
void wc_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
MessageBox.Show(e.Error.ToString());
MessageBox.Show(e.Result);
}
そして、私はエラーを受け取ります:
System.Security.SecurityException ---> System.Security.SecurityException: セキュリティ エラーです。System.Net.Browser.BrowserHttpWebRequest.InternalEndGetResponse (IAsyncResult asyncResult) で System.Net.Browser.BrowserHttpWebRequest.<>c_ DisplayClass5.b _4 (オブジェクト sendState) で System.Net.Browser.AsyncHelper.<>c_ DisplayClass4.b _1 (オブジェクト sendState) --- 内部例外スタック トレースの終了 --- System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod、オブジェクト状態) で System.Net.Browser.BrowserHttpWebRequest.EndGetResponse(IAsyncResult asyncResult) で System. System.Net.WebClient.DownloadBitsResponseCallback(IAsyncResult 結果) での Net.WebClient.GetWebResponse(WebRequest 要求、IAsyncResult 結果)
私もこれを試しましたが、同じエラーが発生します:
Uri uri = new Uri("http://www.MyWeb.com/Service1.axms?op=Get");
wc.DownloadStringAsync(uri);
もう 1 つの質問: 文字列を取得するには、このような URL は正しいですか?
http://www.MyWeb.com/Service1.axms?op=Get
http://www.MyWeb.com/Service1.axms/Get