• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Java-Help vs. Eclipse-Help (RCP-Help)

 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi everyone

can please someone tell me what the big difference between java-help and eclipse-help is? as i can see it both standards use xml files which are linked to html-pages. which standard would you recommend and why? by the way, the application im writing is probably going to be using eclipse's rcp standard (this does not mean I'd have to you use the eclipse-help, does it?).
and does anyone know any good tools which could help me creating these help-files (does not necessarily have to be freeware).

Thanks in advance for your time!

with kind regards
 
Ranch Hand
Posts: 1078
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Based on this article and my limited experience with Java Help there seems to be several major differences. The first and perhaps most significant is that Eclipse Help actually runs off an embedded Tomcat server. My recollection is that Java Help merely finds the HTML file on disk and displays it. With Eclipse Help you would be able to use JSPs and probably other technologies since it runs off of Tomcat. As far as I'm aware that's not possible in Java Help. Also, the article mentions easily converting Eclipse Help to standalone documentation. That might be possible with Java Help too so I can't say whether or not it's a difference. Also, because Eclipse Help runs off of Tomcat you can take advantage of the Apache Lucene search engine. I'm not aware of what engine Java Help uses or how they compare.

Overall, it sounds like Eclipse Help brings more overhead and a little complexity with a lot of added flexibility. Of course you should research this on your own and make your own decisions, that's just what jumped out of me and may be inaccurate.
 
Isaac Jones
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi

thanks a lot for your answer. that helps already. do you or anyone else know if you could run the tomcat server on a server so that not every client would have to start its own tomcat?

regards
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic