Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Unknown COM status code
Message
From
17/02/2003 00:09:17
 
 
To
14/02/2003 06:19:05
General information
Forum:
Visual FoxPro
Category:
Web Services
Miscellaneous
Thread ID:
00753123
Message ID:
00753997
Views:
17
>I'm trying to start working with web services, but I'm receiving this error message: Unknow COM status code.

First, lets verified if that is related to your Web Service setup, to your SOAP client setup or to your network setup. Try this code:
* Create the SOAP object
loUniversalThread=Createobject("mssoap.soapclient30")
loUniversalThread.mssoapinit("http://www.levelextreme.com/"+;
 "WebService/universalthread.wsdl")

lcUsername='something'
lcPassword='something'

* Do the login
loUniversalThread.Login(lcUsername,lcPassword)

* Get the news for the last 20 days
lcXML=loUniversalThread.GetNews(DATE()-20,DATE(),5)
XMLTOCURSOR(lcXML,'Temp')
BROWSE
Don't forget to replace lcUsername and lcPassword with your username and password.

Let me know if that works. If yes, then, at least, your SOAP client setup would be ok.
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform