Re: Removing the Jakarta Jetspeed Portal information from theBrowsertitle

2003-03-25 Thread Ryan Christianson
Did you restart the server after you made the change? You do need to restart tomcat (or whatever servlet container you are using. Wilson, Allen wrote: I am using 1.4-b3. I tried that...I add the line as you gave it into the JetspeedResources file (wanted to see it work before doing the separat

Re: How to programmatically modify a PSML file?

2003-03-25 Thread Ryan Christianson
If you have a jetspeed user object, get the users profile. Then on the profile get the document. That document object is the users psml file. If you want to save changes to it, on the profile object, call "store()". Note, that you have configured to use a differnt psml service, other then casto

Add context data to default.vm

2003-03-21 Thread Ryan Christianson
I'd like to add a object to the default.vm context. Normally, to add data to the context I would create a VelocityAction class, and add it to the context there. However I can't figure what action is used to build the default.vm screen. Is there a way to do this? Thanks! Ryan Ch

Re: Sessions and Restarting Jetspeed

2003-03-12 Thread Ryan Christianson
urbine/jetspeed. I have had a couple of very basic Struts apps crap out on me after 3 or 4 reloads with an "out of memory" or "no class def found" exceptions. -scott -----Original Message- From: Ryan Christianson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 20

Re: Sessions and Restarting Jetspeed

2003-03-12 Thread Ryan Christianson
To me it seems that when the manager restarts the jetspeed context, some memory is left tied up somewhere in the jvm. I am guessing that it is one of the services out side of the servlet container, like in a service (duh right?).I did a bug search for memory related issues and found this bug:

Re: Sessions and Restarting Jetspeed

2003-03-12 Thread Ryan Christianson
I get the same problem, and sometimes I get a horrible exception, sometimes and out of memory error. This usually happens after I use the manger app to reload the application about 8-10 times. If I stop tomcat, then start it back up problems go away. Mark Orciuch wrote: I believe this has to d

Re: Does changes to the portlet registry file get imported automaticallyinto the database?

2003-03-11 Thread Ryan Christianson
My understanding is that its all abstracted by the classes in the org.apache.jetspeed.om.profile package. If you want to update a profile, and use the database implementation, then you need to make your changes through those interfaces. To get the profile for a user, do this: JetspeedRunData j

VelocityPanedPortletController.retrievePaneID question

2003-03-11 Thread Ryan Christianson
ifferent result. Any help? Thanks! Ryan Christianson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

small JetspeedIdGeneratorService fix

2003-03-03 Thread Ryan Christianson
The class JetspeedIdGeneratorService has the method in cvs: public String getNextPeid() { synchronized(JetspeedIdGeneratorService.class) { idCounter++; } return peidPrefix + Long.toHexString(System.currentTimeMillis()) + "-" + Long.toHexString(idCounter) + peidSuffix; } It seems

JetspeedPortletInstance.getAttributeNames

2003-02-27 Thread Ryan Christianson
ixed mode) - Apache Jetspeed Portal - Version 1.4-b3 - Tomcat 4.1 Is there something else going on? Thanks. Ryan Christianson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Custom customizer, setMode not working?

2003-02-27 Thread Ryan Christianson
I have a custom customizer. If the user enters bad data in my customizer form, I want to set the mode back to customize so the user is sent back to my customizer form (where I'll show the same form, with error messages). Right now in my Action class, I call: jRunData.setMode( JetspeedRunData.CU

Re: Action question

2003-02-27 Thread Ryan Christianson
a? thanks! Michael Rothrock wrote: On 2/26/03 2:31 PM, "Ryan Christianson" <[EMAIL PROTECTED]> wrote: My question is how can I provide extra information for this Action so that my doPerform method can use this information. I looked into how jsp It depends on the origin of the e

Action question

2003-02-26 Thread Ryan Christianson
tletAction object. For example: PortletURI saveUri = response.createReturnURI(); SomePortletAction actionInfo = new SomePortletAction(); actionInfo.setSomething( something ); saveUri.addAction( actionInfo ); Is there a similar feature in jetspee