Thanks alot everyone. I finally I got it to work after changing little bit with my app.
Danh PS: If everyone wants to know the frame work that's I am using, you can check it at http://www.activeintellect.com. It's easy to use to create complex web apps and it's open source. The product is called Aspire. ----- Original Message ----- From: "Aurelien Pernoud" <[EMAIL PROTECTED]> To: "'Jetspeed Users List'" <[EMAIL PROTECTED]> Sent: Wednesday, November 13, 2002 9:37 AM Subject: RE: Using Frame in JetSpeed Finally found a way to have a frame at start : Open web.xml in Jetspeed/WEB-INF, and change following lines : <welcome-file-list> <welcome-file>index.jsp</welcome-file> <welcome-file>index.wml</welcome-file> <welcome-file>index.html</welcome-file> </welcome-file-list> to <welcome-file-list> <welcome-file>portal.jsp</welcome-file> <welcome-file>index.wml</welcome-file> <welcome-file>index.html</welcome-file> </welcome-file-list> An portal.jsp is the frameset, with one frame pointing to index.jsp. This works and doesn't create multiple frames imbricated on every action... Aurelien > -----Message d'origine----- > De : Aurelien Pernoud [mailto:apernoud@;sopragroup.com] > Envoy� : mardi 12 novembre 2002 16:54 > � : 'Jetspeed Users List' > Objet : RE: Using Frame in JetSpeed > > > > I've tried it for my need but your solution has trouble : > After an action on a portlet, the index.jsp is called (every link to > '/jetspeed/') and then you get more and more imbricated frames :) > > So I suggest to never put a frameset inside the index.jsp, or > you'll have to > modify many classes/templates to never do a redirect to > '/jetspeed' but to > '/jetspeed/portal'... > > Other solution (the one I used for the moment) : > make a portal.jsp that you must call in your browser at first > and that has > the frameset to point to index.jp in one frame. > > > -----Message d'origine----- > > De : Luta, Raphael (VUN) [mailto:Raphael.Luta@;groupvu.Com] > > Envoy� : mardi 12 novembre 2002 16:28 > > � : 'Jetspeed Users List' > > Objet : RE: Using Frame in JetSpeed > > > > > > Are you sure you need Jetspeed to handle frames ? > > Maybe what you want is simply to invoke your portal > > within a frame of a standard frameset ? > > > > In this case: > > - set in JetspeedResources.properties > > leftnav.enable=false > > bottomnav.enable=false > > topnav.enable=false > > - change the index.jsp file to load your frameset > > > > index.jsp: > > <frameset cols="50,*"> > > <frame src="<whatever you want>"> > > <frame src="/jetspeed/portal"> > > </frameset> > > > > Isn't that enough ? > > > -- > To unsubscribe, e-mail: <mailto:jetspeed-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:jetspeed-user-help@;jakarta.apache.org> -- To unsubscribe, e-mail: <mailto:jetspeed-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:jetspeed-user-help@;jakarta.apache.org> -- To unsubscribe, e-mail: <mailto:jetspeed-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:jetspeed-user-help@;jakarta.apache.org>
