JavaHelp ... help

Hi, I was wondering how do I integrate javahelp into my current jdk (I am using 1.4.2). I've set the environment variable JHHOME so what's next..?
I am also using Netbeans 4.0. I want to integrate javahelp into netbeans too. I've done the following:
Tools => Java Platform Manager
I've chosen my current java platform and under tab "Sources" I clicked button "Add JAR/Folder" and selected the src.jar to import. A weird thing is that netbeans actually sees javaHelp but does not recognise it. Specifically when I pause typing after having typed javax. the help package appears in the list. However compiler says that package javax.help.* does not exist and project won't compile.
Any ideas?
Thnx in advance

Hi,
Did you solve this problem, im using NetBeans 5.0 and im having the exact same problem, and its driving me up the wall...
Cheers

Similar Messages

  • Set options for generating JavaHelp Help

    This question was posted in response to the following article: http://help.adobe.com/en_US/robohelp/robohtml/WSf55e06f836f4782e1172e0811d54ddd5ae-8000.ht ml

    Hi there
    If you are insistent upon the output being JavaHelp, I'm going to officially say that you are likely better off using your own utility. RoboHelp will likely be a source of nothing but frustration for you if you want to use it to create JavaHelp. Almost nobody is creating JavaHelp so Adobe really has no real incentive to improve RoboHelp's ability to produce it.
    If you are interested in using RoboHelp as your editor, I'd say it might be useful there. But once you create the content, I'd suggest closing RoboHelp and using your home grown utility to generate, since it already does what you want.
    Sorry, but dem's the breaks... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Robohelp 8 JavaHelp and Oracle Help

    It is said that JavaHelp Help and Oracle Help can be the output format of RoboHelp project in the help of RoboHelp. But I can not find a way to generate JavaHelp or Oracle Help. Could you tell me does RoboHelp 8 support it?
    Generate and publish output from the command prompt. I use the command as below:
      "e:\test_RoboHelp\robotest\robotest.xpj -l WebHelp -o E:\test_RoboHelp\a"
    "e:\test_RoboHelp\robotest\robotest.xpj" is a project which does exist. But Why the output folder is not "E:\test_RoboHelp\a" as I have set?
    by the way, Does RoboHelp have a plan to support HTML Help 2.x?

    Hi there
    Indeed RoboHelp *CAN* produce JavaHelp and Oracle Help as advertised. However, it isn't configured out of the box to do this. I consider it to be similar to advertising that a pickup truck (errr, sorry Peter, Craig and Colum - I mean LORRY) is able to tow a Boat or a Camper to a lake. Sure, you can tow these items, but there are a few requirements!
    You must have a Boat or Camper to tow
    You need to install the optional towing package
    In order to produce these help output types you will need to separately install the Java Development Kit. Fellow Adobe Community Expert Peter Grainge has some information on his site at the link below.
    Click here to visit Peter's site
    That covers JavaHelp. I'm unsure about Oracle Help, but would expect it to be similar.
    Are we to assume the code referring to E:\test... is your own code?
    If so, I see an issue with it. E:\ likely refers to a network location. In my many years of supporting RoboHelp via the forums I can't begin to tell you how many folks have arrived reporting issue after issue after issue that was caused by working on projects while they are stored on network locations.
    HTML Help 2 never took off for public use. Mostly Microsoft used it internally. As there is no real generic public outcry for it, I'd be shocked if RoboHelp were to suddenly begin offering it. If you would like to cast your vote for it to be added as an output option, visit the Wish Form.
    Hopefully this helps... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Installing JavaHelp in Websphere

    Hi!
    I'm trying to install a javahelp web application in websphere application server 5 and somehow it doesn't work!
    It's supposed to be a server based Javahelp, invoked by a JSP in a web application. I tried to call Javahelp using the following code:
    <jh:validate helpBroker="<%= helpBroker %>"
    helpSetName="/Help/PT/CpyProd.hs"/>
    <body onload="location='JavaHelp/help.jsp'">
    It works fine on Websphere test environment and on Tomcat4.1 but it can't compile the JSP on WAS!
    I supposed that it was a problem while finding the helpset and so, I tried to do this manually using the following code also in the JSP:
    <%
    java.net.URL hsURL = new java.net.URL("http://i2sseg.i2s.local:9080/I2SHelp/Help/PT/CpyProd.hs");
    javax.help.HelpSet hs = new javax.help.HelpSet(null, hsURL);
    helpBroker.setHelpSet(hs);
    %>
    I created manually the Helpset's URL but I have a problem creating the HelpSet. I get the folowing exception:
    [17-06-2004 14:39:16:909 UTC] 25e50d5f WebGroup E SRVE0026E: [Servlet Error]-[Could not parse]: javax.help.HelpSetException: Could not parse
    java/lang/Throwable.<init>(Ljava/lang/String;)V+4 (Throwable.java:85)
    java/lang/Exception.<init>(Ljava/lang/String;)V+1 (Exception.java:33)
    Once again, this works fine on websphere test environment and on tomcat... (and I used the exact same WAR fine on tomcat)
    I'm also using the same .hs in all installations so, there is no problem there
    I'm running out of ideas... can anyone help me with this?
    Thanx in advance
    Filipe Teixeira

    got rid of this exception for javahelp on websphere.
    Nested Exception is java.lang.RuntimeException: Could not parse
    Got an IOException (http://localhost:9081/http://localhost:9081/.ContextName/TaxCalculatorHelp/TaxCalculatorHelpSet.hs)
    Parsing failed for null
    I noted a few things in my scenario :
    If code below is used to get the URL of helpsetName with context ,
    response.encodeURL(request.getContextPath() + "/somefolder/hsName.hs") then it creates problem with jh:validate tag
    Using 'jh:validate' tag appends servername:portnumber to the fully formed helpset name, causes the wrongly formed URL of the helpset.
    So what we need is ONLY the 'context' name, which we don't get from request.getContextPath()  (cos it returns protocol, servername, portnumber , .. ) ..
    As I am doing it in Portlets , used renderRequest.getContextPath() that solves the purpose.
    hope it helps .
    have a good day !

  • JavaHelp support and command prompt

    two problems about RoboHelp 8.
    1, It is said that JavaHelp Help and Oracle Help can be the output format of RoboHelp project in the help of RoboHelp. But I can not find a way to generate JavaHelp or Oracle Help. Could you tell me does RoboHelp 8 support it?
    2, Generate and publish output from the command prompt. I use the command as below:
      "e:\test_RoboHelp\robotest\robotest.xpj -l WebHelp -o E:\test_RoboHelp\a"
    "e:\test_RoboHelp\robotest\robotest.xpj" is a project which does exist. But Why the output folder is not "E:\test_RoboHelp\a" as I have set?
    Thanks

    Addressing 1 only.
    Is the problem that the list of output types does not include those outputs or that they do not work?
    If the former, right click in the layout pod and add a new layout, you will be able to select those types.
    If the latter, see the JavaHelp page on my site.
    See www.grainge.org for RoboHelp and Authoring tips

  • JavaHelp Distribution

    I'm new to JavaHelp and haven't decided yet if I will use it. I'm not clear on one thing: do I have to distribute some file(s) to my users in order for their machines to work correctly with JavaHelp?
    As it is, the JRE is big for modem users to download. If they will also need to download another file, it may become prohibitively large.
    Mike

    Hi,
    there are several options with JavaHelp. If you plan to distribute a help set as electronic documentation for a Java application for instance, the user most probably has the JRE already or at least needs it for the Java application anyway.
    For watching JavaHelp help sets from out of an application, a version of the JRE with Swing is needed. In addidtion, the JavaHelp runtime extension must be present in the JRE.
    If you plan to use the help set for being viewed with a web browser, usually the browser needs to fulfill the same requirments. An alternative is to view the plain HTML topic files in the browser and use an applet to display the TOC tree without Swing.
    For doing this you would need something like what is available at http://www.calcom.de/eng/product/hlpex.htm or at http://www.calcom.de/eng/dev/index.htm
    Ulrich

  • JavaHelp/Browser/Plugin - HowTo ?

    Dear members !
    I'm a newbie to this topic ...
    I make an application which runs in a browser window, and I want to use JavaHelp.
    In IE, my browser wants to install Java Plug-in 1.3.1.
    But that file is about 5 MB !!!
    Do I really need this 5 MB ? I have located a file on our network (jinstall-111-win32.cab) which is only 39KB.
    In Netscape 4.7 it worked without installing something (maybe it was yet installed). On NC 4.6 it doesn't worked, so I copied some DLLs from 4.7-Plugins-Directory and it worked !
    Really don't understand whats going on.
    So can you help me pls ? Which files do I really need and where exactly do I get them (exact URL).
    Thank you !
    Arno

    Hi Arno,
    if you like to display JavaHelp help set in a plain browser window, this browser needs to have the JavaHelp runtime extension and Swing installed. An alternative is the applet that comes with my application HelpExpert.
    Best regards
    Ulrich

  • No "generate code" checkbox

    Hello,
    I have Sun Java Studio Enterprise 8.1. A teacher told me this was a good tool to make you UML and let java studio generate the code. You could preform this action by checking the checkbox "generate code" when you created a "Java-Platform Model" in the UML section. I have already created a java libary but i dont have the "generate code" checkbox.
    Is this feature removed in 8.1 and does 8.0 still have it?
    LeDieu

    According to http://www.netbeans.org/issues/show_bug.cgi?id=78590:
    This checkbox is not longer in the UI since live roundtrip has been disabled.
    Also: http://www.netbeans.org/servlets/ReadMsg?listName=nbusers&msgNo=84056
    You may want to check out the 'Generating Code' help topic in the javahelp (help | contents menuitem).

  • Please help: can bullets look normal in JavaHelp?

    When I generate JavaHelp (using RoboHelp) and preview, the bullets have prongs sticking out of them, instead of being smooth. Has anyone else encountered this? Is it a RoboHelp problem or a JavaHelp problem? Please help! I have to create compressed JavaHelp, and it's horribly ugly right now.
    Thanks!

    I know of no way to make a 4:3 hi-def movie. Unless you just want to crop off the sides -- but then you'll just have a widescreen video with black bars on the sides!

  • Generating JavaHelp (online help) in Arabic Language

    Dear Friends,
    I would like to know from you that I want to generate JavaHelp (online help) in Arabic Language. Could you please suggest me which tool will generate Javahelp in Arabic?
    Thanks & Regards,
    T. BALAJI
    Sr. Tech. Writer

    Hi,
    I think you can use "jhelpdev" open source tool. (I use it to create javahelp files in Persian). Pleae don't forget to set UTF-8 where it is necessary.
    Please find it in http://jhelpdev.sourceforge.net/
    Regards,
    Elham

  • Migrating from JavaHelp to Oracle Help for Java

    Currently we have a product in which we have implemented Sun Microsystem's JavaHelp as the Help delivery system. However, after evaluating Oracle Help for Java we would like to migrate from Javahelp to OHJ.
    My question is, how difficult would this migration be from the Development side? I have been reviewing the Oracle Help for Java Developer's Guide and comparing it against the JavaHelp documentation but I haven't been able to get a clear idea of how different the implementation is.
    Thanks,
    Theresa

    Hello Theresa,
    Thanks for considering Oracle Help.
    There isn't much you have to do with your source content and control files. With the exception of the full text search index, the Oracle Help control file formats (helpset, index, map, etc.) extend the JavaHelp formats. So you can use the JavaHelp control files as is, or you can extend them with the Oracle Help extensions. For a quick overview of differences, see the following page in the Oracle Help Guide:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Oracle Help File Formats."
    3. Click "Comparision to Javahelp File Formats."
    To create an Oracle Help full text search index, run through the Helpset Authoring Wizard and remove the existing JavaHelp search view and have the wizard generate an Oracle Help Search index
    on the following wizard page. For the Helpset Authoring Wizard doc:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Authoring Oracle Help Systems."
    3. Click "Using the HelpSet Authoring Wizard."
    Alternatively, change the helpset file by hand. For the doc:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Oracle Help File Formats."
    3. Click "Helpset File."
    Then run the indexer. For doc:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Authoring Oracle Help Systems."
    3. Click "Using the Full-text Search Indexer."
    On the development side, the APIs are different, but they are also very
    simple. You create a Help object, add HelpSets, and associate topic-ids
    with java UI components using the CSHManager as described in the
    Oracle Help Guide:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Oracle Help for Java Developer's Guide."

  • How to deploy JavaHelp server help demo on JBoss?

    I tried JavaHelp's server help demo on tomcat it worked fine. I was able to view all the help docs. But I need to change the configuration for the demo to work on JBoss-4.0.1. I deployed the content on Jboss but when running the index.jsp, I got this error. What am I missing? Do I need to change the implementation or what? Any input is appreciated.
    org.apache.jasper.JasperException: File "/jhlib.tld"; not found
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:411)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:118)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:159)
           org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:418)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:483)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1539)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:220)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:101)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:203)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:470)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)

    BPEL Console is for deploying BPEL projects. And when you talking about war file, those are web archive files, application server specific. Please refer to the Application Server document for deploying war files. Like for OC4J, you can do the same via Enterprise Manager.

  • JavaHelp UI help

    Hi,
    I have noticed that when I run JavaHelp with hsviewer the window that comes up has a menu bar with the "File" and "Options" menu. However, when I launch JavaHelp from my own application that menubar does not show up. Can anyone please tell me why this is?
    Also, does anyone know how to modify the UI of JavaHelp? (as in, if I wanted to add another menu to the viewer, or add a new button, etc.). Any help in this matter would be greatly appreciated. Thanks.
    Farzana

    Hi Farzana,
    Can you show me how to launch JavaHelp from an application?
    My application has a help menu, with a "Context Help" menu item.
    When the user clicks on the menu item, I want to launch JavaHelp, and display the topic related to the screen that they are on.
    Each screen has a unique name (String) which I can get when the user clicks on the help menu.
    Do you have any code I could use?
    Regards,
    Enrico
    [email protected]

  • Javahelp or html help?

    I have a cross platform application that I'm finally putting the help file together for, using Robohelp. The javahelp files look pretty bad and seem to be constructed differently each time I compile, in additions to poor font support. I'm now starting to think about using a HTML based system and to open it on IE on the PC and Safari on the Mac. Does anyone have any comment on this approach, will there be problems or functionality loss?
    thanks

    I don't know what 'Robohelp' is, but have you tried Sun's own JavaHelp 2.0?
    kind regards,
    Jos

  • Modular JavaHelp? Can the Merge function cope with non-existent help sets?

    We are writing a universal application which is intended eventually to manage perhaps 20 different pieces of our equipment. There will be a skeleton/umbrella application that is always present, and each customer will receive plug-in modules for the pieces of equipment they buy.
    We want the help system to seamlessly display all and only the modules that are present, indexed and made searchable; without mentioning others that are not present.
    My predecessors here were convinced that JavaHelp could cope with that. I don't see how.
    Three of the twenty modules are ready to go now, and I don't know what to do about the 17 or so that are missing. Do I add them to the main help set via the merge function using ficititous names and locations which then have to be recorded for posterity so the other modules when they are issued will know what to call their help and where to put it? If I don't add their names now, how will the main help set know when and if they show up?
    TIA for any advice and suggestions you have.
    Alfred B. Stansbury

    We are doing something similar. In our case, the skeleton app has a plugin extension point for help. Its a very simple extension point only specifying the path to a javahelp helpset. Any plugin modules that extend this extension point have those help sets loaded into the main skeleton help. Java helps merge capability makes this all possible.
    Nick

Maybe you are looking for