使用外部用户服务时,会发生以下错误。
无法连接到远程服务器
任何人都可以解释出现了什么问题吗?有关使用外部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);
答案 0 :(得分:0)
尝试byte[] abc = proxy.DownloadData("http://www.webservicex.net/WS/CATs.aspx?CATID=12&DESC=Utilities");
WebClient.DownloadData
方法应该将一个字符串作为参数,所以也许它只是不能很好地解释Uri类?