cancel
Showing results for 
Search instead for 
Did you mean: 

Error installing J2EE Add-In

Former Member
0 Kudos

Hi everybody,

I am getting the following error during Installation of an Add-In J2EE CI Installation:

INFO 2008-04-16 11:02:29.286

Execute step unpackJ2EEINSTALL of component |NW_Addin_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|8|0.

ERROR 2008-04-16 11:02:31.256 [iaxxejsbas.cpp:178]

EJS_ErrorReporter

FJS-00003 TypeError: instance has no properties (in script NW_Addin_CI|ind|ind|ind|ind, line 97357: ???)

ERROR 2008-04-16 11:02:31.426

FCO-00011 The step unpackJ2EEINSTALL with step key |NW_Addin_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|8|0|unpackJ2EEINSTALL was executed with status ERROR .

Installing the SCS and J2EE DB Instance worked without problems.

Has anyone seen this type of error ? I Can't find anything about it in OSS or here so far...

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hello,

i have the same error, and I,m installing the add-in JAVA in different host (distributed installation), under Windows/Oracle,

ERROR 2008-04-28 15:33:58 [iaxxejsbas.cpp:178]

EJS_ErrorReporter

FJS-00003 TypeError: instance.unpackJ2EEINSTALL is not a function (in script NW_Addin_CI|ind|ind|ind|ind, line 97357: ???)

ERROR 2008-04-28 15:33:58

FCO-00011 The step unpackJ2EEINSTALL with step key |NW_Addin_CI|ind|ind|ind|ind|0|0|NW_CI_Instance|ind|ind|ind|ind|8|0|unpackJ2EEINSTALL was executed with status ERROR .

I was looking in control.xml files, in the function unpackJ2EEINSTALL

NWInstall.prototype.unpackJ2EEINSTALL = function(){

NW.trace("NWInstall.unpackJ2EEINSTALL()");

gui.updateMsg("nw.progress.unpackingJ2EEINSTALL");

var unpacked = new NWOption("unpackedJ2EEInstall");

if (unpacked.value() == "true") {

NW.trace("NWInstall.unpackJ2EEINSTALL() done: already unpacked");

return;

}

var cdroot = installer.getCD("J2EE-INST");

var archive = cdroot + **"/J2EEINSTALL.SAR";**

var tmpdir = NWInstall.getTempPath();

// make sure that temporary directory is empty

tmpdir.remove();

var tmpdir = tmpdir.createDirectory();

var env = new ProcessMgt().getProcessEnvironment();

if(installer.onUnix()){

tmpdir.chmod("755");

env.setUmask(022);

}

env.setWorkingDirectory(tmpdir);

var car = new SAPCAR(archive);

car.setEnvironment(env);

car.extract();

unpacked.set("true");

NW.trace("NWInstall.unpackJ2EEINSTALL() done");

}

I,m installing under windows, so the slash "/" of "/J2EEINSTALL.SAR" is in wrong direction, so I don't know if this is the mistake. maybe the error could be that. Nevertheless there are somebody installing on UNIX? and what is the direction of the slash? in the file

Best Regards

Former Member
0 Kudos

Hi Rainer,

I'm running into the same problem. Did you solve it.

Kind regards,

Erik Leemans

Former Member
0 Kudos

Which version of JDK is installed.

Did you run the Prerequisite Check? Was there any error mentioned as 'HIGH' priority.

Former Member
0 Kudos

Hello Rainer Gowitzke,

Are you installing your system in a cluster solution, for example MSCS?

This error can occur when there is a configuration problem with virtual hostnames. Please make sure you set parameter SAPINST_USE_HOSTNAME correctly. Also make sure that the virtual hostnames are consistent throughout your system.

There is a SAP note for Java Add-in installation on cluster in Windows OS:

779253 Clustering your Java Add-In System on Windows

Best regards,

Rafael Toshiaki

PS: Please consider rewarding points for helpful answers on SDN.