Help me!!, ZipException:

I'm currently working on applet-program.
The program runs ok in jdk1.3.
But, I have difficulty running the applet program under jdk1.4.
The following is exception message.
Please refer the following message and reply.
---------------------------------- Error Message -------------------------------
java.util.zip.ZipException: invalid entry crc-32 (expected 0x98648686 but got 0xd9a71764)
     at java.util.zip.ZipOutputStream.closeEntry(Unknown Source)
     at java.util.zip.ZipOutputStream.finish(Unknown Source)
     at java.util.zip.DeflaterOutputStream.close(Unknown Source)
     at java.util.zip.ZipOutputStream.close(Unknown Source)
     at sun.plugin.cache.CachedJarLoader.decompress(Unknown Source)
     at sun.plugin.cache.CachedJarLoader.access$500(Unknown Source)
     at sun.plugin.cache.CachedJarLoader$5.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at sun.plugin.cache.Cache.privileged(Unknown Source)
     at sun.plugin.cache.CachedJarLoader.download(Unknown Source)
     at sun.plugin.cache.CachedJarLoader.load(Unknown Source)
     at sun.plugin.cache.JarCache.get(Unknown Source)
     at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
     at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
     at sun.misc.URLClassPath$3.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at sun.misc.URLClassPath.getLoader(Unknown Source)
     at sun.misc.URLClassPath.getLoader(Unknown Source)
     at sun.misc.URLClassPath.getResource(Unknown Source)
     at java.net.URLClassLoader$1.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at java.net.URLClassLoader.findClass(Unknown Source)
     at sun.applet.AppletClassLoader.findClass(Unknown Source)
     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadCode(Unknown Source)
     at sun.applet.AppletPanel.createApplet(Unknown Source)
     at sun.plugin.AppletViewer.createApplet(Unknown Source)
     at sun.applet.AppletPanel.runLoader(Unknown Source)
     at sun.applet.AppletPanel.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
java.util.zip.ZipException: invalid entry crc-32 (expected 0xaa09c084 but got 0xcba26e7b)
     at java.util.zip.ZipOutputStream.closeEntry(Unknown Source)
     at java.util.zip.ZipOutputStream.finish(Unknown Source)
     at java.util.zip.DeflaterOutputStream.close(Unknown Source)
     at java.util.zip.ZipOutputStream.close(Unknown Source)
     at sun.plugin.cache.CachedJarLoader.decompress(Unknown Source)
     at sun.plugin.cache.CachedJarLoader.access$500(Unknown Source)
     at sun.plugin.cache.CachedJarLoader$5.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at sun.plugin.cache.Cache.privileged(Unknown Source)
     at sun.plugin.cache.CachedJarLoader.download(Unknown Source)
     at sun.plugin.cache.CachedJarLoader.load(Unknown Source)
     at sun.plugin.cache.JarCache.get(Unknown Source)
     at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
     at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
     at sun.misc.URLClassPath$3.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at sun.misc.URLClassPath.getLoader(Unknown Source)
     at sun.misc.URLClassPath.getLoader(Unknown Source)
     at sun.misc.URLClassPath.getResource(Unknown Source)
     at java.net.URLClassLoader$1.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at java.net.URLClassLoader.findClass(Unknown Source)
     at sun.applet.AppletClassLoader.findClass(Unknown Source)
     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadCode(Unknown Source)
     at sun.applet.AppletPanel.createApplet(Unknown Source)
     at sun.plugin.AppletViewer.createApplet(Unknown Source)
     at sun.applet.AppletPanel.runLoader(Unknown Source)
     at sun.applet.AppletPanel.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)

Try this one:
1. Download and install an FTP client program that allows for switching between ASCII and binary type of file, for example ProFTP by Lab-NC LTD should be fine.
2. Start FTP client and connect to your server.
3. Make sure your FTP client mode is set binary files, not ASCII files.
4. Upload your yourfile.jar to the server
5. Try to run the applet in the Browser.
Good luck.

Similar Messages

  • Java.util.zip.ZipException: invalid entry size error --  help required

    Hi all
    I am sure this error would have been posted many number of times, but I would really appreciate if someone could help me with my problem. I am working on reading data from a .zip file, which in it has ~5GB data. All I am performing is a read operation through the piece of code specified below. This code worked well for .zip files handling till ~2.5GB
    FileInputStream fis = new FileInputStream(filename);
    BufferedInputStream bis = new BufferedInputStream(fis);
    ZipInputStream zis = new ZipInputStream(bis);
    StreamTokenizer tok = new StreamTokenizer( zis );
    ZipEntry entry;
    while((entry = zis.getNextEntry()) != null)
    \\read from the zip file through the streamTokenizer
    I just print what I read through the program, on the console.
    But the error I get is
    java.util.zip.ZipException: invalid entry size (expected 4294967295 but got 2117536490 bytes)
    at java.util.zip.ZipInputStream.readEnd(Unknown Source)
    at java.util.zip.ZipInputStream.read(Unknown Source)
    at java.util.zip.InflaterInputStream.read(Unknown Source)
    at java.io.StreamTokenizer.read(Unknown Source)
    at java.io.StreamTokenizer.nextToken(Unknown Source)
    at ZipFileStreams.getMessages(ZipFileStreams.java:677)
    at ZipFileStreams.main(ZipFileStreams.java:814)
    Could anybody give me hints as to what am I missing and where am i going wrong. Any help would be appreciated.
    Thanks

    Hi,
    I get the same exception while reading a ZIP file. The size if the ZIP file is just 82KB but I am reading it over FTP not sure if it makes any difference. I am using JDK 1.4.2_05. Here is the code I am trying to execute.
    public class TestFTP {
    public static void main( String[] argv ) throws Exception {
    String inboundPath = "/transfer/inbound/";
    FTPClient ftp = new FTPClient();
    ftp.connect("123");
    ftp.login( "123", "123" );
    ftp.changeWorkingDirectory(inboundPath);
    FTPFile[] zipFiles = ftp.listFiles("*.zip");
    TelnetClient telnetClient;
    for(int i=0;i<zipFiles.length;i++){   
    System.out.println(zipFiles.getName());
    ZipInputStream zis = new ZipInputStream(ftp.retrieveFileStream(zipFiles[i].getName()));
    for (ZipEntry entry = zis.getNextEntry(); entry != null; entry = zis.getNextEntry()){           
    System.out.println(entry.getName());
    The error message is
    java.util.zip.ZipException: invalid entry size (expected 10291 but got 10233 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:367)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:91)
         at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:69)
         at test.TestFTP.main(TestFTP.java:41)
    Exception in thread "main"
    Please let me know if you were able to fix the problem.
    Thanks

  • URGENT HELP about java.util.zip.ZipException: invalid entry CRC

    I have a program (JAVA of course) packet on JAR with fat-jar eclipse plugin. This program work well in all my computers except two. On these two computers I receive a java.util.zip.ZipException: invalid entry CRC.
    Both computers have the last version of java, but one is Windows and the other is Linux.
    Any help to find the source of this problem??
    Thanks in advance.

    Sorry, I give poor information about this problem.
    This is the full error showed when I execute this command: java -jar app.jar
    Unable to load resource: java.util.zip.ZipException: invalid entry CRC (expected 0x358054d7 but got 0x7dc370ba)
    java.util.zip.ZipException: invalid entry CRC (expected 0x358054d7 but got 0x7dc370ba)
    at java.util.zip.ZipInputStream.read(Unknown Source)
    at java.util.jar.JarInputStream.read(Unknown Source)
    at java.io.FilterInputStream.read(Unknown Source)
    at com.simontuffs.onejar.JarClassLoader.copy(JarClassLoader.java:818)
    at com.simontuffs.onejar.JarClassLoader.loadBytes(JarClassLoader.java:383)
    at com.simontuffs.onejar.JarClassLoader.loadByteCode(JarClassLoader.java:371)
    at com.simontuffs.onejar.JarClassLoader.loadByteCode(JarClassLoader.java:362)
    at com.simontuffs.onejar.JarClassLoader.load(JarClassLoader.java:305)
    at com.simontuffs.onejar.JarClassLoader.load(JarClassLoader.java:224)
    at com.simontuffs.onejar.Boot.run(Boot.java:224)
    at com.simontuffs.onejar.Boot.main(Boot.java:89)
    Exception in thread "main" java.lang.ClassNotFoundException: com.intarex.wizard.IWizard
    at com.simontuffs.onejar.JarClassLoader.findClass(JarClassLoader.java:497)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at com.simontuffs.onejar.Boot.run(Boot.java:240)
    at com.simontuffs.onejar.Boot.main(Boot.java:89)
    app.jar is a JAR file created with fat-jar eclipse plugin, to make easier to generate a JAR file with all dependencies.
    I think that is not a code related problem, because this program is executed in several computers without errors.
    I trasport this JAR to the client computer via HTTP.
    I'm trying to find clues to find the origin of this problem.
    Thanks.

  • Help Immediately -  java.util.zip.ZipException

    We are migrating EP6 SP2 P5 to NW04 on Unix HP-UX 11.11.
    We immediately launched the KMC migration and it comes up and the hour glasses endlessly. 
    We are migration the customers Production system and need some ideas of what might be wrong ASAP.
    Thanks - Here are the lines of the log files:
    1123871674779#INFO.- Reports button clicked at MainMigrationFrame
    1123871674781#INFO.- SAP System Name is
    1123871674781#INFO.- using tool version 6.90.20050627170305.0000/2693
    1123871674781#INFO.- using system installation at /usr/sap
    1123871674785#INFO.- Processing migration info
    1123871674820#INFO.- java.util.zip.ZipException: oversubscribed dynamic bit lengths tree

    folks if you get this error, it means your input file was not copied in binary mode.  Our mistake.

  • Help: can not regist application in HP-UX 11.0

    My application work fine in iAS SP3 for Win2000, but when I deployed it to
    HP-UX 11.0, It can not regist the application in HP-UX.
    can any onr help me, thanks
    Lu yanqiang
    the error message is:
    HotSpot VM warning: Setting of property "java.compiler" is ignored
    creating engine class space...
    loading jx2util...
    loading jx2util...done
    Connected to LDAP server on websvr.sh-catcher.com port 389
    com.kivasoft.engine.EngineClassLoaderNonVersionable: EngineClassLoader
    constructer called
    com.kivasoft.engine.EngineClassLoaderNonVersionable: ! NVCL CREATED at:
    com.kivasoft.engine.EngineClassLoaderNonVersionable@1fbe93
    ECS initializing engine class loader instance.
    com.kivasoft.engine.EngineClassLoader: EngineClassLoader constructer called
    initGDSKey: GDSKey_Base
    initGDSKey- just put : com.kivasoft.IGDSKey_Base
    key=com.kivasoft.gds.GDSKey@41cd1f
    initGDSKey: GDSKey_Root
    initGDSKey- just put : com.kivasoft.IGDSKey_Root
    key=com.kivasoft.gds.GDSKey@31f71a
    initGDSKey: GDSKey_Current
    initGDSKey- just put : com.kivasoft.IGDSKey_Current
    key=com.kivasoft.gds.GDSKey@5601ea
    initGDSKey: GDSKey_CurrentEngine
    initGDSKey- just put : com.kivasoft.IGDSKey_CurrentEngine
    key=com.kivasoft.gds.GDSKey@17d257
    context= com.kivasoft.context.Context@6ee36c
    resolve property: GX.path.class GX_CLASSPATH SYSTEM_JAVA null
    resolve value: /opt/iplanet/ias6/ias/APPS
    resolve property: GX.path.class.core GX_CLASSPATH_CORE SYSTEM_JAVA
    java.;com.kivasoft.;gx.
    resolve value:
    java.;com.kivasoft.;gx.;com.netscape.;javax.;netscape.ldap.;netscape.tooluti
    l.
    resolve property: GX.versionable GX_VERSIONABLE SYSTEM_JAVA
    com.kivasoft.engine.IVersionable
    property not in GDS
    resolve value: com.kivasoft.engine.IVersionable
    resolve property: GX.all.versionable GX_ALL_VERSIONABLE SYSTEM_JAVA 0
    property not in GDS
    resolve value: 0
    resolve property: GX.taskmanager.period GX_TASKMANAGER_PERIOD SYSTEM_JAVA 10
    property not in GDS
    resolve value: 10
    resolve property: GX.versionable.if.extends GX_VERSIONABLE_IF_EXTENDS
    SYSTEM_JAVA javax.servlet.GenericServlet;javax.servlet.http.HttpServlet
    property not in GDS
    resolve value: javax.servlet.GenericServlet;javax.servlet.http.HttpServlet
    resolve property: GX.versionable.if.implements GX_VERSIONABLE_IF_IMPLEMENTS
    SYSTEM_JAVA javax.servlet.Servlet
    property not in GDS
    resolve value: javax.servlet.Servlet
    class_dir 4 AppPath: /opt/iplanet/ias6/ias/APPS/compiled_jsp
    loading component...{7ee76a00-a999-11d1-a16f-006097594151}
    getting threadLocal obj
    loading component...{91f29740-16e1-11cf-96c8-0020afed9a65}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.thread.ModuleThread
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.thread.ModuleThread appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.thread.ModuleThread
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.thread.ModuleThread loaded by primordial CL
    registered module... com.kivasoft.IModuleThread
    loading component...{91f29620-16e1-11cf-96c8-0020afed9a65}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderJ
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderJ
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.bind.BinderJ
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderJ
    loaded by primordial CL
    loading component...{ed049d80-b936-1548-e481-080020721767}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.eb.EJBBinder
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EJBBinder
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.eb.EJBBinder
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EJBBinder
    loaded by primordial CL
    EJBBinder: binder is GOOD..
    EJBBinder: context set obj for IID_IGXEBBinder
    loading component...{a84f0507-a912-11cf-aa6c-524153480000}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.gds.GDSModule
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.gds.GDSModule
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.gds.GDSModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.gds.GDSModule
    loaded by primordial CL
    registered module... com.kivasoft.IGDSModule
    loading component...{c70f2c00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderBase
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderBase
    loaded by primordial CL
    loading component...{c70f2d00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBase from
    PCL cache
    loading component...{c70f1a00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.principal.PrincipalModule
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.principal.PrincipalModule appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.principal.PrincipalModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.principal.PrincipalModule loaded by primordial CL
    registered module... com.kivasoft.IPrincipalModule
    loading component...{35069f7a-0a09-1406-8f1a-0800208055c0}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBase from
    PCL cache
    loading component...{e7d37500-23bf-11d1-b6c2-0060082beecf}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBase from
    PCL cache
    loading component...{e7d37540-23bf-11d1-b6c2-0060082beecf}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBase from
    PCL cache
    loading component...{be5cfde0-cd9e-11d1-94aa-0060083a5082}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.eb.EBModule
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EBModule
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.eb.EBModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EBModule loaded
    by primordial CL
    registered module... com.kivasoft.IEBModule
    The current input file= testdb.xml
    About to start xml -> descriptor conversion process
    xmlToDescriptor- file name=testdb.xml
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/application_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/application-client_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-app_2_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-jsptaglibrary_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/ejb-jar_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS J2EE Application Client
    1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASjava_client_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Web Application 1.0//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASWebApp_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans 1.0//EN
    to uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASEjb_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Persistence Manager 1.0//EN to
    uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASPersistence_manager_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Datasource 1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASDatasource_1_0.dtd
    servlet name = testdb
    !!! parseWebAppFromDOM() just put in setServlet name = testdb
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/application_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/application-client_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-app_2_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-jsptaglibrary_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/ejb-jar_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS J2EE Application Client
    1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASjava_client_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Web Application 1.0//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASWebApp_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans 1.0//EN
    to uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASEjb_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Persistence Manager 1.0//EN to
    uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASPersistence_manager_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Datasource 1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASDatasource_1_0.dtd
    !!! handleIASServlet(): Get servlet name= testdb
    AppComponentDescriptor: com.netscape.server.deployment.WebAppDescriptor
    All EnvEntries name:
    All Ejb-refs:
    All Resource-refs:
    WebApp package name = testdb
    Enter setupPluginInfoInGDS()
    creating ServletPatternTrans entry, url= /testdb
    webapp ContextRoot= null
    Enter getAllServlets,registeredServletNames.size= 0
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Enter getAllServlets,registeredServletNames.size= 0
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Enter getAllServlets,registeredServletNames.size= 0
    [01/Nov/2001 16:00:04:5] info: GDS-007: finished a registry load
    --- now put Web-app component descrptor into GDS
    webAppName = testdb
    Enter getAllServlets,registeredServletNames.size= 0
    Enter getAllServlets,registeredServletNames.size= 0
    getClassDefGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getServletGDSKeyByGuid: return key: com.kivasoft.gds.GDSKey@540408
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getClassImpGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Now do some verification step and regenrate the web-app.xml.out file from
    GDS data
    getWebAppGDSKeyByPackageName: name to match= testdb
    got key to webapp= testdb
    enter WebAppCompGDSUtil.getDescriptorFromGDSByKey()
    About to process the <servlet-mapping> element
    GDSvalue name= /System/StaticServlet
    GDSvalue val= StaticServlet
    GDSvalue name= /System/JSPRunnerSticky
    GDSvalue val= JSPRunnerSticky
    GDSvalue name= /System/JSPRunner
    GDSvalue val= JSPRunner
    GDSvalue name= /System/FormAuthServlet
    GDSvalue val= FormAuthServlet
    GDSvalue name= /System/BasicAuthServlet
    GDSvalue val= BasicAuthServlet
    GDSvalue name= /System/CertAuthServlet
    GDSvalue val= CertAuthServlet
    GDSvalue name= /System/SessionInvalidator
    GDSvalue val= SessionInvalidator
    GDSvalue name= /fortune/fortune
    GDSvalue val= FortuneServlet
    GDSvalue name= /web/StaticServlet
    GDSvalue val= StaticServlet
    GDSvalue name= /web/JSPRunnerSticky
    GDSvalue val= JSPRunnerSticky
    GDSvalue name= /web/JSPRunner
    GDSvalue val= JSPRunner
    GDSvalue name= /web/FormAuthServlet
    GDSvalue val= FormAuthServlet
    GDSvalue name= /web/BasicAuthServlet
    GDSvalue val= BasicAuthServlet
    GDSvalue name= /web/CertAuthServlet
    GDSvalue val= CertAuthServlet
    GDSvalue name= /web/SessionInvalidator
    GDSvalue val= SessionInvalidator
    GDSvalue name= /web/AdderAlias
    GDSvalue val= AdderServlet
    GDSvalue name= /testdb/testdb
    GDSvalue val= testdb
    getServletMappingFromGDS: url= /testdb, servlet= testdb
    About to process the context-param
    [01/Nov/2001 16:00:06:7] info: GDS-007: finished a registry load
    About to process the mime-mapping
    About to process the servlets
    GDSvalue name= testdb
    GDSvalue val= {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    GDSvalue name= testdb.jsp
    GDSvalue val= {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    The returned hashtable for servlets have: 2 entries
    About to process the servlet name= testdb.jsp
    About to process the servlet name= testdb
    About to process the tld
    The returned vector for taglib have: 0 entries
    Finished getting a wd from gd s!!!
    Now ready to write out WebApp xml file
    descriptorToXml: about to get all servlets
    Enter getAllServlets,registeredServletNames.size= 2
    DescriptorManager.getServletByGuidStr, ctx=
    com.kivasoft.context.Context@6ee36c
    Enter getServletFromGDS
    getClassDefGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getServletGDSKeyByGuid: return key: com.kivasoft.gds.GDSKey@76c74b
    load-on-startup value from GDS= 0
    number-of-singles value from GDS= 10
    DescriptorManager.getServletByGuidStr, ctx=
    com.kivasoft.context.Context@6ee36c
    write Xml to output file: web.xml.out
    Finished writing out j2ee xml file
    Enter getAllServlets,registeredServletNames.size= 2
    write Xml to output file: ias-web.xml.out
    Finished writing out IAS xml file
    Extracting JSPs from testdb.xml to /opt/iplanet/ias6/ias/APPS/
    Processing input WAR 1
    Processing input WARi 21 testdb.xml
    Encountered exception java.util.zip.ZipException processing input file testd

    Hi,
    What is the version of app server on HP UX ? How did you deploy on the app
    server in HP UX using command line deployment or GUI tool ? Where are these
    errors shooting from, are these coming at the time of deployment or thrown at
    runtime ? What is the application type that you are trying to deploy ?, if
    possible send me the kxs and kjs log files please.
    Regards
    Raj
    lu yanqiang wrote:
    My application work fine in iAS SP3 for Win2000, but when I deployed it to
    HP-UX 11.0, It can not regist the application in HP-UX.
    can any onr help me, thanks
    Lu yanqiang
    the error message is:
    HotSpot VM warning: Setting of property "java.compiler" is ignored
    creating engine class space...
    loading jx2util...
    loading jx2util...done
    Connected to LDAP server on websvr.sh-catcher.com port 389
    com.kivasoft.engine.EngineClassLoaderNonVersionable: EngineClassLoader
    constructer called
    com.kivasoft.engine.EngineClassLoaderNonVersionable: ! NVCL CREATED at:
    com.kivasoft.engine.EngineClassLoaderNonVersionable@1fbe93
    ECS initializing engine class loader instance.
    com.kivasoft.engine.EngineClassLoader: EngineClassLoader constructer called
    initGDSKey: GDSKey_Base
    initGDSKey- just put : com.kivasoft.IGDSKey_Base
    key=com.kivasoft.gds.GDSKey@41cd1f
    initGDSKey: GDSKey_Root
    initGDSKey- just put : com.kivasoft.IGDSKey_Root
    key=com.kivasoft.gds.GDSKey@31f71a
    initGDSKey: GDSKey_Current
    initGDSKey- just put : com.kivasoft.IGDSKey_Current
    key=com.kivasoft.gds.GDSKey@5601ea
    initGDSKey: GDSKey_CurrentEngine
    initGDSKey- just put : com.kivasoft.IGDSKey_CurrentEngine
    key=com.kivasoft.gds.GDSKey@17d257
    context= com.kivasoft.context.Context@6ee36c
    resolve property: GX.path.class GX_CLASSPATH SYSTEM_JAVA null
    resolve value: /opt/iplanet/ias6/ias/APPS
    resolve property: GX.path.class.core GX_CLASSPATH_CORE SYSTEM_JAVA
    java.;com.kivasoft.;gx.
    resolve value:
    java.;com.kivasoft.;gx.;com.netscape.;javax.;netscape.ldap.;netscape.tooluti
    l.
    resolve property: GX.versionable GX_VERSIONABLE SYSTEM_JAVA
    com.kivasoft.engine.IVersionable
    property not in GDS
    resolve value: com.kivasoft.engine.IVersionable
    resolve property: GX.all.versionable GX_ALL_VERSIONABLE SYSTEM_JAVA 0
    property not in GDS
    resolve value: 0
    resolve property: GX.taskmanager.period GX_TASKMANAGER_PERIOD SYSTEM_JAVA 10
    property not in GDS
    resolve value: 10
    resolve property: GX.versionable.if.extends GX_VERSIONABLE_IF_EXTENDS
    SYSTEM_JAVA javax.servlet.GenericServlet;javax.servlet.http.HttpServlet
    property not in GDS
    resolve value: javax.servlet.GenericServlet;javax.servlet.http.HttpServlet
    resolve property: GX.versionable.if.implements GX_VERSIONABLE_IF_IMPLEMENTS
    SYSTEM_JAVA javax.servlet.Servlet
    property not in GDS
    resolve value: javax.servlet.Servlet
    class_dir 4 AppPath: /opt/iplanet/ias6/ias/APPS/compiled_jsp
    loading component...{7ee76a00-a999-11d1-a16f-006097594151}
    getting threadLocal obj
    loading component...{91f29740-16e1-11cf-96c8-0020afed9a65}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.thread.ModuleThread
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.thread.ModuleThread appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.thread.ModuleThread
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.thread.ModuleThread loaded by primordial CL
    registered module... com.kivasoft.IModuleThread
    loading component...{91f29620-16e1-11cf-96c8-0020afed9a65}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderJ
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderJ
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.bind.BinderJ
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderJ
    loaded by primordial CL
    loading component...{ed049d80-b936-1548-e481-080020721767}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.eb.EJBBinder
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EJBBinder
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.eb.EJBBinder
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EJBBinder
    loaded by primordial CL
    EJBBinder: binder is GOOD..
    EJBBinder: context set obj for IID_IGXEBBinder
    loading component...{a84f0507-a912-11cf-aa6c-524153480000}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.gds.GDSModule
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.gds.GDSModule
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.gds.GDSModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.gds.GDSModule
    loaded by primordial CL
    registered module... com.kivasoft.IGDSModule
    loading component...{c70f2c00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderBase
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderBase
    loaded by primordial CL
    loading component...{c70f2d00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBase from
    PCL cache
    loading component...{c70f1a00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.principal.PrincipalModule
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.principal.PrincipalModule appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.principal.PrincipalModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.principal.PrincipalModule loaded by primordial CL
    registered module... com.kivasoft.IPrincipalModule
    loading component...{35069f7a-0a09-1406-8f1a-0800208055c0}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBase from
    PCL cache
    loading component...{e7d37500-23bf-11d1-b6c2-0060082beecf}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBase from
    PCL cache
    loading component...{e7d37540-23bf-11d1-b6c2-0060082beecf}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBase from
    PCL cache
    loading component...{be5cfde0-cd9e-11d1-94aa-0060083a5082}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.eb.EBModule
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EBModule
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader to load
    com.kivasoft.eb.EBModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EBModule loaded
    by primordial CL
    registered module... com.kivasoft.IEBModule
    The current input file= testdb.xml
    About to start xml -> descriptor conversion process
    xmlToDescriptor- file name=testdb.xml
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/application_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/application-client_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-app_2_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-jsptaglibrary_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/ejb-jar_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS J2EE Application Client
    1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASjava_client_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Web Application 1.0//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASWebApp_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans 1.0//EN
    to uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASEjb_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Persistence Manager 1.0//EN to
    uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASPersistence_manager_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Datasource 1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASDatasource_1_0.dtd
    servlet name = testdb
    !!! parseWebAppFromDOM() just put in setServlet name = testdb
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/application_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/application-client_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-app_2_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-jsptaglibrary_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/ejb-jar_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS J2EE Application Client
    1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASjava_client_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Web Application 1.0//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASWebApp_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans 1.0//EN
    to uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASEjb_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Persistence Manager 1.0//EN to
    uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASPersistence_manager_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Datasource 1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASDatasource_1_0.dtd
    !!! handleIASServlet(): Get servlet name= testdb
    AppComponentDescriptor: com.netscape.server.deployment.WebAppDescriptor
    All EnvEntries name:
    All Ejb-refs:
    All Resource-refs:
    WebApp package name = testdb
    Enter setupPluginInfoInGDS()
    creating ServletPatternTrans entry, url= /testdb
    webapp ContextRoot= null
    Enter getAllServlets,registeredServletNames.size= 0
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Enter getAllServlets,registeredServletNames.size= 0
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Enter getAllServlets,registeredServletNames.size= 0
    [01/Nov/2001 16:00:04:5] info: GDS-007: finished a registry load
    --- now put Web-app component descrptor into GDS
    webAppName = testdb
    Enter getAllServlets,registeredServletNames.size= 0
    Enter getAllServlets,registeredServletNames.size= 0
    getClassDefGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getServletGDSKeyByGuid: return key: com.kivasoft.gds.GDSKey@540408
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getClassImpGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Now do some verification step and regenrate the web-app.xml.out file from
    GDS data
    getWebAppGDSKeyByPackageName: name to match= testdb
    got key to webapp= testdb
    enter WebAppCompGDSUtil.getDescriptorFromGDSByKey()
    About to process the <servlet-mapping> element
    GDSvalue name= /System/StaticServlet
    GDSvalue val= StaticServlet
    GDSvalue name= /System/JSPRunnerSticky
    GDSvalue val= JSPRunnerSticky
    GDSvalue name= /System/JSPRunner
    GDSvalue val= JSPRunner
    GDSvalue name= /System/FormAuthServlet
    GDSvalue val= FormAuthServlet
    GDSvalue name= /System/BasicAuthServlet
    GDSvalue val= BasicAuthServlet
    GDSvalue name= /System/CertAuthServlet
    GDSvalue val= CertAuthServlet
    GDSvalue name= /System/SessionInvalidator
    GDSvalue val= SessionInvalidator
    GDSvalue name= /fortune/fortune
    GDSvalue val= FortuneServlet
    GDSvalue name= /web/StaticServlet
    GDSvalue val= StaticServlet
    GDSvalue name= /web/JSPRunnerSticky
    GDSvalue val= JSPRunnerSticky
    GDSvalue name= /web/JSPRunner
    GDSvalue val= JSPRunner
    GDSvalue name= /web/FormAuthServlet
    GDSvalue val= FormAuthServlet
    GDSvalue name= /web/BasicAuthServlet
    GDSvalue val= BasicAuthServlet
    GDSvalue name= /web/CertAuthServlet
    GDSvalue val= CertAuthServlet
    GDSvalue name= /web/SessionInvalidator
    GDSvalue val= SessionInvalidator
    GDSvalue name= /web/AdderAlias
    GDSvalue val= AdderServlet
    GDSvalue name= /testdb/testdb
    GDSvalue val= testdb
    getServletMappingFromGDS: url= /testdb, servlet= testdb
    About to process the context-param
    [01/Nov/2001 16:00:06:7] info: GDS-007: finished a registry load
    About to process the mime-mapping
    About to process the servlets
    GDSvalue name= testdb
    GDSvalue val= {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    GDSvalue name= testdb.jsp
    GDSvalue val= {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    The returned hashtable for servlets have: 2 entries
    About to process the servlet name= testdb.jsp
    About to process the servlet name= testdb
    About to process the tld
    The returned vector for taglib have: 0 entries
    Finished getting a wd from gd s!!!
    Now ready to write out WebApp xml file
    descriptorToXml: about to get all servlets
    Enter getAllServlets,registeredServletNames.size= 2
    DescriptorManager.getServletByGuidStr, ctx=
    com.kivasoft.context.Context@6ee36c
    Enter getServletFromGDS
    getClassDefGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getServletGDSKeyByGuid: return key: com.kivasoft.gds.GDSKey@76c74b
    load-on-startup value from GDS= 0
    number-of-singles value from GDS= 10
    DescriptorManager.getServletByGuidStr, ctx=
    com.kivasoft.context.Context@6ee36c
    write Xml to output file: web.xml.out
    Finished writing out j2ee xml file
    Enter getAllServlets,registeredServletNames.size= 2
    write Xml to output file: ias-web.xml.out
    Finished writing out IAS xml file
    Extracting JSPs from testdb.xml to /opt/iplanet/ias6/ias/APPS/
    Processing input WAR 1
    Processing input WARi 21 testdb.xml
    Encountered exception java.util.zip.ZipException processing input file testd

  • Error(5): java.util.zip.ZipException: invalid entry size (expected 2875 but

    Hi all!
    I'm getting this error when I try to execute my application in JDeveloper: Error(5): java.util.zip.ZipException: invalid entry size (expected 2875 but got 2845 bytes)
    This started to happen after I had checkout my application to CVSNT.
    Any help?
    P.S. I'm using JDeveloper 10.1.3 with CVSNT 2.5

    My cvswrappers file (CVSNT):
    *.cab -kb
    *.class -kb
    *.doc -kb
    *.dll -kb
    *.ear -kb
    *.exe -kb
    *.exp -kb
    *.fla -kb
    *.gif -kb
    *.gz -kb
    *.jar -kb
    *.jpg -kb
    *.jpeg -kb
    *.lib -kb
    *.msi -kb
    *.mso -kb
    *.pdf -kb
    *.pfw -kb
    *.png -kb
    *.ppt -kb
    *.sit -kb
    *.swf -kb
    *.tar -kb
    *.tlb -kb
    *.vsd -kb
    *.xls -kb
    *.war -kb
    *.wmz -kb
    *.zip -kb Via Tortoise client I can add and commit zip (jar) files in binary format and everything is OK.
    If I do that via Jdev, anybody who checkout that module from cvs have zip exception, because JDev didnt sent in binary format. How to setup that?
    Thanx
    Message was edited by:
    vpetreski

  • Error(7): java.util.zip.ZipException: invalid entry size (expected 813 but

    Hi All,
    Error(7): java.util.zip.ZipException: invalid entry size (expected 813 but got 817 bytes)
    Today I opened my working project in Jdeveloper 10.1.3 version and as I compile the project, it gives me this error in all Jsf - Jsp pages.
    The line that it shows the above error in my pages is follows.
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    Any idea ? Till yesterday, I never got this error and all of sudden it started showing up.
    Your help appreciated.
    thanks,
    pp

    And just to add, nothing got checked out from repository (I mean CVS etc).
    I have this project and Jdev on my windows laptop. I just opened it and started getting this strange error. any idea ?

  • Java.util.zip.ZipException Error

    I created a jar file, and put in C:\tools
    C:\tools>java -jar myjar.jar is working fine
    However, if I try to run myjar.jar in other directories, then I have problems.
    I already set the classpath:
    SET CLASSPATH=.;%CLASSPATH%;C:\tools\myjar.jar;
    Here's the error. Any ideas???
    C:\>java -jar myjar.jar
    Exception in thread "main" java.util.zip.ZipException: The system cannot find th
    e file specified
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:112)
    at java.util.jar.JarFile.<init>(JarFile.java:117)
    at java.util.jar.JarFile.<init>(JarFile.java:55)

    You always need to specify a proper file name when you use the -jar switch. If you are not in c:\tools you have to run with "java -jar c:\tools\myjar.jar".
    Setting the classpath in particular doesn't help becuase the file name given to the -jar switch will override all settings for classpath. http://java.sun.com/j2se/1.4/docs/tooldocs/findingclasses.html#userclass
    But since you now have myjar.jar in your classpath, you can run the application from any directory with "java your.main.ClassName" :)

  • Java.util.zip.ZipException error when building

    Good Day All,
    I am a newbie and this is my first JWS deployment. I have an app that I am writing in Netbeans 6.1 that I want to deploy via JWS. The app accesses five different JAR libraries and that is where my troubles started. I thought that I needed to figure a way to configure Netbeans so the libraries would be deployed with my app JAR so it would run correctly using JWS.
    I was trying to get things working and now my problem is that when I build I am getting the following error:
    init:
    deps-jar:
    compile:
    Copy libraries to C:\Java\DataMed\dist\lib.
    To run this application from the command line without Ant, try:
    java -jar "C:\Java\DataMed\dist\DataMed.jar"
    jnlp:
    jnlp-init-generate-master:
    C:\Java\DataMed\nbproject\jnlp-impl.xml:61:  The following error occurred while executing this line:
    C:Java\DataMed\nbproject\jnlp-impl.xml:386:  java.util.zip.ZipException:  error in opening zip file
    BUILD FAILED (total time: 0seconds)Scrolling to line 386 in the jnlp-impl.xml file it says:
    componentsprop="jnlp.components">I futzed with my options so much I can't seem to figure out how to get everything reset so I can get a clean build ! As a newbie to Netbeans I sometimes have difficulty figuring out where all the different things are hidden ... I **think** it all went bad when I was working on the Properties > Libraries > Compile > Compile-time Libraries but I can't remember.
    So I have two questions really:
    1) How can I resolve the ZipException error? I suspect it is one of the JAR libraries but how can I tell ?
    2) How do I get JWS to find my five libraries ? I now suspect that I am supposed to upload the five libraries to the webserver and then in my JNLP it will have links to the libraries in the <resources> part of the code. Is that correct ?
    Edited by: DBirdManAR on Aug 10, 2008 7:22 AM
    Rather than spend to much time figuring this out, I just used my revert modifications through my SVN to go back to a previous version that builds correctly.

    Hi,
    I have the same problem but I cannot solve it.
    Help much appreciated.
    Regards,

  • Java.util.zip.ZipException: error in opening zip file Deploment Error

    Hi All,
    I am getting the fallowing Deployment exception while i am trying to deploy my webdynpro DC. Kindly help me if anybody know the solution for it.
    deployment aborted : file:/C:/DOCUME1/291123/LOCALS1/Temp/temp7081pg.comiprscipr~dc_intreg_process.ear
    Aborted: development component 'ipr/scipr/dc_intreg_process'/'pg.com'/'GGD_EPREGDEV_D'/'20101220152524'/'0':Caught exception during application deployment from SAP J2EE Engine's deploy service:java.rmi.RemoteException: Error while getting the internal libraries of application pg.com/iprsciprdc_intreg_process in operation update.. Reason: error in opening zip file; nested exception is:      java.util.zip.ZipException: error in opening zip file (message ID: com.sap.sdm.serverext.servertype.i
    Thanks,
    Mahesh Nuli.

    Hello Ram,
    It is saying that the library file is missing. Can you deploy pg.com/iprsciprdc_intreg_process  first and try to deploy this ear temp7081pg.comiprscipr~dc_intreg_process.ear.
    Regards
    Nizamudeen SM

  • [J2EE:160029] I/O error... java.util.zip.ZipException

    Hi,
    I'm using BEA WLS8.1 SP4 on HPUX Itanium2 with JDK 1.4.2.05.
    When I'm trying to deploy my app's ear file it's throwing
    out the error shown below (far below).
    I've placed the ear file in /opt/bea_wls/weblogic81/server/bin/myserver/upload directory with all the permissions set.
    Please could someone help me resolve this.
    Thanks
    Mouli
    [J2EE:160029]I/O error while reading deployment - java.util.zip.ZipException: Could not find End Of Central Directory. java.util.zip.ZipException: Could not find End Of Central Directory at java.util.zip.ZipFile.open(Ljava.lang.String;I)I(Unknown Source) at java.util.zip.ZipFile.<init>(Ljava.io.File;I)V(Unknown Source) at java.util.jar.JarFile.<init>(Ljava.io.File;ZI)V(JarFile.java:127) at java.util.jar.JarFile.<init>(Ljava.io.File;)V(JarFile.java:92) at weblogic.j2ee.J2EEUtils.getArchiveEarInfo(Ljava.io.File;)Lweblogic.j2ee.DeploymentInfo;(J2EEUtils.java:294) at weblogic.j2ee.J2EEUtils.getDeploymentInfo(Ljava.io.File;)[Lweblogic.j2ee.DeploymentInfo;(J2EEUtils.java:206) at weblogic.j2ee.J2EEUtils.getDeploymentInfo(Lweblogic.application.ApplicationFileManager;)[Lweblogic.j2ee.DeploymentInfo;(J2EEUtils.java:158) at weblogic.j2ee.J2EEApplicationContainerFactory.initializeDeployment(Ljava.io.File;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;)Lweblogic.management.configuration.ApplicationMBean;(J2EEApplicationContainerFactory.java:464) at weblogic.management.deploy.DeployerRuntime.unprotectedActivate(Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Lweblogic.management.deploy.DeploymentData;Ljava.lang.String;Z)Lweblogic.management.runtime.DeploymentTaskRuntimeMBean;(DeployerRuntime.java:854) at weblogic.management.deploy.DeployerRuntime.access$000(Lweblogic.management.deploy.DeployerRuntime;Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Lweblogic.management.deploy.DeploymentData;Ljava.lang.String;Z)Lweblogic.management.runtime.DeploymentTaskRuntimeMBean;(DeployerRuntime.java:69) at weblogic.management.deploy.DeployerRuntime$1.run()Ljava.lang.Object;(DeployerRuntime.java:1532) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic.security.subject.AbstractSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(SecurityManager.java:121) at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Lweblogic.management.deploy.DeploymentData;Ljava.lang.String;ZI)Lweblogic.management.runtime.DeploymentTaskRuntimeMBean;(DeployerRuntime.java:1523) at weblogic.management.deploy.DeployerRuntime.activate(Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Lweblogic.management.deploy.DeploymentData;Ljava.lang.String;Z)Lweblogic.management.runtime.DeploymentTaskRuntimeMBean;(DeployerRuntime.java:192) at jrockit.reflect.NativeMethodInvoker.invoke0(Ljava.lang.Object;ILjava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source) at jrockit.reflect.NativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source) at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source) at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source) at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String;)Ljava.lang.Object;(DynamicMBeanImpl.java:754) at weblogic.management.internal.DynamicMBeanImpl.invoke(Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String;)Ljava.lang.Object;(DynamicMBeanImpl.java:733) at com.sun.management.jmx.MBeanServerImpl.invoke(Ljava.lang.Object;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String;)Ljava.lang.Object;(MBeanServerImpl.java:1560) at com.sun.management.jmx.MBeanServerImpl.invoke(Ljavax.management.ObjectName;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String;)Ljava.lang.Object;(MBeanServerImpl.java:1528) at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(Ljavax.management.ObjectName;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String;)Ljava.lang.Object;(RemoteMBeanServerImpl.java:988) at weblogic.management.internal.RemoteMBeanServerImpl.invoke(Ljavax.management.ObjectName;Ljava.lang.String;[Ljava.lang.Object;[Ljava.lang.String;)Ljava.lang.Object;(RemoteMBeanServerImpl.java:946) at weblogic.management.internal.MBeanProxy.invoke(Ljava.lang.String;[Ljava.lang.Object;)Ljava.lang.Object;(MBeanProxy.java:954) at weblogic.management.internal.MBeanProxy.invokeForCachingStub(Ljava.lang.String;[Ljava.lang.Object;)Ljava.lang.Object;(MBeanProxy.java:481) at weblogic.management.runtime.DeployerRuntimeMBean_Stub.activate(Ljava.lang.String;Ljava.lang.String;Ljava.lang.String;Lweblogic.management.deploy.DeploymentData;Ljava.lang.String;Z)Lweblogic.management.runtime.DeploymentTaskRuntimeMBean;(DeployerRuntimeMBean_Stub.java:1139) at weblogic.management.console.actions.mbean.ApplicationDeployAction.prePerform(Lweblogic.management.console.actions.ActionContext;Lweblogic.management.console.actions.RequestableAction;)Lweblogic.management.console.actions.RequestableAction;(ApplicationDeployAction.java:179) at weblogic.management.console.actions.mbean.DoMBeanWizardAction.perform(Lweblogic.management.console.actions.ActionContext;)Lweblogic.management.console.actions.Action;(DoMBeanWizardAction.java:215) at weblogic.management.console.actions.internal.ActionServlet.doAction(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(ActionServlet.java:173)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi
    THis may be due to the file was FTP to the directory as ASCII mode ...
    Or the file is corrupt.
    Try to pacgake again (with jar command)
    Jin

  • What cause this error: java.util.zip.ZipException: invalid literal/lengths?

    Hi all,
    Our application produces this error in the logs: (our JDEV is 11.1.1.4.0, WLS 10.3)
    org.apache.myfaces.trinidadinternal.renderkit.core.CoreResponseStateManager _restoreSerializedView
    SEVERE:
    java.util.zip.ZipException: invalid literal/lengths set
    at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:147)
    at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:92)
    at java.io.ObjectInputStream$PeekInputStream.read(ObjectInputStream.java:2266)
    at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2279)
    at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2750)
    at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:780)
    at java.io.ObjectInputStream.<init>(ObjectInputStream.java:280)
    I have googled this error for hours and search the forum here, but no luck. Can someone please shed some light on this error? Thanks in advance!
    Shawn

    Hi Shawn,
    Please refer the below thing i found. Hope this may help you in moving forward in resolving. I hope this issue has occured when you are deploying your application WAR.
    ======================================================================================
    Method: read()
    Class: at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:147)
    The above class comes in your exception hierarchy above.
    Reads uncompressed data into an array of bytes. This method will block until some input can be decompressed.
    Throws:
    ZipException - if a ZIP format error has occurred
    ====================================
    This also points that your WAR file is corrupt.
    Class: GZIPInputStream
    IOException - if an I/O error has occurred or the compressed input data is corrupt
    Thanks,

  • Re: help: can not regist application in HP-UX 11.0

    Hi,
    this the test.xml and ias-test.xml:
    test.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application
    2.2//EN' 'http://java.sun.com/j2ee/dtds/web-app_2_2.dtd'>
    <web-app>
    <distributable></distributable>
    <servlet>
    <servlet-name>testjsp</servlet-name>
    <jsp-file>testjsp.jsp</jsp-file>
    <load-on-startup>0</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>testjsp</servlet-name>
    <url-pattern>/testjsp</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>1800</session-timeout>
    </session-config>
    <login-config>
    <realm-name></realm-name>
    <form-login-config>
    <form-login-page></form-login-page>
    <form-error-page></form-error-page>
    </form-login-config>
    </login-config>
    </web-app>
    ias-test.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ias-web-app PUBLIC '-//Sun Microsystems, Inc.//DTD iAS Web
    Application 1.0//EN'
    'http://developer.iplanet.com/appserver/dtds/IASWebApp_1_0.dtd'>
    <ias-web-app>
    <servlet>
    <servlet-name>testjsp</servlet-name>
    <guid>{722828a9-b9f6-4c55-8ec3-a315ebc2d551}</guid>
    <validation-required>false</validation-required>
    <servlet-info>
    <sticky>false</sticky>
    <encrypt>false</encrypt>
    <number-of-singles>10</number-of-singles>
    <disable-reload>false</disable-reload>
    </servlet-info>
    </servlet>
    </ias-web-app>
    thanks
    Lu yanqiang
    "Raj" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    The problem I anticipate is Windows 2000 has app server SP3 and youare
    trying to deploy the same app logic to HP Unix which is having app serverSP1.
    So this could be problem, that's precisely the reason why I would like tolook
    into the coding.
    Regards
    Raj
    lu yanqiang wrote:
    Hi, thanks for you help:
    I'm sure that my application and the xml file is right,because I runit
    in
    Windows OK, but when I wang to register it in HP-UX 11.0, I use the
    command "webappreg test.xml" to regist my application, this commandresponse
    me these error messages:
    HotSpot VM warning: Setting of property "java.compiler" is ignored
    creating engine class space...
    loading jx2util...
    loading jx2util...done
    Connected to LDAP server on websvr.sh-catcher.com port 389
    com.kivasoft.engine.EngineClassLoaderNonVersionable: EngineClassLoader
    constructer called
    com.kivasoft.engine.EngineClassLoaderNonVersionable: ! NVCL CREATED at:
    com.kivasoft.engine.EngineClassLoaderNonVersionable@1fbe93
    ECS initializing engine class loader instance.
    com.kivasoft.engine.EngineClassLoader: EngineClassLoader constructercalled
    initGDSKey: GDSKey_Base
    initGDSKey- just put : com.kivasoft.IGDSKey_Base
    key=com.kivasoft.gds.GDSKey@41cd1f
    initGDSKey: GDSKey_Root
    initGDSKey- just put : com.kivasoft.IGDSKey_Root
    key=com.kivasoft.gds.GDSKey@31f71a
    initGDSKey: GDSKey_Current
    initGDSKey- just put : com.kivasoft.IGDSKey_Current
    key=com.kivasoft.gds.GDSKey@5601ea
    initGDSKey: GDSKey_CurrentEngine
    initGDSKey- just put : com.kivasoft.IGDSKey_CurrentEngine
    key=com.kivasoft.gds.GDSKey@17d257
    context= com.kivasoft.context.Context@6ee36c
    resolve property: GX.path.class GX_CLASSPATH SYSTEM_JAVA null
    resolve value: /opt/iplanet/ias6/ias/APPS
    resolve property: GX.path.class.core GX_CLASSPATH_CORE SYSTEM_JAVA
    java.;com.kivasoft.;gx.
    resolve value:
    java.;com.kivasoft.;gx.;com.netscape.;javax.;netscape.ldap.;netscape.tooluti
    l.
    resolve property: GX.versionable GX_VERSIONABLE SYSTEM_JAVA
    com.kivasoft.engine.IVersionable
    property not in GDS
    resolve value: com.kivasoft.engine.IVersionable
    resolve property: GX.all.versionable GX_ALL_VERSIONABLE SYSTEM_JAVA 0
    property not in GDS
    resolve value: 0
    resolve property: GX.taskmanager.period GX_TASKMANAGER_PERIODSYSTEM_JAVA 10
    property not in GDS
    resolve value: 10
    resolve property: GX.versionable.if.extends GX_VERSIONABLE_IF_EXTENDS
    SYSTEM_JAVA javax.servlet.GenericServlet;javax.servlet.http.HttpServlet
    property not in GDS
    resolve value:javax.servlet.GenericServlet;javax.servlet.http.HttpServlet
    resolve property: GX.versionable.if.implementsGX_VERSIONABLE_IF_IMPLEMENTS
    SYSTEM_JAVA javax.servlet.Servlet
    property not in GDS
    resolve value: javax.servlet.Servlet
    class_dir 4 AppPath: /opt/iplanet/ias6/ias/APPS/compiled_jsp
    loading component...{7ee76a00-a999-11d1-a16f-006097594151}
    getting threadLocal obj
    loading component...{91f29740-16e1-11cf-96c8-0020afed9a65}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.thread.ModuleThread
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.thread.ModuleThread appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.thread.ModuleThread
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.thread.ModuleThread loaded by primordial CL
    registered module... com.kivasoft.IModuleThread
    loading component...{91f29620-16e1-11cf-96c8-0020afed9a65}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderJ
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderJ
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.bind.BinderJ
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderJ
    loaded by primordial CL
    loading component...{ed049d80-b936-1548-e481-080020721767}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.eb.EJBBinder
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EJBBinder
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.eb.EJBBinder
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EJBBinder
    loaded by primordial CL
    EJBBinder: binder is GOOD..
    EJBBinder: context set obj for IID_IGXEBBinder
    loading component...{a84f0507-a912-11cf-aa6c-524153480000}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.gds.GDSModule
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.gds.GDSModule
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.gds.GDSModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.gds.GDSModule
    loaded by primordial CL
    registered module... com.kivasoft.IGDSModule
    loading component...{c70f2c00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Classcom.kivasoft.bind.BinderBase
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Classcom.kivasoft.bind.BinderBase
    loaded by primordial CL
    loading component...{c70f2d00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBasefrom
    PCL cache
    loading component...{c70f1a00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.principal.PrincipalModule
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.principal.PrincipalModule appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.principal.PrincipalModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.principal.PrincipalModule loaded by primordial CL
    registered module... com.kivasoft.IPrincipalModule
    loading component...{35069f7a-0a09-1406-8f1a-0800208055c0}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBasefrom
    PCL cache
    loading component...{e7d37500-23bf-11d1-b6c2-0060082beecf}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBasefrom
    PCL cache
    loading component...{e7d37540-23bf-11d1-b6c2-0060082beecf}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBasefrom
    PCL cache
    loading component...{be5cfde0-cd9e-11d1-94aa-0060083a5082}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.eb.EBModule
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EBModule
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.eb.EBModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EBModuleloaded
    by primordial CL
    registered module... com.kivasoft.IEBModule
    The current input file= testdb.xml
    About to start xml -> descriptor conversion process
    xmlToDescriptor- file name=testdb.xml
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/application_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application Client1.2//EN to
    uri=file://localhost/opt/iplanet/ias6/ias/APPS/application-client_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-app_2_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-jsptaglibrary_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//ENto
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/ejb-jar_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS J2EE Application Client
    1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASjava_client_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Web Application 1.0//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASWebApp_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans1.0//EN
    to uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASEjb_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Persistence Manager1.0//EN to
    uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASPersistence_manager_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Datasource 1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASDatasource_1_0.dtd
    servlet name = testdb
    !!! parseWebAppFromDOM() just put in setServlet name = testdb
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/application_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application Client1.2//EN to
    uri=file://localhost/opt/iplanet/ias6/ias/APPS/application-client_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-app_2_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-jsptaglibrary_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//ENto
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/ejb-jar_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS J2EE Application Client
    1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASjava_client_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Web Application 1.0//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASWebApp_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans1.0//EN
    to uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASEjb_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Persistence Manager1.0//EN to
    uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASPersistence_manager_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Datasource 1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASDatasource_1_0.dtd
    !!! handleIASServlet(): Get servlet name= testdb
    AppComponentDescriptor: com.netscape.server.deployment.WebAppDescriptor
    All EnvEntries name:
    All Ejb-refs:
    All Resource-refs:
    WebApp package name = testdb
    Enter setupPluginInfoInGDS()
    creating ServletPatternTrans entry, url= /testdb
    webapp ContextRoot= null
    Enter getAllServlets,registeredServletNames.size= 0
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Enter getAllServlets,registeredServletNames.size= 0
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Enter getAllServlets,registeredServletNames.size= 0
    [01/Nov/2001 16:00:04:5] info: GDS-007: finished a registry load
    --- now put Web-app component descrptor into GDS
    webAppName = testdb
    Enter getAllServlets,registeredServletNames.size= 0
    Enter getAllServlets,registeredServletNames.size= 0
    getClassDefGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getServletGDSKeyByGuid: return key: com.kivasoft.gds.GDSKey@540408
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getClassImpGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Now do some verification step and regenrate the web-app.xml.out filefrom
    GDS data
    getWebAppGDSKeyByPackageName: name to match= testdb
    got key to webapp= testdb
    enter WebAppCompGDSUtil.getDescriptorFromGDSByKey()
    About to process the <servlet-mapping> element
    GDSvalue name= /System/StaticServlet
    GDSvalue val= StaticServlet
    GDSvalue name= /System/JSPRunnerSticky
    GDSvalue val= JSPRunnerSticky
    GDSvalue name= /System/JSPRunner
    GDSvalue val= JSPRunner
    GDSvalue name= /System/FormAuthServlet
    GDSvalue val= FormAuthServlet
    GDSvalue name= /System/BasicAuthServlet
    GDSvalue val= BasicAuthServlet
    GDSvalue name= /System/CertAuthServlet
    GDSvalue val= CertAuthServlet
    GDSvalue name= /System/SessionInvalidator
    GDSvalue val= SessionInvalidator
    GDSvalue name= /fortune/fortune
    GDSvalue val= FortuneServlet
    GDSvalue name= /web/StaticServlet
    GDSvalue val= StaticServlet
    GDSvalue name= /web/JSPRunnerSticky
    GDSvalue val= JSPRunnerSticky
    GDSvalue name= /web/JSPRunner
    GDSvalue val= JSPRunner
    GDSvalue name= /web/FormAuthServlet
    GDSvalue val= FormAuthServlet
    GDSvalue name= /web/BasicAuthServlet
    GDSvalue val= BasicAuthServlet
    GDSvalue name= /web/CertAuthServlet
    GDSvalue val= CertAuthServlet
    GDSvalue name= /web/SessionInvalidator
    GDSvalue val= SessionInvalidator
    GDSvalue name= /web/AdderAlias
    GDSvalue val= AdderServlet
    GDSvalue name= /testdb/testdb
    GDSvalue val= testdb
    getServletMappingFromGDS: url= /testdb, servlet= testdb
    About to process the context-param
    [01/Nov/2001 16:00:06:7] info: GDS-007: finished a registry load
    About to process the mime-mapping
    About to process the servlets
    GDSvalue name= testdb
    GDSvalue val= {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    GDSvalue name= testdb.jsp
    GDSvalue val= {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    The returned hashtable for servlets have: 2 entries
    About to process the servlet name= testdb.jsp
    About to process the servlet name= testdb
    About to process the tld
    The returned vector for taglib have: 0 entries
    Finished getting a wd from gd s!!!
    Now ready to write out WebApp xml file
    descriptorToXml: about to get all servlets
    Enter getAllServlets,registeredServletNames.size= 2
    DescriptorManager.getServletByGuidStr, ctx=
    com.kivasoft.context.Context@6ee36c
    Enter getServletFromGDS
    getClassDefGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getServletGDSKeyByGuid: return key: com.kivasoft.gds.GDSKey@76c74b
    load-on-startup value from GDS= 0
    number-of-singles value from GDS= 10
    DescriptorManager.getServletByGuidStr, ctx=
    com.kivasoft.context.Context@6ee36c
    write Xml to output file: web.xml.out
    Finished writing out j2ee xml file
    Enter getAllServlets,registeredServletNames.size= 2
    write Xml to output file: ias-web.xml.out
    Finished writing out IAS xml file
    Extracting JSPs from testdb.xml to /opt/iplanet/ias6/ias/APPS/
    Processing input WAR 1
    Processing input WARi 21 testdb.xml
    Encountered exception java.util.zip.ZipException processing input file
    testdb.xml
    <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    At what stage did this error shoot up ? Is it possible for you to
    send
    the
    application for me to check ?
    Regards
    Raj
    lu yanqiang wrote:
    Hi,
    I use the iAS 6.0SP1 in HP-UX and I use command to regist
    application,
    this error message is response by "webappreg", i use webappreg to
    regist
    my
    application,and i registed it success in windows.
    thanks
    Lu yanqiang
    "Raj" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    What is the version of app server on HP UX ? How did you
    deploy on
    the
    app
    server in HP UX using command line deployment or GUI tool ? Where
    are
    these
    errors shooting from, are these coming at the time of deployment
    or
    thrown
    at
    runtime ? What is the application type that you are trying to
    deploy
    ?, if
    possible send me the kxs and kjs log files please.
    Regards
    Raj
    lu yanqiang wrote:
    My application work fine in iAS SP3 for Win2000, but when I
    deployed
    it
    to
    HP-UX 11.0, It can not regist the application in HP-UX.
    can any onr help me, thanks
    Lu yanqiang

    Hi,
    this the test.xml and ias-test.xml:
    test.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application
    2.2//EN' 'http://java.sun.com/j2ee/dtds/web-app_2_2.dtd'>
    <web-app>
    <distributable></distributable>
    <servlet>
    <servlet-name>testjsp</servlet-name>
    <jsp-file>testjsp.jsp</jsp-file>
    <load-on-startup>0</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>testjsp</servlet-name>
    <url-pattern>/testjsp</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>1800</session-timeout>
    </session-config>
    <login-config>
    <realm-name></realm-name>
    <form-login-config>
    <form-login-page></form-login-page>
    <form-error-page></form-error-page>
    </form-login-config>
    </login-config>
    </web-app>
    ias-test.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ias-web-app PUBLIC '-//Sun Microsystems, Inc.//DTD iAS Web
    Application 1.0//EN'
    'http://developer.iplanet.com/appserver/dtds/IASWebApp_1_0.dtd'>
    <ias-web-app>
    <servlet>
    <servlet-name>testjsp</servlet-name>
    <guid>{722828a9-b9f6-4c55-8ec3-a315ebc2d551}</guid>
    <validation-required>false</validation-required>
    <servlet-info>
    <sticky>false</sticky>
    <encrypt>false</encrypt>
    <number-of-singles>10</number-of-singles>
    <disable-reload>false</disable-reload>
    </servlet-info>
    </servlet>
    </ias-web-app>
    thanks
    Lu yanqiang
    "Raj" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    The problem I anticipate is Windows 2000 has app server SP3 and youare
    trying to deploy the same app logic to HP Unix which is having app serverSP1.
    So this could be problem, that's precisely the reason why I would like tolook
    into the coding.
    Regards
    Raj
    lu yanqiang wrote:
    Hi, thanks for you help:
    I'm sure that my application and the xml file is right,because I runit
    in
    Windows OK, but when I wang to register it in HP-UX 11.0, I use the
    command "webappreg test.xml" to regist my application, this commandresponse
    me these error messages:
    HotSpot VM warning: Setting of property "java.compiler" is ignored
    creating engine class space...
    loading jx2util...
    loading jx2util...done
    Connected to LDAP server on websvr.sh-catcher.com port 389
    com.kivasoft.engine.EngineClassLoaderNonVersionable: EngineClassLoader
    constructer called
    com.kivasoft.engine.EngineClassLoaderNonVersionable: ! NVCL CREATED at:
    com.kivasoft.engine.EngineClassLoaderNonVersionable@1fbe93
    ECS initializing engine class loader instance.
    com.kivasoft.engine.EngineClassLoader: EngineClassLoader constructercalled
    initGDSKey: GDSKey_Base
    initGDSKey- just put : com.kivasoft.IGDSKey_Base
    key=com.kivasoft.gds.GDSKey@41cd1f
    initGDSKey: GDSKey_Root
    initGDSKey- just put : com.kivasoft.IGDSKey_Root
    key=com.kivasoft.gds.GDSKey@31f71a
    initGDSKey: GDSKey_Current
    initGDSKey- just put : com.kivasoft.IGDSKey_Current
    key=com.kivasoft.gds.GDSKey@5601ea
    initGDSKey: GDSKey_CurrentEngine
    initGDSKey- just put : com.kivasoft.IGDSKey_CurrentEngine
    key=com.kivasoft.gds.GDSKey@17d257
    context= com.kivasoft.context.Context@6ee36c
    resolve property: GX.path.class GX_CLASSPATH SYSTEM_JAVA null
    resolve value: /opt/iplanet/ias6/ias/APPS
    resolve property: GX.path.class.core GX_CLASSPATH_CORE SYSTEM_JAVA
    java.;com.kivasoft.;gx.
    resolve value:
    java.;com.kivasoft.;gx.;com.netscape.;javax.;netscape.ldap.;netscape.tooluti
    l.
    resolve property: GX.versionable GX_VERSIONABLE SYSTEM_JAVA
    com.kivasoft.engine.IVersionable
    property not in GDS
    resolve value: com.kivasoft.engine.IVersionable
    resolve property: GX.all.versionable GX_ALL_VERSIONABLE SYSTEM_JAVA 0
    property not in GDS
    resolve value: 0
    resolve property: GX.taskmanager.period GX_TASKMANAGER_PERIODSYSTEM_JAVA 10
    property not in GDS
    resolve value: 10
    resolve property: GX.versionable.if.extends GX_VERSIONABLE_IF_EXTENDS
    SYSTEM_JAVA javax.servlet.GenericServlet;javax.servlet.http.HttpServlet
    property not in GDS
    resolve value:javax.servlet.GenericServlet;javax.servlet.http.HttpServlet
    resolve property: GX.versionable.if.implementsGX_VERSIONABLE_IF_IMPLEMENTS
    SYSTEM_JAVA javax.servlet.Servlet
    property not in GDS
    resolve value: javax.servlet.Servlet
    class_dir 4 AppPath: /opt/iplanet/ias6/ias/APPS/compiled_jsp
    loading component...{7ee76a00-a999-11d1-a16f-006097594151}
    getting threadLocal obj
    loading component...{91f29740-16e1-11cf-96c8-0020afed9a65}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.thread.ModuleThread
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.thread.ModuleThread appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.thread.ModuleThread
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.thread.ModuleThread loaded by primordial CL
    registered module... com.kivasoft.IModuleThread
    loading component...{91f29620-16e1-11cf-96c8-0020afed9a65}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderJ
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderJ
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.bind.BinderJ
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.bind.BinderJ
    loaded by primordial CL
    loading component...{ed049d80-b936-1548-e481-080020721767}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.eb.EJBBinder
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EJBBinder
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.eb.EJBBinder
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EJBBinder
    loaded by primordial CL
    EJBBinder: binder is GOOD..
    EJBBinder: context set obj for IID_IGXEBBinder
    loading component...{a84f0507-a912-11cf-aa6c-524153480000}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.gds.GDSModule
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.gds.GDSModule
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.gds.GDSModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.gds.GDSModule
    loaded by primordial CL
    registered module... com.kivasoft.IGDSModule
    loading component...{c70f2c00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Classcom.kivasoft.bind.BinderBase
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Classcom.kivasoft.bind.BinderBase
    loaded by primordial CL
    loading component...{c70f2d00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBasefrom
    PCL cache
    loading component...{c70f1a00-abeb-11d0-b4e5-00a024e006be}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.principal.PrincipalModule
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.principal.PrincipalModule appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.principal.PrincipalModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class
    com.kivasoft.principal.PrincipalModule loaded by primordial CL
    registered module... com.kivasoft.IPrincipalModule
    loading component...{35069f7a-0a09-1406-8f1a-0800208055c0}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBasefrom
    PCL cache
    loading component...{e7d37500-23bf-11d1-b6c2-0060082beecf}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBasefrom
    PCL cache
    loading component...{e7d37540-23bf-11d1-b6c2-0060082beecf}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.bind.BinderBase
    com.kivasoft.engine.EngineClassLoader: Got com.kivasoft.bind.BinderBasefrom
    PCL cache
    loading component...{be5cfde0-cd9e-11d1-94aa-0060083a5082}
    getting threadLocal obj
    com.kivasoft.engine.EngineClassLoader: Enter ECL loadClass:
    com.kivasoft.eb.EBModule
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EBModule
    appears to be a core class
    com.kivasoft.engine.EngineClassLoader: Using primordial classloader toload
    com.kivasoft.eb.EBModule
    com.kivasoft.engine.EngineClassLoader: Entering
    loadClass_primordial(className)
    com.kivasoft.engine.EngineClassLoader: Class com.kivasoft.eb.EBModuleloaded
    by primordial CL
    registered module... com.kivasoft.IEBModule
    The current input file= testdb.xml
    About to start xml -> descriptor conversion process
    xmlToDescriptor- file name=testdb.xml
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/application_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application Client1.2//EN to
    uri=file://localhost/opt/iplanet/ias6/ias/APPS/application-client_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-app_2_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-jsptaglibrary_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//ENto
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/ejb-jar_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS J2EE Application Client
    1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASjava_client_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Web Application 1.0//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASWebApp_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans1.0//EN
    to uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASEjb_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Persistence Manager1.0//EN to
    uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASPersistence_manager_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Datasource 1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASDatasource_1_0.dtd
    servlet name = testdb
    !!! parseWebAppFromDOM() just put in setServlet name = testdb
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/application_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD J2EE Application Client1.2//EN to
    uri=file://localhost/opt/iplanet/ias6/ias/APPS/application-client_1_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-app_2_2.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN touri=
    file://localhost/opt/iplanet/ias6/ias/APPS/web-jsptaglibrary_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//ENto
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/ejb-jar_1_1.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS J2EE Application Client
    1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASjava_client_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Web Application 1.0//EN to
    uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASWebApp_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Enterprise JavaBeans1.0//EN
    to uri= file://localhost/opt/iplanet/ias6/ias/APPS/IASEjb_jar_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Persistence Manager1.0//EN to
    uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASPersistence_manager_1_0.dtd
    Set PubId= -//Sun Microsystems, Inc.//DTD iAS Datasource 1.0//EN to uri=
    file://localhost/opt/iplanet/ias6/ias/APPS/IASDatasource_1_0.dtd
    !!! handleIASServlet(): Get servlet name= testdb
    AppComponentDescriptor: com.netscape.server.deployment.WebAppDescriptor
    All EnvEntries name:
    All Ejb-refs:
    All Resource-refs:
    WebApp package name = testdb
    Enter setupPluginInfoInGDS()
    creating ServletPatternTrans entry, url= /testdb
    webapp ContextRoot= null
    Enter getAllServlets,registeredServletNames.size= 0
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Enter getAllServlets,registeredServletNames.size= 0
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Enter getAllServlets,registeredServletNames.size= 0
    [01/Nov/2001 16:00:04:5] info: GDS-007: finished a registry load
    --- now put Web-app component descrptor into GDS
    webAppName = testdb
    Enter getAllServlets,registeredServletNames.size= 0
    Enter getAllServlets,registeredServletNames.size= 0
    getClassDefGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getServletGDSKeyByGuid: return key: com.kivasoft.gds.GDSKey@540408
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getClassImpGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    Now do some verification step and regenrate the web-app.xml.out filefrom
    GDS data
    getWebAppGDSKeyByPackageName: name to match= testdb
    got key to webapp= testdb
    enter WebAppCompGDSUtil.getDescriptorFromGDSByKey()
    About to process the <servlet-mapping> element
    GDSvalue name= /System/StaticServlet
    GDSvalue val= StaticServlet
    GDSvalue name= /System/JSPRunnerSticky
    GDSvalue val= JSPRunnerSticky
    GDSvalue name= /System/JSPRunner
    GDSvalue val= JSPRunner
    GDSvalue name= /System/FormAuthServlet
    GDSvalue val= FormAuthServlet
    GDSvalue name= /System/BasicAuthServlet
    GDSvalue val= BasicAuthServlet
    GDSvalue name= /System/CertAuthServlet
    GDSvalue val= CertAuthServlet
    GDSvalue name= /System/SessionInvalidator
    GDSvalue val= SessionInvalidator
    GDSvalue name= /fortune/fortune
    GDSvalue val= FortuneServlet
    GDSvalue name= /web/StaticServlet
    GDSvalue val= StaticServlet
    GDSvalue name= /web/JSPRunnerSticky
    GDSvalue val= JSPRunnerSticky
    GDSvalue name= /web/JSPRunner
    GDSvalue val= JSPRunner
    GDSvalue name= /web/FormAuthServlet
    GDSvalue val= FormAuthServlet
    GDSvalue name= /web/BasicAuthServlet
    GDSvalue val= BasicAuthServlet
    GDSvalue name= /web/CertAuthServlet
    GDSvalue val= CertAuthServlet
    GDSvalue name= /web/SessionInvalidator
    GDSvalue val= SessionInvalidator
    GDSvalue name= /web/AdderAlias
    GDSvalue val= AdderServlet
    GDSvalue name= /testdb/testdb
    GDSvalue val= testdb
    getServletMappingFromGDS: url= /testdb, servlet= testdb
    About to process the context-param
    [01/Nov/2001 16:00:06:7] info: GDS-007: finished a registry load
    About to process the mime-mapping
    About to process the servlets
    GDSvalue name= testdb
    GDSvalue val= {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    GDSvalue name= testdb.jsp
    GDSvalue val= {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    The returned hashtable for servlets have: 2 entries
    About to process the servlet name= testdb.jsp
    About to process the servlet name= testdb
    About to process the tld
    The returned vector for taglib have: 0 entries
    Finished getting a wd from gd s!!!
    Now ready to write out WebApp xml file
    descriptorToXml: about to get all servlets
    Enter getAllServlets,registeredServletNames.size= 2
    DescriptorManager.getServletByGuidStr, ctx=
    com.kivasoft.context.Context@6ee36c
    Enter getServletFromGDS
    getClassDefGDSKeyByGuid: name to match=
    {eea893d3-d646-4f8e-8c6d-6f92a8563c46}
    BaseKey= com.kivasoft.gds.GDSKey@41cd1f
    getServletGDSKeyByGuid: return key: com.kivasoft.gds.GDSKey@76c74b
    load-on-startup value from GDS= 0
    number-of-singles value from GDS= 10
    DescriptorManager.getServletByGuidStr, ctx=
    com.kivasoft.context.Context@6ee36c
    write Xml to output file: web.xml.out
    Finished writing out j2ee xml file
    Enter getAllServlets,registeredServletNames.size= 2
    write Xml to output file: ias-web.xml.out
    Finished writing out IAS xml file
    Extracting JSPs from testdb.xml to /opt/iplanet/ias6/ias/APPS/
    Processing input WAR 1
    Processing input WARi 21 testdb.xml
    Encountered exception java.util.zip.ZipException processing input file
    testdb.xml
    <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    At what stage did this error shoot up ? Is it possible for you to
    send
    the
    application for me to check ?
    Regards
    Raj
    lu yanqiang wrote:
    Hi,
    I use the iAS 6.0SP1 in HP-UX and I use command to regist
    application,
    this error message is response by "webappreg", i use webappreg to
    regist
    my
    application,and i registed it success in windows.
    thanks
    Lu yanqiang
    "Raj" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    What is the version of app server on HP UX ? How did you
    deploy on
    the
    app
    server in HP UX using command line deployment or GUI tool ? Where
    are
    these
    errors shooting from, are these coming at the time of deployment
    or
    thrown
    at
    runtime ? What is the application type that you are trying to
    deploy
    ?, if
    possible send me the kxs and kjs log files please.
    Regards
    Raj
    lu yanqiang wrote:
    My application work fine in iAS SP3 for Win2000, but when I
    deployed
    it
    to
    HP-UX 11.0, It can not regist the application in HP-UX.
    can any onr help me, thanks
    Lu yanqiang

  • Error in deploying p6.ear on WebLogic: java.util.zip.ZipException: invalid entry CRC

    Hello,
    We're trying to install Primavera EPPM 8.3 and test it on our server but having troubles in deploying p6 application.
    We have successfully installed the following prerequisites:
    - WebLogic 11g
    - JDK1.7.0_45 and setting JAVA_HOME path=C:\Program Files\Java\jdk1.7.0_45 in enviornmental variables
    - Downloading wsdl4j-1.6.2.jar for web services
    - Running the setup.exe file (located in PEPPM path\Disk1\install\setup.exe
    - Successfully finished the setup and running the Configuration Wizard.
    - Successfully created the database using Microsoft SQL Server 2008 database
    - Successfully creating a new WebLogic domain.
    - We didn't install BI publisher nor any content repository ( would this affect running the primavera application? )
    - In the configuration wizard summary we can see everything is marked successfully except the "Start Web Logic" step it showed an error and a message indicating that we should start it manually ( however, the domain is successfully created ).
    Next, we run the startWebLogic.cmd file in our new created domain, then we run startNodeManager.cmd from WebLogic common/bin directory.
    We can access the WebLogic administration panel successfully but no "p6" application in the deployments.
    So, we click "install" then open the p6 directory and deploy it without errors.
    But when when starting the P6 server and then try to start p6 application, it failed with the following error message:
    java.util.zip.ZipException: invalid entry CRC (expected 0xa0a67af0 but got 0xef73b950)
    Can you please help us to solve this? Please note that every other deployment is running correctly except p6.

    The cause of errors was a dying Westen Digital drive, specially the 48G partition reserved only for $ORACLE_BASE (/dev/sdb3 mounted on /opt/oracle).
    A simple quick scan of unmounted partition (badblocks -v /dev/sdb3) reported more than thousand new bad blocks (compared to the last scan six months ago). Although I strongly believe, specially in the case of WDC drives, that the best utility to "repair" bad blocks is the one that opens a window and prints the message: "Go to the nearest shop and buy a new drive", I was very curious to prove my suspicion just on this drive. After zero-filling the partition with dd, then formatting it (mke2fs -cc) and mounting again, the 11g installation and database creation (on the same partition) successfully completed, performing fast and smoothly. To make sure it was not a casual event, I repeated the installation once again with full success. The database itself is working fine (by now). Well, the whole procedure took me more than four hours, but I'm pretty satisfied. I learned once again - stay away from Western Digital. As Oracle cannot rely on dying drive, my friend is going tomorrow to spend a 150+ euro on two 250G Seagate Barracudas and replace both WDC drives, even though the first drive seems to be healthy.
    In general there is no difference between loading correct data from good disk into bad memory and loading the incorrect data from dying disk into good memory. In both cases the pattern is damaged. For everyone who runs into the problem similar to this, and the cause cannot be easily determined, the rule of thumb must be:
    1. test memory and, if it shows any error, check sockets and test memory modules individually
    2. check disks for bad blocks regardless of the result of memory testing
    Therefore I consider your answer being generally correct.
    Regards
    NJ

  • Need help on how to handle zip & text/csv as a resposne payload from Concur RestWebservice

    Hi All,
    We are getting zip(if there are multiple files) and test/csv(single file) as a response payload from the concur rest API and need your help on how to handle in NWBPM and SAP PO.
    Zip response coming in response looks like below -
    PKÀ˜F7extract_attendee_detail_p0600908soav_20150424022159.txts� rt©1204Õ50Ñ52©1¨áåPKzà@ÆPKÀ˜F2extract_CES_SAE_v3_p0600908soav_20150424022148.txts� rt©1204Õ50Ñ52©1¨©1ãåPKå늟PKÀ˜Fzà
    Text/csv response looks like below -
    Extract|2015-24-40|20|0
    Need you help on how to handle the zip content response.
    Also need help on how to handle when text/csv response comes and when zip response comes.
    As per the scenario, there are 4 calls to be made and we are using NWBPM and in the last call the actual respons (text/csv or zip) will come.
    Please provide your inputs.
    Thanks
    Narayanareddy B

    Hi Aaron,
    Thanks for your reply.
    I tried with Payload zip bean and the java mapping as mentioned in the response mapping of OM.
    Payload zip bean - Zip  zip.mode  unzip
    I am getting the error below in the receiver rest channel -
    "Transmitting the message using connection JPR failed, due to: com.sap.aii.af.lib.mp.module.ModuleException: Zip: error occured during processing: java.util.zip.ZipException: invalid stored block lengths"
    Java Mapping - used the java mapping in the response of Operation mapping
    Here also i am seeing the same error in the channel log as it is synchronous step and the message got cancelled.
    "Transmitting the message using connection JPR failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error encountered while executing mapping: com.sap.aii.af.service.mapping.MappingException: Mapping failed in runtimeApplication mapping program com/equalize/xpi/esr/mapping/java/UnzipAndAttach throws a stream transformation exception: Exception: invalid stored block lengths"
    The below is the response i am seeing and is it proper zip response payload(any encryption) , kindly advise.
    PKâE�F:ws_extract_attendee_detail_p0600908soav_20150424083413.txts� rt©1204Õ50Ñ52©1¨áåPKzà@ÆPKâE�F5ws_extract_CES_SAE_v3_p0600908soav_20150424084014.txtíTß��@~oÒÿ�÷Fº»ìV}ëòCÏz Qljß8ÜöL�`N�ùão8�Ò«�´M�Ü@�awvçûfgÇùâϤå#Ttï0Ø�B�²·olÇ�£[4Ï](L�]«�ÑbÀôÁÒc�0ÀÏdAªÙТ¨Ìû�Êv¡�b¤eJA%��=Þ7Í>PÚ=í2��7ò[�¼¡=q/°¶�*ø)
    K|<`BgÉÔºÜWs[§J�&Ñ:Ìá:´�ç«�RÐv�ÚÅAD'\�ÁtR²*DP3gî:B@JëhU�Ò'¬�ùQ\�È\D{·O×±JS\ï�-ò�¸�Þ²êó�{Å¡2®â,MmÉù XAzßüBn&®Sl-§�l¶A�×ú½³ÙFI®0¿©Ú¯¤�oT�iV²RÀJ��¼«`õ»�í Ûéwa#�àpY�««óq)U°JaøÁA�ûì>Ù³üHåÒe¾�7��Ð/§£u°Nzã÷ç4×·èãþ�¾}õ0ÙµYÄ�+J��eX\�E±ïsR%®yÜÕðsªáÚ$qÚÎÇ�Û$^%1¸AF*ý¶VÑêxÏZÏ¢U½T~Ñ®ØkW5ç×®õ¿w5¬zò:oN»�ô���íø÷úÛÙ=¬å�[ôÚ�þmczPKhÏ��i PKâE�Fzà@Æ:ws_extract_attendee_detail_p0600908soav_20150424083413.txtPKâE�FhÏ��i 5�ws_extract_CES_SAE_v3_p0600908soav_20150424084014.txtPKËö
    Thanks
    Narayanareddy B

Maybe you are looking for

  • CR2 generic icon in Adobe Bridge instead of a thumbnail

    Hi, Since buying Lightroom3 I find that I can only see a CR2 generic icon in Adobe Bridge instead of a thumbnail when I browse the folder containing my RAW files. Loading Lightroom3 may just be a coincidence. I am using Canon cameras up to 5Dmk2 and

  • How do download Adobe Flash Player without error parsing voucher problem?

    Hello, I'm trying to download and install Adobe Flash Player. I uninstalled all versions of Flash Player. I have the Adobe Download manager still loaded and the Adobe Photo Shop and the Adobe Reader still loaded. I use Mozilla Firefox version 3.6.8.

  • Costing Sheet in Sales Order

    Hi All, Can you please inform me why do we put the costing sheets in the Sales order under the Account Assignment TAB, How does this Cost Sheet affect the Cost of the Product, Please inform the Sales order costing cycle if possible... Regards Ashwin

  • Starting adobe muse, but can't

    Hi all, I have downloaded trial version of Adobe Muse and just wanted to work along with Katie's tutorial. First problem: My Adobe Muse keeps telling me there is a new update which I already installed. I know there is a topic about this with an expla

  • Problem using updateReportDefinition on ReportService

    Hello Folks. I'm calliing the web service from Java. When I call updateReportDefinition on an existing report i get the value "true" as the return, but it does not appear to update the values, except for the value for "setDiagnostics()/isDiagnostics(