无法使用参数调用php webservice

时间:2014-12-04 14:42:52

标签: .net web-services windows-phone-8

这是我的代码,我不打算在Windows Phone应用程序中调用webservice。

client.DownloadStringAsync(new Uri("http://example.com/get_places_nearby.php?longitude="+itravelObj.getGPSLongitude()+"&latitude="+itravelObj.getGPSLatitude(), UriKind.Relative));

请帮助..

1 个答案:

答案 0 :(得分:0)

认为您需要将该URI更改为UriKind.RelativeUriKind.Absolute

client.DownloadStringAsync(new Uri("http://example.com/get_places_nearby.php?
    longitude="+itravelObj.getGPSLongitude()+"&latitude="+itravelObj.getGPSLatitude(),
    UriKind.Relative));

因为您从http://www.website.com

开始