从webservice获取xml

时间:2011-12-15 16:26:57

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

我需要调用一个返回此xml的Web服务

<Response>
    <statusCode>OK</statusCode>
    <statusMessage/>
    <ipAddress>127.0.0.1</ipAddress>
    <countryCode>-</countryCode>
    <countryName>-</countryName>
    <regionName>-</regionName>
    <cityName>-</cityName>
    <zipCode>-</zipCode>
    <latitude>0</latitude>
    <longitude>0</longitude>
    <timeZone>-</timeZone>
</Response>

这是网址:

String userIp = HttpContext.Current.Request.UserHostAddress;
// api key
String api_key = "01cce0db52b4eafaf8eac3f5b560fa4b5bf20f1410763224557d05eb949a2b3c";
// service url
String api_url = "http://api.ipinfodb.com/v3/ip-city/?key=" +api_key +"&ip="+ userIp +"&format=xml";

我怎样才能在asp中捕捉到它?我尝试过使用网络服务,但无法理解。

2 个答案:

答案 0 :(得分:2)

您可以使用John Saunders方法并致电WebClient.DownloadString

答案 1 :(得分:1)

你只需要做这样的事情......

WebClient client = new WebClient();
string result = client.DownloadString(api_url);

字符串result应该保留网址中的下载内容。