c++ builder webservice的调用
我想获取服务器端一文件的版本信息,由于不知道怎么获取远程服务器上该文件的版本信息,于是用BCB6.0写了个获取文件版本的webservice dll,自己弄了个IIS搭了服务器,IP为192.168.101.101,如下面这么写的话没有问题
_di_IProductVersionService pService;
pService = GetIProductVersionService(true);
String strLastestVer = pService->GetProductVersion();
但是如果按下面这么写就不能执行了
_di_IProductVersionService pService;
pService = GetIProductVersionService(true, strServerUrl);
String strLastestVer = pService->GetProductVersion();
GetIProductVersionService(bool, AnSiString);这个函数是否是如果bool为true就直接调用WSDL生成想到里边的URL,第二个参数就不用设置?
但现在问题是我想调用远程服务器的webservice,该怎么写呢?pService = GetIProductVersionService(false, strServerUrl);的话 没有现成的xml文件,难道还要重新自己写xml文件吗?
[解决办法]
解决了就好