simple set up on a test server install
a)Set up a webserver software.The easiest installs would be microsoft II5.0 or Sun One 6.1.I run win2k
b)Locate livelink software and livelink SDK CD.The lapi server is on the SDK-You will need a rudimentary knowledge of a database setup.The easiest would be win/oracle 8.1.7 so you can create a table space for livelink to to its schema.
c)Livelink will walk thru your primary installation assuming you are not doing anything complicated accept the default stuff.LL will take sometime creating the enterpise SOV(System object volume etc.Use common sense when filling out values.Do not put 64 K of memory for indexing if your computer has only 32 K abvailable
c a)Livelink once installed requires you to do some license info email info etc this is done by <livelink url>/livelink.exe?func=admin.index.This take you to administration page the default admin password is 'livelink' put that in and see the options.if you change password write it somewhere where you can access it.
d)Once everything subsides check working of system check whether you can add enterprise workspace,add documents,create folders etc by calling the web server URL that livelink gave you at the last part of installation.
e)Once you have established that the livelink server is intalled and working correctly proceed to install lapi from the 2nd CD.Make a note of the installation path of the lapi files.
f)open your opentext.ini and look at the port of your livelink server.
g)Now your albeit LAPI server is the same livelink server listening on that port.
h)If you are using VB you will have to incorporate all the bas and supporting files in your project
e)If you are using java you should put the path of com.opentext.api in your class path to tell the client where the lapi class files are
f)attempt running a simple example as below
Listing AccessEnterprise.java
//Access Enterprise Workspace
//import classes
import com.opentext.api.*;
//Lapi class files it need to in classpath
import java.net.*;
//socket TCP/IP calls use the above classes
public class AccessEnterprise
{
private static String Server = "127.0.0.1";//llink host
private static int Port = 2099;//see opentect.ini
private static String DFT = "";
private static String User = "Admin";//default
private static String Pass = "livelink";//default
public static void main (String [] args)
{
try
{
//variables
LLSession session;
LAPI_DOCUMENTS doc;
LLValue value = new LLValue();
int volID, objID;
session = new LLSession (Server, Port, DFT, User, Pass);
doc = new LAPI_DOCUMENTS (session);
//Access the Enterprise
if (doc.AccessEnterpriseWS(value) == 0)
{
System.out.println("Enterprise Accessed Successfully"
;
//Extract the Enterprise Volume and Object ID's and display them.
objID = value.toInteger("ID"
;
volID = value.toInteger("VolumeID"
;
System.out.println("Enterprise ID: " + objID);
System.out.println("Enterprise Volume: " + volID);
}
else
System.out.println("Failed to Access EnterpriseWS"
;
}
catch (Throwable e)
{
System.err.println(e.getMessage() );
e.printStackTrace (System.err);
}
}
}
if the above java files excute it by java AccessEnterprise and see if you are hitting the exception block of code .If everything is kosher you should either see '2000' or '2001' which is you r enterprise Id
sorry i do not have vb examples
this is from my experience with livelink 8.1.5 and 9.1.0 sp2 I haven't gone past that
You cannot do any https tests unless you have a valid certificate file.i do not have the necessary secure server experience but should be very same.