[All]
Can JBuilder 3.5 / 4 / 5 be configured to use Visibroker's vbj?
By: Josh Fletcher
Abstract: How to configure JBuilder 3.5 to simulate using Visibroker's "vbj" run-time tool.
Question:
|
Can JBuilder 3.5/4/5 be configured to use Visibroker's vbj for run-time?
|
| |
Answer:
|
Jbuilder 3.5/4/5 will always use the run-time from that target JDK, but "vbj" is just a wrapper for "java" anyway. It is possible to configure JBuilder to setup the environment just as vbj does.
On either Windows or Solaris you can run vbj with a debug flag to see everything it sets up via typing "vbj -VBJdebug". For example, you might see something like:
option[ 0] = '-Dvbroker.agent.port=21872'
Then, in JBuilder, you can just add this parameter (everything between the single quote) to the VM Parameters list in the "Run" tab of the Project Properties, e.g.:
-Dvbroker.agent.port=21872
|
| |