使用外部用戶服務時,發生以下錯誤。無法連接到遠程服務器
無法連接到遠程服務器
誰能能解釋一下是哪裏錯了?有關使用外部Web服務的詳細解釋會有所幫助。
下面是我的一些代碼:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Runtime.Serialization;
using System.Net;
using System.IO;
namespace sample_app
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
WebClient proxy = new WebClient();
byte[] abc = proxy.DownloadData((new Uri("http://www.webservicex.net/WS/CATs.aspx?CATID=12&DESC=Utilities")));
Stream strm = new MemoryStream(abc);
您是否更改了代碼中實際實際URL的URL? –
嗨菲利普!網址與每個代碼相同。 – suraj
啊,對不起,我認爲這只是一個示例網址,現在我看到它的工作。 –