Single Sign-On in Jetspeed2

2005-01-17 Thread Daniela Innerwinkler
hi list! is there any documentation how single sign-on is implemented in jetspeed? if not, could anyone please give me a short overview about the functionality? For example: if there are several applications integrated as portlets, each of them requires login. is it possible to store the login

Creating a my Customizer

2005-01-17 Thread angeloimm
Hi all... can anybody tell me how i can create my own customizer? What i'm not able to understand is... if i have my portlet and i want to customize it i can do it by clicking the link customize when i'm log in as admin now if i want to change this link in order to point to my customizer

How to get Session in portlet

2005-01-17 Thread Amit Soni
Hi all, Here i have made my own login then using this login page i get logged in jetspeed. In this login page i have set one session and want to access this session in each portlet of jetspeed now i after login i have few panes in which i have IFramePortlet for that i have written class...

Re:How to get Session in portlet

2005-01-17 Thread angeloimm
Hello; in the method public ConcreteElement getContent(RunData runData) you can use runData in order to have Session: HttpSession session = runData.getRequest().getSession(); it works fine for me i hope the same for you :-)) regards -- Initial Header --- From : Amit

cannot deploy jetspeed 2 in jboss 3.2.5

2005-01-17 Thread Lim Wei Min,Amos
hi there, i have been tryin to deploy jetspeed 2 in jboss 3.2.5 with no luck. i followed the instructions listed in this wiki, http://wiki.apache.org/portals/Jetspeed2/JBossHowTo. as seen below, the error started with error reading tld listeners. then after the subsequent long list of errors,

How to aggregate portlet

2005-01-17 Thread angeloimm
Hi all... i need to aggregate the content of several portlets. how can i do this? This is my scenario: I have a principal portlet in which i must insert other portlets and i'ld like to arrange their position as i want. how can i do this?

Re: Re:How to get Session in portlet

2005-01-17 Thread Amit Soni
Hi, Thanks for u r interest... Here i have made my login page in another context say xyz... not in xyz context i have one page the content is like :: test.jsp :: String sendUrl = http://ipaddress:port/jetspeed/portal?action=JLoginUserusername=namepassword=password;

Re: Re:How to get Session in portlet

2005-01-17 Thread angeloimm
Hello... according to me you cann't use response.sendRedirect(response.encodeRedirectURL(sendUrl)); try by using: request.getRequestDispatcher( response.encodeRedirectURL(sendUrl) ).forward( req, resp ); -- Initial Header --- From : Amit Soni [EMAIL PROTECTED] To

Re: Single Sign-On in Jetspeed2

2005-01-17 Thread Jeff Sheets
You can use the security of your container (app server) easily in Jetspeed 2 through the JAAS connectivity. In Jetspeed 1, authentication is easy, but authorization requires a little code on your part. In either case, you just setup your security in your application server, and then all of your

Re: Re:How to get Session in portlet

2005-01-17 Thread Amit Soni
hi, when i try like this :: request.getRequestDispatcher(response.encodeRedirectURL(sendUrl)).forward( request, response ); then it gives error like this The requested resource (/netcore/http:/ipaddress:port/jetspeed/portal) is not available. Regards, Amit On Mon, 2005-01-17 at 19:03,

Re: Re:How to get Session in portlet

2005-01-17 Thread Shah Amit
I think it is as follows. I dont think you can use forward, or redirect. PortletContext context = getPortletContext(); PortletRequestDispatcher rd = context.getRequestDispatcher(whatEverPage); rd.include(request, response); .include transfers control to that

J2 JAAS

2005-01-17 Thread Shah Amit
Hi All, I am trying to use JAAS provided by J2. Is there any documentation on how to use that ? I tried reading all the test examples they have and read all the code for security. here is my problem, when I follow JAAS client-side specification and try to use J2's JAAS. I get NULLPointer

Re: Hide Panes in JetSpeed

2005-01-17 Thread Carlos Torres
I saw the example and put this in my psml file: control name=TabControl/ controller name=TabController/ portlets id=P-fe8d2567cb-1 metainfo titleHome/title /metainfo security-ref parent=owner-only/ layout position=0 size=-1/

Re: cannot deploy jetspeed 2 in jboss 3.2.5

2005-01-17 Thread David Jencks
Are you aware that jetspeed takes over all logging for the entire app server? IIRC this happens right after the JNDI SystemProperty flag null message, which is not an error. If you look around in the deployed copy of jetspeed you will probably be able to find the logs which may give some

Re: Hide Panes in JetSpeed

2005-01-17 Thread Carlos Torres
There are any _tabstate parameter? There is a document with all options of jetspeed configuration. For example, the .psml files? If anybody has it, please send me. Thanks Regards Carlos - Original Message - From: Carlos Torres [EMAIL PROTECTED] To: Jetspeed Users List