I
inseasoft
Unregistered / Unconfirmed
GUEST, unregistred user!
web service 端代码:
using System;
namespace testservice
{
[WebMethod]
public string HelloWorld(string tmp)
{
return tmp;
}
}
现在想用delphi调用hellworld函数并传递一个参数,不知怎么调用。求各路大侠帮忙!
拜谢!!
using System;
namespace testservice
{
[WebMethod]
public string HelloWorld(string tmp)
{
return tmp;
}
}
现在想用delphi调用hellworld函数并传递一个参数,不知怎么调用。求各路大侠帮忙!
拜谢!!