如何在Asp.net中使用HTTP Web服务?

时间:2010-03-30 08:16:45

标签: c# asp.net web-services zillow

我想根据http url返回的结果生成html内容。

http://www.zillow.com/webservice/GetDeepSearchResults.htm?zws-id=X1-ZWz1c239bjatxn_5taq0&address=2114+Bigelow+Ave&citystatezip=Seattle%2C+WA

此页面将为您提供一些XML结果。我想转换为使用该XML来生成HTML。我不知道从哪里开始?有人会为asp.net提供任何指南或示例代码吗?

详细信息:http://www.zillow.com/howto/api/GetDeepSearchResults.htm

2 个答案:

答案 0 :(得分:1)

要获取数据,您可以使用HttpWebRequest类,这是我必须提供的一个示例,但它可能会略微过度以满足您的需求(并且您需要确保您做的正确 - 我怀疑上面是GET而不是POST。

Uri baseUri = new Uri(this.RemoteServer);

HttpWebRequest rq = (HttpWebRequest)HttpWebRequest.Create(new Uri(baseUri, action));
rq.Method = "POST";
rq.ContentType = "application/x-www-form-urlencoded";

rq.Accept = "text/xml";
rq.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;

Encoding encoding = Encoding.GetEncoding("UTF-8");
byte[] chars = encoding.GetBytes(body);
rq.ContentLength = chars.Length;

using (Stream stream = rq.GetRequestStream())
{
    stream.Write(chars, 0, chars.Length);
    stream.Close();
}

XDocument doc;
WebResponse rs = rq.GetResponse();
using (Stream stream = rs.GetResponseStream())
{
    using (XmlTextReader tr = new XmlTextReader(stream))
    {
        doc = XDocument.Load(tr);
        responseXml = doc.Root;
    }

    if (responseXml == null)
    {
        throw new Exception("No response");
    }
 }

 return responseXml;

一旦你获得了数据,你需要呈现HTML,很多很多选择 - 如果你只是希望将你所拥有的内容转换为HTML,只需要进一步处理,那么你就可以使用XSLT - 这是一个独立的问题。如果你需要做一些事情,那么问题就太模糊了,你需要更具体。

答案 1 :(得分:0)

创建一个xsl样式表,并将样式表元素从teh页面注入生成的xml