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
...
...
...
2 Comments:
doesn't db adapters work with eclipse? isn't it oracle pm functionality and not IDE? I think it should work.
There are a few features that are there in JDev (BPEL) and not in Eclipse. Thats the reason why I created a new bpel process to update the database using database adapters in JDEV. Was successful in doing so. However, there were lots of namespace issues in invoking this jdev process from the main eclipe bpel process. So ended up using java embedding for the same.
Post a Comment
<< Home