Writing Hashtable to Memory

Hi,

I’ve been looking thru the forum for writing a Hashtable to IS memory and refering/reading the table later. Could somebody guide me how to do this. Any sample code is appreciated.

Thanks.

Write Java services to provide the features you want (put, get, clear, etc.). On the shared tab, declare and initialize a static Hashtable var. This will cause the Hashtable to be created when the package is loaded by IS. Your put, get, etc. services will reference this var.

HTH