• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

doubts in portlets

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello friends,

i want details about portlets (JSR 168)

1.portlet is a advance concept?
2.learning portlets is usefull
3.Tell me some usefull links for portlets
4. I WANT TO DEVELOP A PORTAL WITH PORTLETS?
 
author and cow tipper
Posts: 5009
1
Hibernate Spring Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is Portlets an advanced concept?

I'd say no. Portlets are supposed to be very view centric, and work in a service-oriented architecture. The API is actually very small and very simple, and maps back to the Servlet/JSP API at almost every turn. A PortletSession is very similart to an HttpSession. A PortletRequest is similar to a HttpServletRequest, and so on, and so on.

Servlets are very 'veiw-centric.'

Do you want to write some Portlets, and maybe even test them. You can download the JetSpeed Portal Server and install it on tomcat. Then you can write and test your own portlets. JetSpeed is a great portal server.

Any good books? Well, I'd say mine are good, but I'm biased. lol. I've got a number of WebSphere Portal tutorials on my website which, based on my monthly bandwith costs, are very popular. Feel free to check them out!

http://www.technicalfacilitation.com/examscam/get.php?link=../portal/tutorials

Good luck, and Happy Portal!

-Cameron
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can get the PortletSession by calling the getPortletSession() on the ActionRequest object. Like the Servlet api this is also overloaded and the overloaded getPortletSession() method takes a boolean. So you can use either of these based on your requirements.

ie., something like
actionRequest.getPortletSession() or actionRequest.getPortletSession(boolean)
===================
low cost affordable ivf florida
how to convert videos for free
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic