Error in JavaHelp

Hello:
I have JWS app I've been working on for a long time. I just added JavaHelp to it. I got it all working nicely on my local machine. When I went to deploy in JWS, I ran into a permission problem. JavaHelp is included as an extension, and I've set <security> to <all-permissions/> in both JNLPs, but I still get the following exception:
Parsing failed for null
Exception caught while parsing nulljava.security.AccessControlException: access denied (java.util.PropertyPermission user.home read)
java.lang.NullPointerException
  at javax.help.plaf.basic.BasicFavoritesNavigatorUI.reloadData(BasicFavoritesNavigatorUI.java:297)
  at javax.help.plaf.basic.BasicFavoritesNavigatorUI.installUI(BasicFavoritesNavigatorUI.java:235)
  at javax.swing.JComponent.setUI(JComponent.java:647)
  at javax.help.JHelpNavigator.setUI(JHelpNavigator.java:257)
  at javax.help.JHelpNavigator.updateUI(JHelpNavigator.java:276)
  at javax.help.JHelpNavigator.<init>(JHelpNavigator.java:105)
  at javax.help.JHelpFavoritesNavigator.<init>(JHelpFavoritesNavigator.java:62)
     ... more omitted
Here are my JNLP files:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+"
codebase="http://www.mydomain.com/"
href="mydomain.jnlp"
version="0.14">
  <information>
    <title>My Client</title>
    <vendor>MyCompany, LLC</vendor>
    <description>MyCompany rules.</description>
    <homepage href="http://mydomain.com"/>
    <offline-allowed/>
  </information>
  <resources>
    <jar href="mydomain.jar"/>
    <j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
    <extension name="Java Help" href="lib/javahelp.jnlp"/>
  </resources>
  <application-desc main-class="com.mydomain.core.Main"/>
  <security>
    <all-permissions/>
  </security>
</jnlp>
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+"
codebase="http://www.digibunker.com/"
href="lib/javahelp.jnlp"
version="2.0">
  <information>
    <title>Java Help</title>
    <vendor>Sun Microsystems</vendor>
    <description>Java Help System.</description>
    <homepage href="http://java.sun.com/javase/technologies/desktop/javahelp"/>
    <offline-allowed/>
  </information>
  <resources>
    <jar href="lib/jh.jar" download="lazy" part="JavaHelp" />
    <jar href="lib/jhall.jar" download="lazy" part="JavaHelp" />
    <jar href="lib/jhbasic.jar" download="lazy" part="JavaHelp" />
    <jar href="lib/jsearch.jar" download="lazy" part="JavaHelp" />
    <j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
  </resources>
  <component-desc>
  <security>
    <all-permissions/>
  </security>
</jnlp>
Any and all help welcomed.
Thanks, Dan
Edited by: dlamet on Jan 8, 2010 5:40 PM

AndrewThompson64
Thanks for the quick response. I downloaded your app (very good idea BTW!) and ran it against my JNLP file. It reported a number of issues to me, but I don't understand them. I subsequently located the JNLP spec 6.0.10 here and went through it carefully. (I ended up discovering some nice features I added to my file.) I ended up with the following file, but the errors seem to be the same. The output is below the JNLP.
Is it possible that your app is analyzing against an outdated version of the JNLP spec? It's all that I can figure. Perhaps you could explain just one or two of the node errors to get me started. Thanks again! Dan
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+"
codebase="http://www.digibunker.com/"
href="digibunker.jnlp"
version="0.14">
  <information>
    <title>DigiBunker Client</title>
    <vendor>DigiBunker, LLC</vendor>
    <homepage href="http://www.digibunker.com"/>
    <description kind="tooltip">Automated media back up.</description>
    <description kind="one-line">The DigiBunker client makes protecting your media files easy.</description>
    <icon href="http://www.digibunker.com/images/icon-32.png"
version="1.0"
width="32"
height="32"
size="6243" />
    <offline-allowed/>
    <shortcut>
      <desktop />
      <menu />
    </shortcut>
  </information>
  <security>
    <all-permissions/>
  </security>
  <resources>
    <j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
    <jar href="digibunker.jar" main="true" />
    <extension name="Java Help" version="2.0" href="lib/javahelp.jnlp">
      <ext-download download="lazy" />
    </extension>
  </resources>
  <application-desc main-class="com.judedavid.eros.core.Main"/>
</jnlp>
Content type application/xml does not equal expected type of application/x-java-jnlp-file
cvc-complex-type.2.4.a: Invalid content was found starting with element 'homepage'. One of '{description, icon, offline-allowed, shortcut, association, related-content}' is expected.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'j2se'. One of '{jar, nativelib, extension, property, package}' is expected.
cvc-complex-type.2.4.d: Invalid content was found starting with element 'security'. No child element is expected at this point.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'homepage'. One of '{description, icon, offline-allowed, shortcut, association, related-content}' is expected.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'j2se'. One of '{jar, nativelib, extension, property, package}' is expected.
cvc-complex-type.2.4.d: Invalid content was found starting with element 'security'. No child element is expected at this point.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'homepage'. One of '{description, icon, offline-allowed, shortcut, association, related-content}' is expected.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'homepage'. One of '{description, icon, offline-allowed, shortcut, association, related-content}' is expected.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'j2se'. One of '{jar, nativelib, extension, property, package}' is expected.
cvc-complex-type.2.4.a: Invalid content was found starting with element 'j2se'. One of '{jar, nativelib, extension, property, package}' is expected.
cvc-complex-type.2.4.d: Invalid content was found starting with element 'security'. No child element is expected at this point.
cvc-complex-type.2.4.d: Invalid content was found starting with element 'security'. No child element is expected at this point.
XML encoding not known, but declared as utf-8
Codebase + href 'http://www.digibunker.com/digibunker.jnlp' is not equal to actual location of 'file:/Y:/Moonlighting/JudeDavid/site/athena/public/digibunker.jnlp'.
Downloads can be optimized by specifying a resource size for 'digibunker.jar'.
The resource download at digibunker.jar can be optimized by removing the (default) value of download='eager'.
The resource download at digibunker.jar can be optimized by removing the (default) value of main='false'.
It might be possible to optimize the start-up of the app. by specifying download='lazy' for the digibunker.jar resource.
Lazy downloads might not work as expected for digibunker.jar unless the download 'part' is specified.
Resource type com of resource http://digibunker.com is not one of the allowable types of jar.
Report for http://www.digibunker.com/lib/javahelp.jnlp

Similar Messages

  • Full-text Search in RoboHelp

    I have downloaded JavaHelp using Sun Download Manager (download and extract JavaHelp) to activate Full-text Search in RoboHelp. But, while generating Help in RoboHelp, I get an error that JavaHelp is not installed. I am not able to understand how to Install JavaHelp. Please help.

    That's the way it worked in X4 and later versions up but not including RH8. RH8 includes phrase searching in webhelp.
    See www.grainge.org for RoboHelp and Authoring tips

  • JavaHelp error  in application server

    I have an application web-based, this is a system of help (javaHelp). Build an archive .war and I put in the Tomcat container, all fine. But when I put the same archive in a application server (JBoss) it generated error:
    org.apache.jasper.JasperException: Could not parse
              Got an IOException (null)
               Parsing failed for null
             at javax.help.tagext.ValidateTag.createHelpSet(ValidateTag.java:147)
             at javax.help.tagext.ValidateTag.validateHelpSet(ValidateTag.java:115)
             at javax.help.tagext.ValidateTag.doStartTag(ValidateTag.java:74)please help me with this problem!!

    Is this Oracle Application Server 10g Release 3 (10.1.3.1.0) Release Note helpful.
    3.1.3 Error Messages after Setting VIRTUAL_HOST_NAME
    http://download-uk.oracle.com/docs/cd/B31018_01/relnotes.1013/relnotes/install.htm#CBHHABBA
    -- Don

  • Why does this keep giving a parse error when trying to use JavaHelp

    I'm trying to get JavaHelp to integrate into my application, but when I call the code below I get the following error;
    javax.help.HelpSetException: Could not parse
    Got an IOException (null)
    Parsing failed for nullthe error is occuring at the line indicated;
         HelpSet helpSet;
         HelpBroker helpBroker;
         try
         URL url = new URL("file", "", -1, "file://C:/jh1.1.3/demos/hsjar/idehelp.jar");
         ClassLoader loader = new URLClassLoader(new URL[]{url});
         URL helpUrl = null;
         helpUrl = HelpSet.findHelpSet(loader, "IdeHelp.hs");
         helpSet = new HelpSet(loader, helpUrl);    // *** error here ***
         helpBroker = helpSet.createHelpBroker();
         helpBroker.enableHelpKey(rootPane, "top", helpSet);
         CSH.setHelpIDString(menuItem, "Help");
         helpBroker.enableHelpOnButton(menuItem, "Help", helpSet);
         catch (Exception ex)
         ex.printStackTrace();
         }helpURL never seems to take a value, always staying at null. Can anyone see what I'm doing wrong?
    Thanks

    Got it sorted. I had to create a CLASSPATH to the jar and then the hs reference worked fine. :D

  • One error with using JavaHelp

    Hi, everyboy,
    I use JavaHelp1.1.3 in my own application SEE.jar. when I run it, I got the following errors:
    java.lang.NoClassDefFoundError: javax/help/HelpSet
    at MDSEval.MDSEvalFrame.jbInit(MDSEvalFrame.java:493)
    at MDSEval.MDSEvalFrame.<init>(MDSEvalFrame.java:459)
    at MDSEval.MDSEvalMain.showSEE(MDSEvalMain.java:88)
    at MDSEval.MDSEvalMain$2.run(MDSEvalMain.java:44)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    I have set the CLASSPATH to include the path of JavaHelp. So I wonder what is wrong?
    Thanks for any suggestions.

    Do you add current direcory in your classpath?
    .;

  • JavaHelp Error 126

    Hi,
    I see lots of requests about the JavaHelp Windows Error 126 but no replies. I have Forte 4 installed with the bundled SDK but cannot open the downloaded exe for JavaHelp 1.1:
    "LAUNCH ANYWHERE ERROR
    (Windows Error 126 Occured while loading the Java VM)
    Try re-installing the Java VM or change the Java VM used by the application"
    What do I do now?
    Thanks,
    Bill

    Never mind. Sheesh!, doesn't anybody write help files for their programs anymore? I found a very old and obscure post from somebody else with the same problem. He didn't get any replies either, but was nice enough to post the (obscure) availability of a .zip version of JavaHelp 1.1.
    Thanks anyway...
    Bill

  • Error in installing SOA Composites step in Oracle GRC8.6.3 Installation

    Hi all,
    i am installing oracle grc8.6.3 in windows 64 bit.
    i have installed database,rcu,weblogic,soa successfully.in next step i have to install SOA Composite.
    when i am running the wlst from oracle_soa1/common/bin and passing the parameter in the wls:/offline i am getting following error
    i have set JAVA_HOME,WL_HOME,SOA_HOME correctly
    please help me
    wls:/offline> sca_deployComposite("http://localhost:8001","
    D:\oracle\dist\composites1.zip",overwrite=true,user="weblogic",password="Newuser")
    serverURL = http://localhost:8001
    sarLocation = D:\oracle\dist\composites1.zip
    partition = default
    overwrite = 1
    user = weblogic
    forceDefault = 1
    configplan = None
    keepInstancesOnRedeploy = 0
    timeout = -1
    set user and password...
    Processing sar=D:\oracle\dist\composites1.zip
    created temp dir =C:\Users\A-EXT-~4\AppData\Local\Temp\deploy_client_24c31e3a-db
    09-43dd-92c7-cea134ccd56a
    Adding sar file - C:\Users\A-EXT-~4\AppData\Local\Temp\deploy_client_24c31e3a-db
    09-43dd-92c7-cea134ccd56a\sca_EmailComposite_rev2.0.jar
    INFO: Creating HTTP connection to host:sfre001t.statoilfuelretail.com, port:8001
    INFO: Received HTTP response from the server, response code=500
    ---->Response code=500, error:There was an error deploying the composite on soa_
    server1: Deployment Failed: Error occurred during deployment of component: Email
    Process to service engine: implementation.bpel, for composite: EmailComposite: O
    RABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file "D:\oracle\app\product\
    OFM\domain\user_projects\domains\grc_domain\servers\soa_server1\dc\soa_d7580aa1-
    6af4-4360-b47a-ce198c3d1d89"; the exception reported is: java.lang.NoClassDefFou
    ndError: Could not initialize class com.collaxa.cube.util.JavaHelper
    This error contained an exception thrown by the underlying deployment module.
    Verify the exception trace in the log (with logging level set to debug mode).
    thanks
    Edited by: 902535 on May 2, 2012 10:59 AM

    I think you may have gotten confused with the installation guide.
    If you're installing GRC, you should not be installing SOA or other components. There are 2 applications you can install from that distribution, GRCC or EGRCM. EGRCM is the one that refers to SOA's if needed, so even then you shouldn't need to install it for testing out the product.
    I hope that helps!

  • Swing application with JavaHelp crashes outside Netbeans IDE.

    Hi guys I have developed a small swing application in Netbeans IDE. I used the following code inside the IDE for JH.
    public void createHelp()
           try {
                   URL hsURL = new URL("jar:file:eDictionaryHelp.jar!/eDictionaryHelp/eDictionary.hs");
                   hs = new HelpSet(null, hsURL);
           catch (Exception ee)
            // Say what the exception really is
            System.out.println( "HelpSet " + ee.getMessage());
            System.out.println("HelpSet "+ helpHS +" not found");
            JOptionPane.showMessageDialog(new JFrame(), ee.getMessage(), "Error", ERROR_MESSAGE);
            hb = hs.createHelpBroker();
       }When I run the program inside the IDE and and click on the corresponding MenuItem.. JavaHelp comes up as it should! No problems with that.
    But when I build the project and tried to run it from the .jar file in the PROJECT_HOME/dist/ the swing got displayed till this function was called. and then it simply crashed.
    Investigating further and commenting out one line at a time and compiling I found out that whenever the hs = new HelpSet(null, hsURL); is encountered, the app crashes (it doesnt throw any error).
    But as I said this is not the case when i run and compile inside the IDE. I only get this problem when running the app from outside the IDE.
    I have tried all kinds of combinations of the URL .. for eg ( I am aware of Bug 4149782)
    ClassLoader cl = this.getClass().getClassLoader();
    try {
                   URL hsURL = HelpSet.findHelpSet(cl, helpHS);
    .What can be the problem guys? Any suggestions?
    Thanks!

    Anyone has an answer on this?
    I am facing the same problem.. I am using NetBeans 5.5
    arijit_datta, do u have a solution for this problem already?
    Thanks,
    SK

  • Out of memory error on startup

    I have been running JSC EA2A for a while.
    Today I started getting the following error message when attempting to start the application. I have rebooted and tried to restart the IDE several times with no success - always get the same message.
    I am running a Pentium 4 2.5 Ghz with 1Gb ram.
    Anyone else experience this problem?
    Do I need to reinstall??
    Error message follows:
    A java.lang.OutOfMemoryError exception has occurred.
    Please report this at http://www.netbeans.org/issues.html,
    including a copy of your messages.log file as an attachment.
    The messages.log file is located in your C:\Documents and Settings\Administrator\.Creator\2_0ea2\var\log folder.

    Here is the last chunk of my log file. I did the reinstall from a copy I had
    on hand. I will download a new version (but I don't think it is different from what I have) for my next install.
    Log Session: Friday, December 30, 2005 2:24:39 AM CST
    System Info: Product Version = Java Studio Creator (Build 050907_5)
    Operating System = Windows XP version 5.1 running on x86
    Java; VM; Vendor = 1.5.0_04; Java HotSpot(TM) Client VM 1.5.0_04-b05; Sun Microsystems Inc.
    Java Home = C:\Program Files\Sun\Creator2ea2\java\jre
    System Locale; Encod. = en_US (rave); Cp1252
    Home Dir; Current Dir = C:\Documents and Settings\Administrator; C:\Program Files\Sun\Creator2ea2\bin
    IDE Install; User Dir = C:\Program Files\Sun\Creator2ea2\platform5; C:\Documents and Settings\Administrator\.Creator\2_0ea2
    CLASSPATH = C:\Program Files\Sun\Creator2ea2\platform5\lib\boot.jar;C:\Program Files\Sun\Creator2ea2\java\lib\dt.jar;C:\Program Files\Sun\Creator2ea2\java\lib\tools.jar
    Boot & ext classpath = C:\Program Files\Sun\Creator2ea2\patches\6311051.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\rt.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\i18n.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\sunrsasign.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\jsse.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\jce.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\charsets.jar;C:\Program Files\Sun\Creator2ea2\java\jre\classes;C:\Program Files\Sun\Creator2ea2\java\jre\lib\ext\dnsns.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\ext\localedata.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Sun\Creator2ea2\java\jre\lib\ext\sunpkcs11.jar
    Dynamic classpath = C:\Program Files\Sun\Creator2ea2\platform5\core\core.jar;C:\Program Files\Sun\Creator2ea2\platform5\core\openide-loaders.jar;C:\Program Files\Sun\Creator2ea2\platform5\core\openide.jar;C:\Program Files\Sun\Creator2ea2\platform5\core\org-netbeans-swing-plaf.jar;C:\Program Files\Sun\Creator2ea2\platform5\core\updater.jar;C:\Program Files\Sun\Creator2ea2\platform5\core\locale\updater_rave.jar;C:\Program Files\Sun\Creator2ea2\nb4.1\core\org-netbeans-upgrader.jar;C:\Program Files\Sun\Creator2ea2\ide5\core\org-netbeans-modules-utilities-cli.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\com-sun-rave-extension-ide-launcher-upgrade.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\jgraph.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\naming.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\pbclient.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\pbtools.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\rowset.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\smbase.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\smdb2.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\sminformix.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\smoracle.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\smresource.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\smspy.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\smsqlserver.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\smsybase.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\smutil.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\sql.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\sqlx.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\locale\core_rave.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\locale\openide-loaders_rave.jar;C:\Program Files\Sun\Creator2ea2\rave2.0\core\locale\openide_rave.jar
    [org.netbeans.core.modules #4] Warning: Class-Path value docs/org-netbeans-modules-web-monitor.jar from C:\Program Files\Sun\Creator2ea2\enterprise1\modules\org-netbeans-modules-web-monitor.jar cannot be found at C:\Program Files\Sun\Creator2ea2\enterprise1\modules\docs\org-netbeans-modules-web-monitor.jar
    You are trying to access file: jndi.properties from the default package.
    Please see http://www.netbeans.org/download/dev/javadoc/OpenAPIs/org/openide/doc-files/classpath.html#default_package
    Turning on modules:
         org.openide/1 [5.9.1 050907_5]
         org.openide.loaders [5.2.1 050907_5]
         org.openide.io [1.6.1 050907_5]
         org.openide.execution [1.5.1 050907_5]
         org.netbeans.api.java/1 [1.7.1 050907_5]
         org.openide.src [1.5.1 050907_5]
         com.sun.rave.extension.openide/1 [1.0 050907_5]
         javax.jmi.reflect/1 [1.4.1 050907_5]
         javax.jmi.model/1 [1.4.1 050907_5]
         org.netbeans.api.mdr/1 [1.1.1 050907_5]
         org.netbeans.jmi.javamodel/1 [1.13.1 050907_5]
         org.netbeans.modules.jmiutils/1 [1.1.1 release41 050907_5]
         org.netbeans.modules.mdr/1 [1.1.1 release41 050907_5]
         org.netbeans.modules.queries/1 [1.4.1 050907_5]
         org.netbeans.modules.projectapi/1 [1.3.1 050907_5]
         org.netbeans.modules.classfile/1 [1.14.1 050907_5]
         org.netbeans.modules.javacore/1 [1.5.1 050907_5]
         org.netbeans.bootstrap/1 [1.0.1 050907_5]
         org.netbeans.swing.plaf [1.2.1 050907_5]
         org.netbeans.core/1 [1.27.1 050907_5]
         org.netbeans.modules.java/1 [1.20.1 1.0.0 050907_5]
         com.sun.rave.extension.java/1 [1.0 050907_5]
         org.netbeans.modules.java.platform/1 [1.3.1 050907_5]
         com.sun.rave.extension.java.platform/1 [1.0 050907_5]
         com.sun.rave.branding.openide/1 [1.0 050907_5]
         org.netbeans.modules.servletapi/1 [1.6.1 050907_5]
         org.netbeans.modules.httpserver/2 [2.1.1 release41 050907_5]
         org.netbeans.modules.schema2beans/1 [1.11.1 050907_5]
         org.netbeans.modules.web.monitor/1 [1.12.1 050907_5]
         org.netbeans.api.debugger/1 [1.3.1 050907_5]
         org.netbeans.modules.settings/1 [1.7.1 050907_5]
         org.netbeans.swing.tabcontrol [1.3.1 050907_5]
         org.netbeans.core.windows/2 [2.4.1 050907_5]
         org.netbeans.core.ui/1 [1.6.1 050907_5]
         org.openidex.util/3 [3.6.1 050907_5]
         org.netbeans.api.xml/1 [1.8 3.999.4 050907_5]
         org.netbeans.core.output2/1 [1.3.1 050907_5]
         org.netbeans.modules.xml.core/2 [1.7 3.999.4 050907_5]
         org.netbeans.modules.xml.catalog/2 [1.6 3.999.4 050907_5]
         org.netbeans.modules.masterfs/1 [1.4.1 050907_5]
         org.netbeans.modules.projectuiapi/1 [1.5.4.0.0 4.0.0 050907_5]
         org.netbeans.core.execution/1 [1.6.1 050907_5]
         org.netbeans.modules.projectui [1.3.4.0.0 050907_5]
         org.netbeans.spi.viewmodel/2 [1.4.1 050907_5]
         org.netbeans.api.debugger.jpda/1 [1.3.1 050907_5]
         org.netbeans.modules.j2eeapis/1 [1.3.1 050907_5]
         org.netbeans.modules.project.libraries/1 [1.10.1 050907_5]
         org.netbeans.libs.j2eeeditor/1 [1.4.1 050907_5]
         org.netbeans.modules.j2eeserver/3 [1.6.1 050907_5]
         com.sun.rave.api.portlet.dd/1 [1.0 1.0]
         org.netbeans.modules.project.ant/1 [1.6.1 050907_5]
         com.sun.rave.api.jsf.project/1 [1.0 050907_5]
         org.apache.tools.ant.module/3 [3.17.1 050907_5]
         org.netbeans.modules.java.project/1 [1.3.1 050907_5]
         org.netbeans.modules.javahelp/1 [2.5.1 050907_5]
         org.netbeans.modules.refactoring/1 [1.1.1 1.0 050907_5]
         com.sun.rave.extension.refactoring/1 [1.0 050907_5]
         org.netbeans.modules.editor.util/1 [1.4.1 050907_5]
         org.netbeans.modules.editor.fold/1 [1.2.1 050907_5]
         org.netbeans.modules.editor.lib/1 [1.3.1 0.1 050907_5]
         org.netbeans.modules.editor/3 [1.19.1 050907_5]
         com.sun.rave.branding.editor/1 [1.0 050907_5]
         org.netbeans.libs.commons_logging/1 [1.0.1 1.0.4 050907_5]
         org.netbeans.modules.servletapi24/1 [2.3.1 2.3.1 050907_5]
         org.netbeans.libs.xerces/1 [1.5.1 2.6.2]
         org.netbeans.modules.web.jspparser/2 [2.2.1 050907_5]
         org.netbeans.modules.ant.browsetask [1.8.1 050907_5]
         org.netbeans.api.web.webmodule [1.2.1 050907_5]
         org.netbeans.modules.j2ee.dd/1 [1.3.1 1.0 050907_5]
         org.netbeans.modules.j2ee.dd.webservice [1.0.1 050907_5]
         org.netbeans.modules.websvc.websvcapi [1.0.1 050907_5]
         org.netbeans.modules.j2ee.api.ejbmodule [1.0.1 050907_5]
         org.netbeans.modules.junit/2 [2.14.1 050907_5]
         org.netbeans.modules.j2ee.common/1 [1.0.1 1.0.1 050907_5]
         org.netbeans.modules.servletapi23/1 [1.7.1 050907_5]
         org.netbeans.core.multiview/1 [1.5.1 050907_5]
         org.netbeans.modules.xml.multiview/1 [1.0 1.0-release41 050907_5]
         org.netbeans.modules.editor.plain.lib/1 [1.0.1 050907_5]
         org.netbeans.modules.editor.plain/1 [1.0.1 050907_5]
         org.netbeans.modules.xml.text/2 [1.7 3.999.4 050907_5]
         org.netbeans.modules.html.editor.lib/1 [1.0.1 050907_5]
         org.netbeans.modules.html.editor/1 [1.0.1 050907_5]
         org.netbeans.modules.java.editor.lib/1 [1.0.1 050907_5]
         org.netbeans.modules.java.editor/1 [1.0.1 050907_5]
         org.netbeans.modules.html/1 [1.15.1 050907_5]
         org.netbeans.modules.web.core.syntax/1 [1.17.1 050907_5]
         org.netbeans.modules.web.core/1 [1.20.1 release41 050907_5]
         org.netbeans.modules.web.project [1.4.1 1.1.1.1 050907_5]
         com.sun.rave.branding.web.project/1 [1.0 050907_5]
         com.sun.rave.extension.ide.launcher.upgrade [4.1 050907_5]
         com.sun.rave.servernav/1 [1.1 050907_5]
         org.netbeans.modules.beans/1 [1.14.1 050907_5]
         com.sun.rave.extension.beans/1 [1.0 050907_5]
         com.sun.rave.designtime/1 [1.0.0 050907_5]
         com.sun.rave.api.designer/1 [1.0 050907_5]
         com.sun.rave.jsfsupport/1 [1.0.5 050907_5]
         com.sun.rave.api.insync/1 [1.0 050907_5]
         org.apache.batik/1 [1.5 1.5]
         com.sun.rave.css/1 [1.0 050907_5]
         com.sun.rave.insync/1 [1.0.5 050907_5]
         org.netbeans.modules.diff/1 [1.10.1 promotionE 050907_5]
         com.sun.rave.dataprovider/1 [0.6 0.6]
         com.sun.rave.jsfmetadata/1 [1.0.5 050907_5]
         com.sun.rave.toolbox/1 [1.0.4 050907_5]
         com.sun.rave.designer/1 [1.0.5 050907_5]
         com.sun.rave.navigation/1 [1.0.5 050907_5]
         com.sun.rave.errorhandler.server/1 [0.2 050907_5]
         org.netbeans.modules.web.jstl11/1 [2.3.1 2.3.1 050907_5]
         org.netbeans.core.ide/1 [1.6.1 050907_5]
         com.sun.rave.extension.core.ide/1 [1.0 050907_5]
         org.netbeans.modules.debugger.jpda/2 [1.13.1 050907_5]
         org.netbeans.spi.debugger.ui/1 [2.5.1 050907_5]
         org.netbeans.modules.debugger.jpda.ui/1 [1.2.1 050907_5]
         com.sun.rave.extension.debuggerjpda.ui/1 [1.0 050907_5]
         com.sun.rave.extension.xml.catalog/1 [1.0 050907_5]
         com.sun.rave.ejbsupport/1 [1.0 050907_5]
         com.sun.rave.ejb/1 [0.1 050907_5]
         com.sun.rave.branding.web.jspsyntax/1 [1.0 050907_5]
         com.sun.rave.extension.core/1 [1.0 050907_5]
         com.sun.rave.welcome/1 [1.0 050907_5]
         org.netbeans.modules.properties/1 [1.14.1 050907_5]
         com.sun.rave.jwsdpsupport/1 [1.1 050907_5]
         com.sun.rave.websvc/1 [1.0.5 050907_5]
         com.sun.rave.branding.core/1 [1.0 050907_5]
         com.sun.rave.dataconnectivity/1 [1.0.4 050907_5]
         org.netbeans.modules.vcscore/1 [1.14.1 promotionE 050907_5]
         com.sun.rave.branding.vcscore/1 [1.0 050907_5]
         org.netbeans.modules.vcs.advanced/1 [1.12.1 050907_5]
         org.netbeans.lib.cvsclient/1 [1.11.1 050907_5]
         org.netbeans.modules.vcs.profiles.cvsprofiles/1 [1.6.1 050907_5]
         org.netbeans.upgrader [4.2.1 050907_5]
         com.sun.rave.extension.projects.projectui/1 [1.0 050907_5]
         org.netbeans.modules.navigator/2 [4.1.1 promoe 050907_5]
         com.sun.rave.extension.objectbrowser.navigator/1 [1.0 050907_5]
         com.sun.rave.branding.beans/1 [1.0 050907_5]
         com.sun.rave.extension.core.windows/1 [1.0 050907_5]
         com.sun.rave.extension.html/1 [1.0 050907_5]
         org.netbeans.tasklistapi/1 [1.16.6 6 050907_5]
         org.netbeans.modules.tasklist.core/2 [1.33.615 15 050907_5]
         org.netbeans.modules.suggestions_framework/2 [1.11.6158 8 050907_5]
         org.netbeans.modules.tasklist.docscan/2 [1.19.61584 4 050907_5]
         com.sun.rave.extension.tasklist.docscan/1 [1.0 050907_5]
         com.sun.rave.modules.jsf.examples/1 [1.0 050907_5]
         com.sun.rave.project.jsfportlet/1 [1.0 1.0]
         org.netbeans.modules.ant.freeform [1.5.1 050907_5]
         org.netbeans.modules.java.freeform [1.0.1 050907_5]
         org.netbeans.modules.web.freeform [1.0.1 050907_5]
         org.netbeans.modules.image/1 [1.14.1 050907_5]
         com.sun.rave.jsfcl/1 [1.1.0 050907_5]
         com.sun.rave.project.migration/1 [1.0 1.0]
         com.sun.rave.extension.core.multiview/1 [1.0 050907_5]
         com.sun.rave.extension.vcscore/1 [1.0 050907_5]
         com.sun.rave.extension.java.editor/1 [1.0 050907_5]
         com.sun.rave.extension.web.freeform/1 [1.0 050907_5]
         org.netbeans.modules.autoupdate/1 [2.12.1 050907_5]
         com.sun.rave.extension.debuggercore/1 [1.0 050907_5]
         org.netbeans.modules.utilities/1 [1.18.1 050907_5]
         com.sun.rave.extension.utilities/1 [1.0 050907_5]
         com.sun.rave.branding.tasklist.docscan/1 [1.0 050907_5]
         com.sun.rave.branding.xml.text/1 [1.0 050907_5]
         org.netbeans.modules.j2ee.sun.dd/1 [1.2 1.0]
         org.netbeans.modules.j2ee.sun.ide/1 [2.1.1 050907_5]
         com.sun.rave.branding.xml.catalog/1 [1.0 050907_5]
         com.sun.rave.branding.xml.core/1 [1.0 050907_5]
         com.sun.rave.licensemgr/1 [1.3 050907_5]
         com.sun.rave.extension.autoupdate/1 [1.0 050907_5]
         com.sun.rave.portlet.container/1 [1.0 1.0]
         com.sun.rave.portlet.container.ant/1 [1.0 1.0]
         org.netbeans.modules.vcscore.javacorebridge/1 [1.0.1 050907_5]
         com.sun.rave.extension.api.xml/1 [1.0 050907_5]
         com.sun.rave.extension.editor/1 [1.0 050907_5]
         org.netbeans.modules.clazz/1 [1.16.1 050907_5]
         org.netbeans.modules.javanavigation/1 [4.1.1 050907_5]
         org.netbeans.modules.j2ee.ant [1.3.1 050907_5]
         org.netbeans.modules.ant.grammar/1 [1.10 050907_5]
         com.sun.rave.branding.html/1 [1.0 050907_5]
         org.netbeans.modules.debugger.jpda.ant [1.4.1 050907_5]
         org.netbeans.modules.j2ee.sun.ws61/1 [1.0 050907_5]
         com.sun.rave.extension.core.javahelp/1 [1.0 050907_5]
         org.netbeans.modules.properties.syntax/1 [1.14.1 050907_5]
         com.sun.rave.extension.core.execution/1 [1.0 050907_5]
         com.sun.rave.branding.openide.loaders/1 [1.0 050907_5]
         com.sun.rave.extension.core.output2/1 [1.0 050907_5]
         com.sun.rave.extension.vcsgeneric/1 [1.0 050907_5]
         org.netbeans.modules.javadoc/1 [1.14.1 050907_5]
         com.sun.rave.extension.javadoc/1 [1.0 050907_5]
         com.sun.rave.branding.core.windows/1 [1.0 050907_5]
         com.sun.rave.ravehelp/1 [1.0.3 050907_5]
         com.sun.rave.branding.projects.projectui/1 [1.0 050907_5]
         com.sun.rave.extension.monitor/1 [1.0 050907_5]
         org.netbeans.modules.utilities.project/1 [1.2.1 050907_5]
         com.sun.rave.extension.utilities.project/1 [1.0 050907_5]
         com.sun.rave.branding.image/1 [1.0 050907_5]
         com.sun.rave.branding.java/1 [1.0 050907_5]
         com.sun.rave.extension.web.core/1 [1.0 050907_5]
         com.sun.rave.branding.openidex/1 [1.0 050907_5]
         com.sun.rave.branding.utilities/1 [1.0 050907_5]
         com.sun.rave.extension.web.project/1 [1.0 050907_5]
         org.netbeans.modules.vcs.profiles.vss/1 [1.6.1 050907_5]
         com.sun.rave.project.jsfloader/1 [1.0 050907_5]
         com.sun.rave.extension.properties/1 [1.0 050907_5]
         com.sun.rave.extension.xml.core/1 [1.0 050907_5]
         org.netbeans.modules.java.j2seproject [1.2.1 1.2.0 050907_5]
         com.sun.rave.extension.java.j2seproject/1 [1.0 050907_5]
         com.sun.rave.project.navigationloader/1 [1.0 050907_5]
         com.sun.rave.corepackage/1 [1.1 050907_5]
         org.netbeans.modules.extbrowser/1 [1.6.1 050907_5]
         com.sun.rave.branding.extbrowser/1 [1.0 050907_5]
         org.netbeans.modules.java.j2seplatform/1 [1.2.1 1.2.0 050907_5]
         com.sun.rave.extension.xml.text/1 [1.0 050907_5]
         com.sun.rave.portlet.container.pluto/1 [1.0 1.0]
         com.sun.rave.extension.core.ui/1 [1.0 050907_5]
         com.sun.rave.extension.java.freeform/1 [1.0 050907_5]
         com.sun.rave.branding.autoupdate/1 [1.0 050907_5]
    *********** Exception occurred ************ at 2:26 AM on Dec 30, 2005
    com.sun.tools.javac.util.Abort
         at com.sun.tools.javac.comp.Check.completionError(Check.java:171)
         at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:280)
         at com.sun.tools.javac.comp.Attr.attribType(Attr.java:304)
         at com.sun.tools.javac.comp.MemberEnter.signature(MemberEnter.java:352)
         at com.sun.tools.javac.comp.MemberEnter.visitMethodDef(MemberEnter.java:556)
         at com.sun.tools.javac.tree.Tree$MethodDef.accept(Tree.java:500)
         at com.sun.tools.javac.comp.MemberEnter.memberEnter(MemberEnter.java:384)
         at com.sun.tools.javac.comp.MemberEnter.memberEnter(MemberEnter.java:396)
         at com.sun.tools.javac.comp.MemberEnter.finishClass(MemberEnter.java:406)
         at com.sun.tools.javac.comp.MemberEnter.finish(MemberEnter.java:954)
         at com.sun.tools.javac.comp.MemberEnter.complete(MemberEnter.java:921)
         at com.sun.tools.javac.code.Symbol.complete(Symbol.java:356)
         at com.sun.tools.javac.code.Symbol$ClassSymbol.complete(Symbol.java:613)
         at com.sun.tools.javac.comp.Enter.complete(Enter.java:451)
         at com.sun.tools.javac.comp.Enter.main(Enter.java:429)
         at com.sun.rave.insync.java.Builder.buildTree(Builder.java:76)
    [catch] at com.sun.rave.insync.java.JavaUnit.read(JavaUnit.java:187)
         at com.sun.rave.insync.SourceUnit.sync(SourceUnit.java:446)
         at com.sun.rave.insync.models.FacesModel.openJavaUnits(FacesModel.java:676)
         at com.sun.rave.insync.models.FacesModel.syncImpl(FacesModel.java:854)
         at com.sun.rave.insync.Model.sync(Model.java:198)
         at com.sun.rave.insync.ModelSet.syncAll(ModelSet.java:765)
         at com.sun.rave.insync.models.FacesModelSet.syncAll(FacesModelSet.java:1099)
         at com.sun.rave.insync.models.FacesModelSet.<init>(FacesModelSet.java:183)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sun.rave.insync.ModelSet.getInstance(ModelSet.java:442)
         at com.sun.rave.insync.ModelSet.getInstance(ModelSet.java:426)
         at com.sun.rave.insync.Model.getInstance(Model.java:55)
         at com.sun.rave.insync.models.FacesModel.getInstance(FacesModel.java:138)
         at com.sun.rave.designer.WebForm.<init>(WebForm.java:92)
         at com.sun.rave.project.jsfloader.JsfJspDataObject.getWebForm(JsfJspDataObject.java:79)
         at com.sun.rave.project.jsfloader.JsfJspEditorSupport$JspEditorTopComponent.initialize(JsfJspEditorSupport.java:388)
         at com.sun.rave.project.jsfloader.JsfJspEditorSupport$JspEditorTopComponent.readExternal(JsfJspEditorSupport.java:507)
         at org.openide.windows.TopComponent$Replacer.readObject(TopComponent.java:1182)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:919)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1813)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1713)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
         at org.netbeans.core.multiview.MultiViewPeer.peerReadExternal(MultiViewPeer.java:361)
         at org.netbeans.core.multiview.MultiViewCloneableTopComponent.readExternal(MultiViewCloneableTopComponent.java:188)
         at org.openide.windows.TopComponent$Replacer.readObject(TopComponent.java:1182)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:919)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1813)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1713)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
         at org.netbeans.modules.settings.convertors.XMLSettingsSupport$SettingsRecognizer.readSerial(XMLSettingsSupport.java:514)
         at org.netbeans.modules.settings.convertors.XMLSettingsSupport$SettingsRecognizer.instanceCreate(XMLSettingsSupport.java:542)
         at org.netbeans.modules.settings.convertors.SerialDataConvertor$SettingsInstance.instanceCreate(SerialDataConvertor.java:356)
         at org.netbeans.core.windows.persistence.PersistenceManager.getTopComponentPersistentForID(PersistenceManager.java:428)
         at org.netbeans.core.windows.persistence.PersistenceManager.getTopComponentForID(PersistenceManager.java:535)
         at org.netbeans.core.windows.PersistenceHandler.getTopComponentForID(PersistenceHandler.java:352)
         at org.netbeans.core.windows.PersistenceHandler.load(PersistenceHandler.java:93)
         at org.netbeans.core.windows.WindowSystemImpl.load(WindowSystemImpl.java:39)
         at org.netbeans.core.Main$3.run(Main.java:264)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    [WinSys.PersistenceManager.getTopComponentForID] Problem when deserializing TopComponent for tcID:'MULTIVIEW-DESIGNER#007CJSP#007CJAVA#007C_4'. Reason: java.lang.reflect.InvocationTargetException
    INFORMATIONAL *********** Exception occurred ************ at 2:26 AM on Dec 30, 2005
    Annotation: Cannot read class: org.netbeans.core.multiview.MultiViewCloneableTopComponent
    Annotation: Source: MultiFileObject@8420c8[nbfs://nbhost/SystemFileSystem/Windows2Local/Components/MULTIVIEW-DESIGNER%23007CJSP%23007CJAVA%23007C_4.settings]
    Annotation: Content:
    <?xml version="1.0"?>
    <!DOCTYPE settings PUBLIC "-//NetBeans//DTD Session settings 1.0//EN" "http://www.netbeans.org/dtds/sessionsettings-1_0.dtd">
    <settings version="1.0">
    <module name="org.netbeans.core.multiview/1" spec="1.5.1"/>
    <instanceof class="java.awt.Component"/>
    <instanceof class="java.awt.Container"/>
    <instanceof class="java.awt.MenuContainer"/>
    <instanceof class="java.awt.image.ImageObserver"/>
    <instanceof class="java.io.Externalizable"/>
    <instanceof class="java.io.Serializable"/>
    <instanceof class="java.lang.Object"/>
    <instanceof class="javax.accessibility.Accessible"/>
    <instanceof class="javax.swing.JComponent"/>
    <instanceof class="org.netbeans.core.multiview.MultiViewCloneableTopComponent"/>
    <instanceof class="org.netbeans.core.multiview.MultiViewModel$ActionRequestObserverFactory"/>
    <instanceof class="org.openide.text.CloneableEditorSupport$Pane"/>
    <instanceof class="org.openide.util.HelpCtx$Provider"/>
    <instanceof class="org.openide.util.Lookup$Provider"/>
    <instanceof class="org.openide.windows.CloneableTopComponent"/>
    <instanceof class="org.openide.windows.TopComponent"/>
    <instanceof class="org.openide.windows.TopComponent$Cloneable"/>
    <serialdata class="org.netbeans.core.multiview.MultiViewCloneableTopComponent">
    ACED0005737200296F72672E6F70656E6964652E77696E646F77732E546F70436F6D706F6E656E74245265706C6163657284
    874494BDDF6D64030000787074003A6F72672E6E65746265616E732E636F72652E6D756C7469766965772E4D756C74695669
    6577436C6F6E6561626C65546F70436F6D706F6E656E747372000F6A6176612E6C616E672E53686F7274684D37133460DA52
    02000153000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000177040000
    000174000074003B433A5C5072696E6369706C65536F66745C50726F6A656374735C5072696E6369706C65436172655C7765
    625C5765656B6C79506C6F742E6A73706674000A5765656B6C79506C6F7470737200316F72672E6F70656E6964652E77696E
    646F77732E436C6F6E6561626C654F70656E537570706F7274244C697374656E6572E525E314060C682D0200014C0003656E
    7674002E4C6F72672F6F70656E6964652F77696E646F77732F436C6F6E6561626C654F70656E537570706F727424456E763B
    7872002D6F72672E6F70656E6964652E77696E646F77732E436C6F6E6561626C65546F70436F6D706F6E656E74245265664C
    ED3888AC524ABC0200007870737200326F72672E6E65746265616E732E6D6F64756C65732E6A6176612E4A61766145646974
    6F72244A617661456469746F72456E76A1BC270B90B6E84A020000787200266F72672E6F70656E6964652E746578742E4461
    7461456469746F72537570706F727424456E76D720E894A9D2FA27020000787200236F72672E6F70656E6964652E6C6F6164
    6572732E4F70656E537570706F727424456E76E525E314060C682D0200014C00036F626A7400204C6F72672F6F70656E6964
    652F6C6F61646572732F446174614F626A6563743B7870737200266F72672E6F70656E6964652E6C6F61646572732E446174
    614F626A656374245265706C616365F7497413DEEC538E0200014C0002666F7400244C6F72672F6F70656E6964652F66696C
    6573797374656D732F46696C654F626A6563743B7870737200366F72672E6E65746265616E732E6D6F64756C65732E6D6173
    74657266732E4D617374657246696C654F626A656374245265706C6163658950033C2A34E19F0200014C0004706174687400
    124C6A6176612F6C616E672F537472696E673B7870740049433A2F5072696E6369706C65536F66742F50726F6A656374732F
    5072696E6369706C65436172652F7372632F7072696E6369706C65636172652F5765656B6C79506C6F742E6A617661737200
    40636F6D2E73756E2E726176652E70726F6A6563742E6A73666C6F616465722E4A73664A617661456469746F72537570706F
    727424436C6F736548616E646C6572D49B929C7FAB96810200014C00147072696D6172794A736646696C654F626A65637471
    007E0013787071007E001773720040636F6D2E73756E2E726176652E70726F6A6563742E6A73666C6F616465722E4A73664A
    617661456469746F72537570706F72742444657369676E657244657363D49B929C38250A810200014C00106A73664A737044
    6174614F626A6563747400314C636F6D2F73756E2F726176652F70726F6A6563742F6A73666C6F616465722F4A73664A7370
    446174614F626A6563743B78707371007E00127371007E001574003B433A2F5072696E6369706C65536F66742F50726F6A65
    6374732F5072696E6369706C65436172652F7765622F5765656B6C79506C6F742E6A7370667372003B636F6D2E73756E2E72
    6176652E70726F6A6563742E6A73666C6F616465722E4A73664A617661456469746F72537570706F7274244A737044657363
    D49B929C38250A810200014C00106A73664A7370446174614F626A65637471007E001C787071007E001E7371007E00007400
    48636F6D2E73756E2E726176652E70726F6A6563742E6A73666C6F616465722E4A73664A7370456469746F72537570706F72
    74244A7370456469746F72546F70436F6D706F6E656E747371007E0003000177040000000074000A5765656B6C79506C6F74
    74003B433A5C5072696E6369706C65536F66745C50726F6A656374735C5072696E6369706C65436172655C7765625C576565
    6B6C79506C6F742E6A73706674000A5765656B6C79506C6F74707371007E00097372003E636F6D2E73756E2E726176652E70
    726F6A6563742E6A73666C6F616465722E4A73664A7370456469746F72537570706F727424456E7669726F6E6D656E742A20
    6A6DBFFCE52A0200007871007E000E71007E001E71007E002B737200116A6176612E6C616E672E496E746567657212E2A0A4
    F781873802000149000576616C75657871007E00040000000071007E001E787372003C636F6D2E73756E2E726176652E7072
    6F6A6563742E6A73666C6F616465722E4A73664A617661456469746F72537570706F7274244A61766144657363D49B929C38
    250A810200014C00116A73664A617661446174614F626A6563747400324C636F6D2F73756E2F726176652F70726F6A656374
    2F6A73666C6F616465722F4A73664A617661446174614F626A6563743B787071007E00147371007E000074004A636F6D2E73
    756E2E726176652E70726F6A6563742E6A73666C6F616465722E4A73664A617661456469746F72537570706F7274244A6176
    61456469746F72546F70436F6D706F6E656E747371007E0003000177040000000074000F5765656B6C79506C6F742E6A6176
    61740049433A5C5072696E6369706C65536F66745C50726F6A656374735C5072696E6369706C65436172655C7372635C7072
    696E6369706C65636172655C5765656B6C79506C6F742E6A61766174000A5765656B6C79506C6F74707071007E0011737100
    7E002C00000000787371007E002C0000000278
    </serialdata>
    </settings>
    java.io.IOException: java.lang.reflect.InvocationTargetException
         at org.openide.windows.TopComponent$Replacer.readObject(TopComponent.java:1221)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:919)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1813)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1713)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
         at org.netbeans.core.multiview.MultiViewPeer.peerReadExternal(MultiViewPeer.java:361)
         at org.netbeans.core.multiview.MultiViewCloneableTopComponent.readExternal(MultiViewCloneableTopComponent.java:188)
         at org.openide.windows.TopComponent$Replacer.readObject(TopComponent.java:1182)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:919)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1813)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1713)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
         at org.netbeans.modules.settings.convertors.XMLSettingsSupport$SettingsRecognizer.readSerial(XMLSettingsSupport.java:514)
         at org.netbeans.modules.settings.convertors.XMLSettingsSupport$SettingsRecognizer.instanceCreate(XMLSettingsSupport.java:542)
         at org.netbeans.modules.settings.convertors.SerialDataConvertor$SettingsInstance.instanceCreate(SerialDataConvertor.java:356)
    [catch] at org.netbeans.core.windows.persistence.PersistenceManager.getTopComponentPersistentForID(PersistenceManager.java:428)
         at org.netbeans.core.windows.persistence.PersistenceManager.getTopComponentForID(PersistenceManager.java:535)
         at org.netbeans.core.windows.PersistenceHandler.getTopComponentForID(PersistenceHandler.java:352)
         at org.netbeans.core.windows.PersistenceHandler.load(PersistenceHandler.java:93)
         at org.netbeans.core.windows.W

  • How to resolve "open failed"error while starting dbisqlc utility in UNIX b

    how to resolve the following error while starting dbisqlc utility in UNIX box...??
    Unix Prompt% which dbisqlc
    /sybase/asiq12/bin/dbisqlc
    Unix Prompt%
    Unix Prompt% dbisqlc
    ld.so.1: dbisqlc: fatal: libdblib9_r.so: open failed: No such file or directory
    zsh: killed dbisqlc
    Unix Prompt%

    rm.vikram wrote:
    how to resolve the following error while starting dbisqlc utility in UNIX box...??
    Unix Prompt% which dbisqlc
    /sybase/asiq12/bin/dbisqlc
    Unix Prompt%
    Unix Prompt% dbisqlc
    ld.so.1: dbisqlc: fatal: libdblib9_r.so: open failed: No such file or directory
    zsh: killed dbisqlc
    Unix Prompt%It may not help, but a quick google search for that library gave a link to http://www.sybase.com/content/1040797/deployadmintoolslinux.pdf, and from within that:
    Interactive SQL files
    Copy the following files from your reference installation:
    /opt/sybase/SYBSsa9/bin/dbisql
    /opt/sybase/SYBSsa9/java/dbmaen9.jar
    /opt/sybase/SYBSsa9/java/isql.jar
    /opt/sybase/SYBSsa9/java/jlogon.jar
    /opt/sybase/SYBSsa9/java/xerces.jar
    /opt/sybase/SYBSsa9/java/xml4j.jar
    3
    Copyright © 2004 iAnywhere Solutions, Inc.
    /opt/sybase/SYBSsa9/lib/libdblib9_r.so.1
    /opt/sybase/SYBSsa9/lib/libdbtool9_r.so.1
    /opt/sybase/SYBSsa9/res/asa.cvf
    /opt/sybase/SYBSsa9/res/dblgen9.res
    /opt/sybase/shared/java/HelpManager11.jar
    /opt/sybase/shared/java/JComponents142.jar
    /opt/sybase/shared/java/SCEditor142.jar
    /opt/sybase/shared/java/jsyblib142.jar
    /opt/sybase/shared/sun/javahelp-1_1/jh.jar
    Create the following symbolic links in /opt/SYBSsa9/lib:
    libdblib9_r.so -> libdblib9_r.so.1
    libdbtool9_r.so -> libdbtool9_r.so.1which may suggest a solution.

  • Javahelp

    Hello, I am trying to use the serverhelp in javahelp 2.0. The following error occurs when trying to run the index.jsp page under the JavaHelpDemo context.
    java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;ZLjava/lang/String;ZZ)V
    I am using JBoss/tomcat 5.0 and deployed the javahelp using the ant command in the README file. I know this class exists in the javax.servlet.jar, but I believe the versions of TagAttributeInfo.class vary in the constructors depending on what version of Tomcat/JBoss's servlet/jsp jars are included. Any leads to the correct .jar file that contains the correct constructor arguments for the javahelp would be appreciated.
    Thanks in advance.
    Jay

    Hello again. Fixed my own problem, but there is a bug in the javahelp version 2.0 for serverhelp (jsp pages). I installed version 2.0 serverhelp on Tomcat 3.2 so I would be using the servlet.jar that contained the correct TagAttributeInfo class. The application runs as it should. The TagAttributeInfo class within Tomcat 4.1 and Tomcat 5.0's servlet-api.jar are the incorrect class definition for TagAttributeInfo and therefore the NoSuchMethod exception occurs.
    Be aware of this bug. Are there any plans or version updates to fix this?
    Jay

  • RoboHelp 10 fails to build JavaHelp Search

    When I generate JavaHelp with RoboHelp 10 I have the error below in the console:
    java.io.FileNotFoundException: myProject_JavaHelpSearch\POSITIONS (...)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(Unknown Source)
        at com.sun.java.help.search.DocumentLists.<init>(DocumentLists.java:161)
        at com.sun.java.help.search.DocumentLists.invert(DocumentLists.java:243)
        at com.sun.java.help.search.DefaultIndexBuilder.close(DefaultIndexBuilder.java:103)
        at com.sun.java.help.search.Indexer.compile(Indexer.java:228)
        at com.sun.java.help.search.Indexer.main(Indexer.java:76)
    In the working directoty used for JavaHelp, the "myProject_JavaHelpSearch" sub-directory contains:
    DOCS
    OFFSETS
    TMAP
    The error is not fatal and RoboHelp do generate the JavaHelp file. The JavaHelps displays TOC, Index, and the project pages as expected, but when I try using the "Search" tab in the generated JavaHelp, it does not work.
    If I generate a Microsoft HTML Help or WebHelp, the "Search" tab works fine.
    My project is a former  RoboHelp 9.1 project converted to RoboHelp 10. It was working fine on Windows XP Pro Us (32 bits) + RH 9.1, I'm running now RH 10 on Windows 8 Pro French 64 bits.
    Thanks in advance for any help.

    There is nothing there about Rh10 and it is not a topic I will be updating. Sorry but JavaHelp is not a popular output. Flare does not even offer it for reasons stated in the page on my site.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Problem in viewing a converted JavaHelp (jar) file (created using RH2002 to RoboHelp X5)

    Hi,
    I have a javahelp project (compressed javahelp) created using
    RoboHelp 2002. The output files are jar files.
    The source files are .mpj. When I view the existing jar files
    without converting the project to .xpj I am able to view the jar
    files.
    However, this project needs to be upgraded to RHx5. During
    conversion(.mpj to .xpj) everything seems to be working fine and
    the javahelp files are generated. But when I try to view the jar
    files nothing is diplayed.
    I get the following error. Please see below.
    Has anybody come across anything similar? Is there anything I
    need to take care of before I upgrade to .xpj? I cannot locate the
    glo.xml file in RH.
    Best regards,
    Urmi
    Parsing failed for null
    Exception caught while parsing jar:file:C:/Documents and
    Settings/urmiroy/Desktop/ep2_cd1helps/Developer_edit/JavaHelp/FLEXIEDGEBTS_dev_edit.jar!/ FLEXIEDGEBTS_dev_edit_glo.xmljava.io.FileNotFoundException:
    JAR entry FLEXIEDGEBTS_dev_edit_glo.xml not found in C:\Documents
    and
    Settings\urmiroy\Desktop\ep2_cd1helps\Developer_edit\JavaHelp\FLEXIEDGEBTS_dev_edit.jar
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at
    javax.help.MergeHelpUtilities.mergeNodeChildren(MergeHelpUtilities.ja
    va:89)
    at
    javax.help.plaf.basic.BasicGlossaryNavigatorUI.loadData(BasicGlossary
    NavigatorUI.java:217)
    at
    javax.help.plaf.basic.BasicGlossaryNavigatorUI.reloadData(BasicGlossa
    ryNavigatorUI.java:198)
    at
    javax.help.plaf.basic.BasicGlossaryNavigatorUI.installUI(BasicGlossar
    yNavigatorUI.java:146)
    at javax.swing.JComponent.setUI(Unknown Source)
    at javax.help.JHelpNavigator.setUI(JHelpNavigator.java:257)
    at
    javax.help.JHelpNavigator.updateUI(JHelpNavigator.java:276)
    at
    javax.help.JHelpNavigator.<init>(JHelpNavigator.java:105)
    at
    javax.help.JHelpGlossaryNavigator.<init>(JHelpGlossaryNavigator.java:
    62)
    at
    javax.help.GlossaryView.createNavigator(GlossaryView.java:82)
    at javax.help.JHelp.setupNavigators(JHelp.java:148)
    at javax.help.JHelp.<init>(JHelp.java:126)
    at javax.help.JHelp.<init>(JHelp.java:76)
    at
    sunw.demo.jhdemo.JHLauncher$DisplayAction.actionPerformed(JHLauncher.
    java:956)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown
    Source)
    at
    javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknow
    n Source)
    at
    javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at
    javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown
    Sour
    ce)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown
    Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown
    Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown
    Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at
    java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown
    Source)
    at
    java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at
    java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.Dialog$1.run(Unknown Source)
    at java.awt.event.InvocationEvent.dispatch(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at
    java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown
    Source)
    at
    java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)

    Hi Colum,
    Thanks for your reply.
    Yes, I have gone through the Peter Grainge's article. It is
    indeed very informative and I have installed the JDK and the JH
    according to the instructions given therein. My installation seems
    complete as the viewer works fine. The JDK version is 1.4.2_18 and
    the JH version is 2.0. The environment variables have also been set
    accordingly.
    All this while I was thinking it is a Java issue so I have
    tried out with different JDK versions.
    But now I think it can be a tool issue because :
    I can view the existing JavaHelp file with the current Java
    viewer.(if I do not open the project in X5)
    I can view Sun supplied sample jar files with the viewer.
    I can create new JavaHelp files with RHX5 and the current JDK
    and JH installation and view those files.
    I cannot view the JavaHelp file if I convert the .mpj to .xpj
    (the generate dialog works fine and says compilation is complete).
    The Display button does not display the file. The view
    command line command throws up the error mentioned in my earlier
    mail.
    Would appreciate any pointers.
    Best regards,
    Urmi

  • Error when deploying BPEL Process to Weblogic 11g

    Hi,
    I have just started to use JDev and SOA, so I am new to this.
    I have created numerous BPEL processes in JDev 11.1.1.5.0 which im trying to deploy to the SOA domain on Weblogic 10.3.4.0 however each time the same error appears:
    [09:24:35 AM] ---- Deployment started. ----
    [09:24:35 AM] Target platform is (Weblogic 10.3).
    [09:24:35 AM] Running dependency analysis...
    [09:24:36 AM] Building...
    [09:24:53 AM] Deploying profile...
    [09:24:53 AM] Updating revision id for the SOA Project 'Project1.jpr' to '1.0'..
    [09:24:54 AM] Wrote Archive Module to C:\JDeveloper\mywork\JETEST\Project1\deploy\sca_Project1_rev1.0.jar
    [09:24:54 AM] Deploying sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [http://hostname:8001]
    [09:24:54 AM] Processing sar=/C:/JDeveloper/mywork/JETEST/Project1/deploy/sca_Project1_rev1.0.jar
    [09:24:54 AM] Adding sar file - C:\JDeveloper\mywork\JETEST\Project1\deploy\sca_Project1_rev1.0.jar
    [09:24:54 AM] Preparing to send HTTP request for deployment
    [09:24:54 AM] Creating HTTP connection to host:[http://hostname:8001]
    [09:24:54 AM] Sending internal deployment descriptor
    [09:24:54 AM] Sending archive - sca_Project1_rev1.0.jar
    [09:24:59 AM] Received HTTP response from the server, response code=500
    [09:24:59 AM] Error deploying archive sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [http://hostname:8001]
    [09:24:59 AM] HTTP error code returned [500]
    [09:24:59 AM] Error message from server:
    There was an error deploying the composite on soa_server1: Deployment Failed: Error occurred during deployment of component: BPELProcess1 to service engine: implementation.bpel, for composite: Project1: ORABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file "/u01/app/oracle/product/Middleware/user_projects/domains/soa_domain/servers/soa_server1/dc/soa_65920eec-7e29-45fd-a66f-53dc157b8618"; the exception reported is: java.lang.NoClassDefFoundError: Could not initialize class com.collaxa.cube.util.JavaHelper
    This error contained an exception thrown by the underlying deployment module.
    Verify the exception trace in the log (with logging level set to debug mode).
    [09:24:59 AM] Check server log for more details.
    [09:24:59 AM] Error deploying archive sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [http://hostname:8001]
    [09:24:59 AM] #### Deployment incomplete. ####
    [09:24:59 AM] Error deploying archive file:/C:/JDeveloper/mywork/JETEST/Project1/deploy/sca_Project1_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Can anyone help?
    Cheers

    I have created numerous BPEL processes in JDev 11.1.1.5.0 which im trying to deploy to the SOA domain on Weblogic 10.3.4.0 however each time the same error appears:Did you check server log? Exactly which class it is not able to find?
    Regards,
    Anuj

  • Captivate Flash and JavaHelp output

    According to Adobe, I should be able to view Captivate Flash
    files when using the JavaHelp single-source output. However, the
    .swf files are still not playing when I generate the JavaHelp
    source. I am also getting an I/O Exception error during output
    generation. I am using RoboHelp 7 and I have inserted Captivate 3
    .swf files.
    Does anyone have a suggestion on how to make this work?
    Thanks.

    I'm sorry that I do not have an answer to your issue, but I
    am interested on how you have created the wrapper. I am trying to
    figure out how to load my captivate movies onto my SCORM 1.2
    compliant LMS and I am a bit stumped. Can you share what you did?
    Thanks, Fbudd

Maybe you are looking for

  • How to return to video chat from screen share mode?

    Is there an easy way to leave screen share mode and return to the video chat without having to stop iChat and start a new Video conference?

  • Reader X: ProtectedModeWhitelistConfig.txt entry results in error

    Hi, to make a plugin work again in the Reader X 10.1.1 i added a policy file. Nearly everything is working however i can't use the 'REG_ALLOW_ANY' key. The logging output is e.g.: <snip> [09:22/16:23:40] NtCreateKey: STATUS_ACCESS_DENIED [09:22/16:23

  • Can't update to the new OSX ML

    That's the message that pops up: "There was an eror eith the app store, please try again later". It says that for already 2 weeks.

  • Jvedeloper 11gR1 not starting anymore after SOA suite 11g Install

    I have/had a working setup on my Server 2008. Weblogic 10.3 MDM 2.0 OUAF 4.2 Jdeveloper 11g Oracle DB 11g Now for some testing I needed to install SOA Suite 11g. After done so Jdeveloper lets me choose the role but then never comes up. I see it in th

  • Gettin error while deployed on Tomcat

    Hi Coherence Folks, I tried a sample app listed on building your JAVA App example But when I deployed it on tomcat and tried its throwing error like org.apache.jasper.JasperException: An exception occurred processing JSP page /hw.jsp at line 15 12: