I have the same problem.
It seems to come from the  doStartTag method of the JetspeedPaneTag Class :
I have tried a fix but I don't know if it is a good one.... perhaps raphael
has a better solution ?

the old code whas the following :

if ((name == null) || "default".equals(name) || "".equals(name))
{
        result = data.getProfile().getRootSet().getContent(data);
}

I replaced with the following :
if ((name == null) || "default".equals(name) || "".equals(name))
{                               
        PSMLDocument doc = data.getProfile().getDocument();
        if (doc != null)
        {                       
                result = PortalToolkit.getSet(doc.getPortlets())
                                                  .getContent(data);
        }
}

I Hope this will help you.

Christophe Mestrallet


-----Message d'origine-----
De : McClelland, Mark [mailto:[EMAIL PROTECTED]]
Envoy� : mercredi 20 juin 2001 00:12
� : [EMAIL PROTECTED]
Objet : RE: Customize Not Saving Changes


I have noticed the same problem.  Logging out and logging back in causes
the change in customization to take effect.

-----Original Message-----
From: Tim Williams [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 19, 2001 12:38 AM
To: [EMAIL PROTECTED]
Subject: Customize Not Saving Changes


customize not customizing.  after I make my selections on the customize 
screen and click finish none of my selections are saved.  it doesn't
complain 
or let me know that nothing was saved, it just goes back to my main
page.  
any ideas?
--tim

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to