(0000152)
administrator (administrator)
2012-09-22 16:34
|
Check the command source code and check if the program can be deployed with success in your java environment.
The Oberon clients (Context Design and Domain Objects ) export and compile the program source code in the temporary directory (generally <Oberon_full_path>/temp/oberon).
You can change this path in 2 ways:
1- Edit config.bat (sh):
SET TEMPDIR=<your_temp_path>
2- Edit oberon.ini
tmpdir=<your_temp_path>
The application server exports and compile the program source code in the
<java.io.tmpdir>/oberon
You can change this path in the oberon.properties file, add:
tmpdir=<your_temp_path> |