gpt4 book ai didi

c# - 如何在 C# 中使用 JSON 格式的 GET 方法将数据发送到 php webservice

转载 作者:太空宇宙 更新时间:2023-11-03 16:14:03 25 4
gpt4 key购买 nike

我是网络服务的新手,我正在尝试从我在 VS2010 中创建的 WP7 应用程序将 JSON 数据发送到 .php 网络服务。我使用了 UploadStringAsync 方法,但此方法不适用于 GET 方法。使用 GET 方法时抛出异常。请帮忙。

下面是我的c#代码

WebClient postWithParamsClient = new WebClient();

postWithParamsClient.Headers["Content-type"] = "application/json";
postWithParamsClient.UploadStringCompleted += new UploadStringCompletedEventHandler(postWithParamsClient_UploadStringCompleted);

postWithParamsClient.UploadStringAsync(url, "POST", "{ \"latitude\": " + textBox2.Text.ToString() + ", \"longitude\": " + textBox3.Text.ToString() + " }");

下面是我的网络服务

<?php
/*XML FORMAT
<gpstrack>
<latitude>30°N</latitude>
<longitude>38°N</longitude>
<mobtime>mobiletime</mobtime>
</gpstrack>
XML FORMAT*/

$xml = file_get_contents('php://input');
$finalArray = json_decode(json_encode((array) simplexml_load_string($xml)),1);
//$finalArray=array('latitude'=>'12.1','longitude'=>'3.2','mobtime'=>'325695142');

$newfb = new TABLE($db,"gpslog","track_id");
$newfb -> latitude = $finalArray['latitude'];
$newfb -> longitude = $finalArray['longitude'];
$newfb -> mobtime = strtotime($finalArray['mobtime']);

$newfb -> insert();
print "success";

exit;
?>

最佳答案

要使用 GET 方法,您必须改用 DownloadStringAsync

关于c# - 如何在 C# 中使用 JSON 格式的 GET 方法将数据发送到 php webservice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16372623/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com