-
Topic
-
Hi
I am using the Formativ API to test that my user has got a fully active version of Formativ running (I have had some issues with new profiles on a machine not detecting the Formativ install correctly)
The code I run ib VB6 is as follows …
Dim fmv As Formativ.FormativAPI
Dim sResult As StringbFormativIsAlive = False
Set fmv = New Formativ.FormativAPI
sResult = fmv.Execute(“<?xml version=””1.0″”?><api-request key=””<***my key goes here***>””><applet-available>CommsLog – MultiView_Flexalock</applet-available></api-request>”)
If InStr(LCase(sResult), “<request-return-value>ok</request-return-value>”) <> 0 Then
bFormativIsAlive = True
End IfSet fmv = Nothing
The code has an error handler around it but this is not being triggered. I have a reference defined to the Formativ API.
When the app is running a timer checks that Groupwise is running and that Formativ is “alive” using the code above. These two aspects are prerequisites for my application, which is scanning for updates in Groupwise.
Whenever Groupwise or Formativ are not detected the user is informed and a fail log is updated for that machine/user on our network
Most of the time this works fine. The applet has the required comment line in it and Formativ responds as expected.
However sometimes, for random users, the alive test fails. Mostly it fails just once or twice, other times it will fail relentlessly. The log will show a fail every couple of minutes (the interval of my timer).
Restarting Groupwise will generally clear the problem.
Clearly Formativ is installed OK on the machine as the error doesn’t happen all the time or for a particular user. The same user may be fine one day and reporting errors the next.
Any suggestions? Bit perplexed as how to test for Formativ if the API isn’t always going to return a valid value.
I have changed my coding to report what the API call did return. I’ll update this topic with that information as soon as someone fails.
Thanks
Simon
- You must be logged in to reply to this topic.