calling webservice problem?
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hello friends, I've an application that calls the webservice to upload file on server. I've used MSSOAP toolkit 3.0, everything works fine for Windows XP. The same code fails under Vista the code is as below.
ISoapConnectorPtr Connector;
hr = Connector.CreateInstance(__uuidof(HttpConnector));
if(hr != S_OK)
{
strErrMessage="Can't create Http Connector.
}
Connector->Property["EndPointURL"] = QPTLOGIN_URL;
hr = Connector->Connect();In the code above hr = Connector.CreateInstance(__uuidof(HttpConnector)); fails on Vista and working fine in XP. Can anybody please help me to solve this problem for Vista or any suggestions for calling webwservice in Vista OS. Thanx in Advance.
ritz1234