how to get logged in users

2005-02-03 Thread apache
Hello, how can I get a list of all current logged in users? Thank you.

Re: "hasLoggedIn" property and UserBrowser portlet

2005-02-03 Thread Vladimir Figurov
8) hi! tezka!!! In velocity, if use full method's name, need write "hasLoggedIn()". #entryCell ($!user.hasLoggedIn()) but this - not help you 8((( - as is hasLoggeId look in TEMP hash in user object - and, on Browser User portlet the any user-object return FALSE 8((( Vladimir Lisin wrote: Hi

adding a role in role-based PSML [J1]

2005-02-03 Thread Archana Turaga
Hi, I changed my property files to do role-based. When I login as "admin/jetspeed" and add a new role. Assign a user to this new role only (the user is not mapped to any other roles) and login as that user I get the message "Error retrieving profile". I looked at the JetspeedProfilerService

Re: [J1] ConnectionPool

2005-02-03 Thread Hema Menon
Daniel, We are using Connection Pooling thru Apache commons. For our configuration, in the jetspeed.xml, we changed the default factory to use our DataSourceFactory, which uses commons connection pooling. factory com.xx.yy.zz.abcDataSourceFactory Hema On Thu, 3 Feb 200

Re: [J1] ConnectionPool

2005-02-03 Thread Hema Menon
Torque.properties is also configured to use our DataSource Factory. Hema On Thu, 3 Feb 2005 10:10:50 -0600, Hema Menon <[EMAIL PROTECTED]> wrote: > Daniel, > > We are using Connection Pooling thru Apache commons. For our > configuration, in the jetspeed.xml, we changed the default factory to >

[J1] ConnectionPool (REPOST?)

2005-02-03 Thread Daniel Brose
Hi all, using Jetspeed 1.6-dev I want to use the Torque ConnectionPool for accessing my own database in my portlets. How can I do so? I can't find any class in the javadoc that seems to fit (by classname) my needs. Any help would be appreciated Regards -- Daniel Brose http://www.daniel-brose

WRT bug JS2-189

2005-02-03 Thread Steve B.
(Is this the right place for this post?) Jira inclued issue JS2-189 which basically reports Exception "Cannot create JDBC driver of class '' for connect URL null" when running on Tomcat 5.5. I ran into this bug as well while trying to install J2 (CVS 02-02-2005) on Tomcat 5.5.7. I had seen this

[J1] ConnectionPool

2005-02-03 Thread Daniel Brose
Hi all, using Jetspeed 1.6-dev I want to use the Torque ConnectionPool for accessing my own database in my portlets. How can I do so? I can't find any class in the javadoc that seems to fit (by classname) my needs. Any help would be appreciated Regards -- Daniel Brose http://www.daniel-brose

AW: [J1] my.properties use problem

2005-02-03 Thread Daniel Brose
Hi Dan and all, > -Ursprüngliche Nachricht- > Von: Dan Moore [mailto:[EMAIL PROTECTED] > --- Daniel Brose <[EMAIL PROTECTED]> wrote: > > I also edited my web.xml like this: > > > > properties > > > > WEB-INF/conf/my.properties > >

AW: [J1] my.properties use problem

2005-02-03 Thread Daniel Brose
Hi Dan and all, > -Ursprüngliche Nachricht- > Von: Dan Moore [mailto:[EMAIL PROTECTED] > --- Daniel Brose <[EMAIL PROTECTED]> wrote: > > I also edited my web.xml like this: > > > > properties > > > > WEB-INF/conf/my.properties > >

Re: [J1] my.properties use problem

2005-02-03 Thread Dan Moore
Hi Daniel. --- Daniel Brose <[EMAIL PROTECTED]> wrote: > 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

Re: Build Jetspeed 1.5 with Maven

2005-02-03 Thread Dan Moore
--- Stefano Bianchi <[EMAIL PROTECTED]> wrote: > Dear Dan, > I tried your option and now I got a jetspeed-1.5.jar in my target > folder. Great. > Is it the same for deploy on Tomcat? Or should I have a .war? (Sorry, > newbie > question...) Are you using maven? After you get the new jetspeed.j

"hasLoggedIn" property and UserBrowser portlet

2005-02-03 Thread Vladimir Lisin
Hi all, I wanted to add in the table of users in UserBrowser portlet the column with flag "hasLoddeIn". But simple insert the line " #entryCell ($!user.hasLoggedIn) " in user-browser.vm don't provide result. Why ? This "user" is JetspeedUser and has ".hasLoggedIn" property !? In UserBro

Re: File Upload

2005-02-03 Thread Carlos Torres
I used all of the answers and made this: private boolean uploadFile(RunData runData, String location) { boolean ok = false; try { Object filename = runData.getRequest().getParameter("filename"); FileItem fi = runData.getParameters().getFileItem("filename"); FileUploader f

Some questions PortletSessionState

2005-02-03 Thread angeloimm
Hi all; this is my scenario: i have several portlets in a page; i have, then, added a portlet that works as navigator by reading some parameters from xml file. These parameters' id are passed by the other partlets in the same page; this portlet must set an attribute into session and this first

Re: Dynamic Portlet loader – is it possible?

2005-02-03 Thread Andrew Hill
Ive been doing something like this (with JSR168 portlets). Dont have time to explain in great detail, but the way it works is that all the portlets are actually the same portlet class, and based on an 'operation name' it delegates the actual work to another helper class thats mapped to that oper