• 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:
  • Campbell Ritchie
  • Ron McLeod
  • Liutauras Vilda
  • Paul Clapham
  • paul wheaton
Sheriffs:
  • Tim Cooke
  • Devaka Cooray
  • Rob Spoor
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:

New to Portlet

 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does JSR-168 cover JSP and applet Portlet?
How should I get started w/ an open source Portlet container?
Is Jetspeed1.6 good?
 
Sheriff
Posts: 4313
Android IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
>> Does JSR-168 cover JSP and applet Portlet?
- JSR-168 covers Portals and portlets. A portlet is related to a servlet... not an applet. They define a portlet as:

from JSR-168, section PLT2.2 "What is a portlet"
A portlet is a Java technology based web component, managed by a portlet container, that processes requests and generates dynamic content. Portlets are used by portals as pluggable user interface components that provide a presentation layer to Information Systems....


Reading some of the links on top of the forum may give you a better idea about portlets.

>> How should I get started w/ an open source Portlet container?
Most vendors should have some decent documentation and some sort of "Hello World" portlet tutorial that will get you started. Check out some of the links listed at the top of the Portlet forum, possibly Caucho's portlet tutorials.

>> Is Jetspeed1.6 good?
... no idea, hopefully someone else can help with this question.
[ November 05, 2005: Message edited by: Jessica Sant ]
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JetSpeed is easy to use, although it has a definite learning curve if you want to create your own portlets. Not having used other portal software, I'm not sure this complexity can be further reduced, though. Out of the box it uses HSQLDB, but can be configured to use all popular JDBC-accessible databases.
This is probably not much help, as I can't make comparisons, but JetSpeed doesn't require a huge deal of time to set up and get going, so you can test-drive it yourself easily enough.
 
Silvio Esser
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Jessica Sant:
>> Does JSR-168 cover JSP and applet Portlet?
- JSR-168 covers Portals and portlets. A portlet is related to a servlet... not an applet. They define a portlet as:

Reading some of the links on top of the forum may give you a better idea about portlets.

>> How should I get started w/ an open source Portlet container?
Most vendors should have some decent documentation and some sort of "Hello World" portlet tutorial that will get you started. Check out some of the links listed at the top of the Portlet forum, possibly Caucho's portlet tutorials.



[ November 05, 2005: Message edited by: Jessica Sant ]



I saw JSR168 defines the Portlet API which is similer to Servlet API.
But I also saw some portlets which are built on JSP (not using Java classes)
and some are built on Applet. I'm not sure if these two types are covered by
JSR168 or just proprietary
[ November 06, 2005: Message edited by: Silvio Esser ]
 
Jessica Sant
Sheriff
Posts: 4313
Android IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Silvio Esser:
I saw JSR168 defines the Portlet API which is similer to Servlet API.
But I also saw some portlets which are built on JSP (not using Java classes)
and some are built on Applet. I'm not sure if these two types are covered by
JSR168 or just proprietary



Ahhh ok, I apologize, I misunderstood your question. I've not seen JSR-168 portlets built using an applet, as far as I know the spec doesn't cover that -- but hopefully someone knowing more than me can help to answer the question.
 
All that thinking. Doesn't it hurt? What do you think about this tiny ad?
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic