0

使用外部用户服务时,出现以下错误。

无法连接到远程服务器

谁能解释出了什么问题?有关使用外部 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); 
4

1 回答 1

0

尝试byte[] abc = proxy.DownloadData("http://www.webservicex.net/WS/CATs.aspx?CATID=12&DESC=Utilities");

WebClient.DownloadData方法应该将字符串作为参数,所以也许它只是没有很好地解释 Uri 类?

于 2012-09-07T11:38:04.633 回答