Re: Build Jetspeed 1.5 with Maven

2005-02-01 Thread Stefano Bianchi
Dear Dan, I tried your option and now I got a jetspeed-1.5.jar in my target folder. Is it the same for deploy on Tomcat? Or should I have a .war? (Sorry, newbie question...) Furthermore, in the thread you suggested me, I saw you made several changes to get your Oracle stuff: I thought it was suff

Re: Nested portlet?

2005-02-01 Thread David Sean Taylor
Nan Anonymous wrote: You can setup a portlet pipeline and retrieve only the content for one portlet within another portlet. This is what we do in Jetspeed 1.6 fusion to support jsr 168 portlets Thanks. Can you point me to the document about this portlet pipeline? I suppose there can be an API (as

Re: Database Related Question

2005-02-01 Thread David Sean Taylor
Shah Amit wrote: Thanks for the reply. Now I already have an existing schema where I have a users table with some users and I check logins against that table in my existing schema. In that case, how should I configure my authentication mechanism ? Should I translate my current "user" and related

Re: users/roles/groups creation and saving

2005-02-01 Thread David Sean Taylor
Marina wrote: Hi! I'm trying to find an easy way to add new users/roles/groups to J2 permanently (using HSQL DB for now). By that I mean that I want to persist newly created objects in the DB between upgrades of J2. Currently, when you update and rebuild J2 from CVs, for example, you have to run t

Editor of choice for portlet developement

2005-02-01 Thread Shah Amit
I think its gonna be Netbeans or Eclipse, but what would probably be like the "recommended" editor from the makers of Jetspeed if I may say ! Amit - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

Re: J2-SSO

2005-02-01 Thread Shah Amit
Thanks for your reply. I just clicked the reply button to the email, without noticing that the "reply-to" is set to [EMAIL PROTECTED] I really didn't have any intentions to direct the question to any individual users at all. Appologize for that ... (Usually the reply-to address is set to jetspee

Re: J2-SSO

2005-02-01 Thread Roger Ruttimann
Please post questions to the list so that people can learn from other peoples issues and solutions. SSO is used to insert credentials for external applications into a request. If a user isn't authenticated (logged in) it doesn't have access to the SSO API. For your scenario you have to migrate

Re: Security web.xml Example

2005-02-01 Thread Marina
I had the same problem with the 'security' web app "disappearing" after re-building J2. I've used the same approach as Ate suggested - remove security.war from jetspeed's deploy dir, let J2 undeploy it, then move it back. Worked like a charm :) Marina --- Ate Douma <[EMAIL PROTECTED]> wrote: >

Re: Security web.xml Example

2005-02-01 Thread Ate Douma
Stephen Hatfield wrote: Hello- I have installed J2 on Linux and all is working properly except the login portlet is empty. I saw a previous post on an addition to the web.xml file in security/WEB-INF. I have no files at all in that directory in webapps in Tomcat (5.0.28). Then something went wr

Maximising a portlet by default

2005-02-01 Thread John Patrick
I'm looking for a way to configure a portlet to be maximised by default in Jetspeed2 (a request from our portal users). I had a look through the examples and couldn't see anything but then found that some of the Jetspeed code (e.g. see the Fragment class) seems to support a 'status' attribute withi

users/roles/groups creation and saving

2005-02-01 Thread Marina
Hi! I'm trying to find an easy way to add new users/roles/groups to J2 permanently (using HSQL DB for now). By that I mean that I want to persist newly created objects in the DB between upgrades of J2. Currently, when you update and rebuild J2 from CVs, for example, you have to run the 'maven qu

Re: Default Home Pages

2005-02-01 Thread Randy Watler
Frank: Your scenario is typical. Check out the subsite demo in the cvs HEAD: login as subsite/subsite and then as subsite2/subsite2. This is just to give you some food for thought... you will no doubt need some combination of different Profiler implementation approaches. There are recent descri

Re: File Upload

2005-02-01 Thread Alan Chiang
I pretty much followed the instructions in the link I sent you. I created a JSP page with a form, and used Turbine's parameter parser to snag the FileItem. If you read the FileItem's api, its very easy to use. I just call a write on the FileItem when I can confirm its all good. Don't be afraid

RE: Default Home Pages

2005-02-01 Thread Frank Villarreal
Thanks Randy. Let's see ... I currently have a corporate web site that has general info on my company (about us, contact us, history, etc) ... I've made that my "public" psml page. So as per your suggestion, I'll try and place the psml for this page under the "/pages/_user/guest/" folder. Somewhe

RE: Why is the login portlet authenticating twice?

2005-02-01 Thread Pesendorfer, Tom
Yes, I also noticed that with the example portlets that come with Jetspeed (e.g. drop "demo.war" into JS2's "deploy" directory and it expands it into a "demo.war" directory in JBoss' deploy directory but *also* creates an empty "demo" directory there). Thanks for the feedback, I'll update the wiki

Re: Default Home Pages

2005-02-01 Thread Randy Watler
Frank, There are many "nice" ways to accomplish this with J2 using the Profiler. Custom home pages per user, group, or role are easily supported. One can also select different home pages using different profiling rules. Once you get used to using the profiler, it is fairly powerful and flexible.

Re: J2-SSO

2005-02-01 Thread Roger Ruttimann
With J2-SSO you can map Jetspeed users to application credentials. If you have login pages but you like to bypass the login by providing the credentials you can use the SSOWebContent portlet or subclass the portlet and define in our implementation how the credentials should be passed to your lo

RE: Default Home Pages

2005-02-01 Thread Frank Villarreal
Thanks for the response Scott. Does anyone know if there is currently a way to configure jetspeed 2 to use a different subsite (subfolder) or a different once a user logs in? In other words, I'd like to have a "public" psml default page ... and then route the user to either a subsite or a differ

J2-SSO

2005-02-01 Thread Amit Soni
Hi all, I already have three java based web application ready and all of them are using their own db. and all have their own user name and password now i want to integrate all of these applications in J2 and want to implement SSO within it. I mean all of these application have their own login pa

Re: Build Jetspeed 1.5 with Maven

2005-02-01 Thread Dan Moore
--- Stefano Bianchi <[EMAIL PROTECTED]> wrote: > Dear ALL (and David Sean, if you are there!), > I tried to build Jetspeed with Maven since I want to migrate to > MySql. > > I installed Maven, > tested it with Maven -v, > checked the mailing list (similar questions, not this one!), > checked the

Build Jetspeed 1.5 with Maven

2005-02-01 Thread Stefano Bianchi
Dear ALL (and David Sean, if you are there!), I tried to build Jetspeed with Maven since I want to migrate to MySql. I installed Maven, tested it with Maven -v, checked the mailing list (similar questions, not this one!), checked the installation guidelines for Jetspeed (there is already a project

Re: Database Related Question

2005-02-01 Thread Shah Amit
Thanks for the reply. Now I already have an existing schema where I have a users table with some users and I check logins against that table in my existing schema. In that case, how should I configure my authentication mechanism ? Should I translate my current "user" and related tables to "Jetsp

RE: Passing portlet parameters

2005-02-01 Thread angeloimm
Hi; first of all thanks for your reply; i'ld like to know if it's possible from a portlet A to read the psml of a portlet B; if it's possible this could resolve my problems... thanks. -- Initial Header --- >From : "Frank Villarreal" [EMAIL PROTECTED] To : "Jetspeed

Security web.xml Example

2005-02-01 Thread Stephen Hatfield
Hello- I have installed J2 on Linux and all is working properly except the login portlet is empty. I saw a previous post on an addition to the web.xml file in security/WEB-INF. I have no files at all in that directory in webapps in Tomcat (5.0.28). I have a question and a request. Question - w

Re: Default Home Pages

2005-02-01 Thread Scott T. Weaver
Hi Frank, Here is an example of both specifying document order and overriding the default page (this is defined the folder.metadata). home.psml marketing.ds news.ds products.ds tools.ds training.ds solidedge_main.psml solid-edge.link solid-edge-release-info.link Frank Villarreal

RE: How to get a logged in users Role and Group

2005-02-01 Thread Archana Turaga
To get user: data.getUser().getUserName(). Then use the following code to get the role valuein our case we just had one role associated with a user therefore it retrieves the first GroupRole object to get the value. The same can be used to get the group name for the user. public String getRo

Re: File Upload

2005-02-01 Thread Alan Chiang
http://64.233.167.104/search?q=cache:c-b-JjQJntcJ:www.mail-archive.com/jetspeed-user%40jakarta.apache.org/msg10114.html+commons+fileupload+portlet+tutorial&hl=en Grabbed this from the Jetspeed archives; the classes are deprecated, but it has thus far worked for me on J1.6. Hope this helps! Alan

RE: Default Home Pages

2005-02-01 Thread Frank Villarreal
Forgot to mention, I'm using Jetspeed 2 ... -Original Message- From: Frank Villarreal [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 01, 2005 08:05 AM To: Jetspeed Users List Subject: Default Home Pages There is probably a simple solution for this, but . I've noticed that und

Default Home Pages

2005-02-01 Thread Frank Villarreal
There is probably a simple solution for this, but . I've noticed that under "WEB-INF/pages" there is a "default-page.psml" file that becomes the "home" page for anyone who navigates to "jetspeed/portal" using the default configuration. I've also noticed that "default-page.psml" is not the

RE: Passing portlet parameters

2005-02-01 Thread Frank Villarreal
If they are deployed as part of the same "portlet application" ... then you can use the PortletSession to share state data between your 2 portlets ... if you're referring to "preference" parameters ... then you might try implementing some type of portal service that can feed data about other portle

Passing portlet parameters

2005-02-01 Thread angeloimm
Hi all... i have this scenario: i must read a parameter from portlet A into portlet B how can i do? 6X velocizzare la tua navigazione a 56k? 6X Web Accelerator di Libero! Scaricalo su INTERNET GRATIS 6X http://www.libero.it

How to get a logged in users Role and Group

2005-02-01 Thread Bhaskar T
Hi All, How should I get the logged in users ROLE and GROUP in the top_loggedIn.jsp Thanks in Advance Bhaskar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

maven checkout issue?

2005-02-01 Thread Aaron Aston
When I try to check out the J2 source using maven (as per the Project Info pages) I run into the following problems: __ scm:checkout-project: scm:cvs-checkout-project: [echo] Checking out jakarta-jetspeed-2; from CVSROOT: :pserver:[EMAIL PROTECTED]:/ho

[J1] my.properties use problem

2005-02-01 Thread Daniel Brose
Hi all, as suggested in http://portals.apache.org/jetspeed-1/config_guide.html#Override_any_properti es_in_default_property_files, I want to use my own properties-file my.properties. I use the one which came out of the CVS which includes the two required entries: services.ResourceService.classname

How to set tab background image in skin.css?

2005-02-01 Thread 綠羽毛
Dear all, I have a question about tab control, I can setup tab using images in skin.css,but rest of place is still white. I can add tab background image in jetspeed-tab.vm from following code: ## #if (! $data.Customized ) #if ( ! $tabs ) #parse ("jetspeed.vm")

RE : [J2] Newbie: Error 404 with login portlet

2005-02-01 Thread romain bisse
Hi, I still encouter a 404 error, even after a CVS update. The URL is still missing the "/jetspeed" context: http://localhost:7001/security/login/proxy I guess I have the latest version of the *.jsp in security portlet: ... Regards, -Message d'origine- De : Ate Douma [mailto:[EMA

AW: File Upload

2005-02-01 Thread Christopher Wood
Return Receipt Your AW: File Upload document:

AW: File Upload

2005-02-01 Thread Christopher Wood
Return Receipt Your AW: File Upload document:

Re: Why is the login portlet authenticating twice?

2005-02-01 Thread Marcel Dullaart
Hi Tom, Using your description, I got J2 running on JBoss 4.0.1. Indeed I had to use the hot deployment feature to get the portlet bodies to show-up, but I did not have to undeploy/re-deploy when I shutdown JBoss, it still seems to work. There's one peculiarity though, when I hot deploy a portlet