Z
zysunit
Unregistered / Unconfirmed
GUEST, unregistred user!
如1:
HTTPRIO1.WSDLLocation := 'http://'+IP_Address+'/studyws/websclient.asmx?wsdl';
HTTPRIO1.Service := 'WebSClient';
HTTPRIO1.Port := 'WebSClientSoap';
Result:=(HTTPRIO1 as WebSClientSoap).GetSoftVers;
如2:
HTTPRIO1.WSDLLocation := 'http://'+IP_Add+'/17100WebService/UserInfoService.asmx?wsdl';
HTTPRIO1.Service := 'UserInfoService';
HTTPRIO1.Port := 'UserInfoServiceSoap';
Result:= (HTTPRIO1 as UserInfoServiceSoap).Logon(Trim(EdtU.Text),Trim(EdtP.Text),BookVer);
这个时候就会出现 "interface not supported " 的错误
我要如何处理 才能同一个 HTTPRIO 能连续调用2个不同 接口 下 的远程过程
HTTPRIO1.WSDLLocation := 'http://'+IP_Address+'/studyws/websclient.asmx?wsdl';
HTTPRIO1.Service := 'WebSClient';
HTTPRIO1.Port := 'WebSClientSoap';
Result:=(HTTPRIO1 as WebSClientSoap).GetSoftVers;
如2:
HTTPRIO1.WSDLLocation := 'http://'+IP_Add+'/17100WebService/UserInfoService.asmx?wsdl';
HTTPRIO1.Service := 'UserInfoService';
HTTPRIO1.Port := 'UserInfoServiceSoap';
Result:= (HTTPRIO1 as UserInfoServiceSoap).Logon(Trim(EdtU.Text),Trim(EdtP.Text),BookVer);
这个时候就会出现 "interface not supported " 的错误
我要如何处理 才能同一个 HTTPRIO 能连续调用2个不同 接口 下 的远程过程