Java Embedding
Java embedding - that is
Hence, ended up using java embedding as a final successful workaround.
Application database updates:
I used java embedding mostly for updating the application database through stored proc calls.
Getting values from dehydration store through api's
Logging:
Logging may be done in opmn logs or you may define your own custom log file.
Example:Using log4j (include the jar file in the lib dir)
Logger logger = Logger.getLogger( "default.com.logs.appllogfile" );
logger.info( "Info using log4j" );
Other levels of logging:
a. Info
b. Debug
c. Audit
...
...
...