首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

服务如何返回不了数据

2012-02-21 
服务怎么返回不了数据哪位高手能够调用下面的服务,并能够返回相应的数据。http://221.239.208.182:9001/flu

服务怎么返回不了数据
哪位高手能够调用下面的服务,并能够返回相应的数据。
http://221.239.208.182:9001/fluxWebTms/services/TmsWebService?wsdl

谢谢
  谢谢

[解决办法]

C# code
 using (var client = new TmsSvc.TmsWebServicePortTypeClient("TmsWebServiceHttpSoap12Endpoint")) {     client.Open();     TmsSvc.User user = new TmsSvc.User();     var result = client.putTestData("hello");     Console.WriteLine(result); } Console.Read();
[解决办法]
探讨

C# code
using (var client = new TmsSvc.TmsWebServicePortTypeClient("TmsWebServiceHttpSoap12Endpoint"))
{
client.Open();
TmsSvc.User user = new TmsSvc.User();
var result = client.put……

热点排行