void UpdateContactSign()
{
string ServerPage ="http://localhost/WebService/MyService.asmx";
try
{
//ServerPage += "?op=TangramAction";
ServerPage += "/MyAction";//MyAction是WebService中的方法
string strXml="<a ObjID=\"9\"></a>",;//第一个参数
string strData="ContactSign|990011|我的数据";//第二个参数
string res = HttpConnectToServer(ServerPage, strXml, strData);
//MessageBox.Show(res);
}
catch (Exception ex)
{
}
}<
C#发送HttpPost请求来调用WebService的方法
最新推荐文章于 2024-08-22 10:49:53 发布
这篇博客介绍了如何在C#中通过HttpPost方法调用WebService。主要代码展示了如何构造请求参数,创建HttpWebRequest对象,设置请求头并发送POST请求,最后接收并处理响应数据。
摘要由CSDN通过智能技术生成