If you run an intranet and want to integrate WorldClient, if you have access to your user’s email addresses and passwords, then this post is for you.
What you’ll need to do is create an web server script (ASP, JSP, Perl or PHP, or other language of your choice) that gathers the user’s username and password from the Database and then posts them to the WorldClient server as if it were ComAgent. The URL to do this is:
http://www.example.com/WorldClient.dll?View=StatusCheck&GetSession=Yes&user=Username&Password=password
This will put the username and password in the log, so if you don’t want to have that liability, you’ll need to create some sort of ASP (or your scripting language) function that POSTs the Username and Password rather then using GET.
The result will return an XML file that will have the SessionID. Parse the XML file for the SessionID, then use that in a URL that looks like this for the redirect:
http://www.example.com/WorldClient.dll?Session=SessionID&View=Main&Frames=Yes
Hope this helps!