Hi, Apologies for asking a question that might have been answered previously, I tried searching...
I would like to unload JVM in some situations (to reload it). The usecase is this: - vmargs can be passed only once - consecutive calls to initVM raise errors - in my program components interact with several JCC wrapped libraries Normally, it is no problem, but clashes may occur - especially in GUI when running complex workflows - the solution (in theory) would be to destroy JVM and load it again. Is it possible? I found a trace that it could be implemented in this post:http://markmail.org/message/ondavxqe5hcybv22 But that is all. I could try starting in JVM in a separate thread, but I doubt it is going to work. Any solution? Thanks! roman