Hallo Martin, Hallo Ate,

Many thanks for the help! :)
It works :))

2006/8/27, Martin Dulisch <[EMAIL PROTECTED]>:
Hi Michael,

you call setAttribute with Portlet_scope attribute. You should set the
attribute also in application_scope. May be this solves the problem.

Martin


2006/8/27, Michael Boss <[EMAIL PROTECTED]>:
> Hi All,
>
> I have two Portlets. One transfers data to another. For example I
> transfer attribute "name":
>
> PortletSession session = request.getPortletSession();
> String name = "TestName";
> session.setAttribute("mf_name", name,PortletSession.PORTLET_SCOPE);
>
> And another portlet receives this attribute:
>
> PortletSession session = request.getPortletSession();
> String name = (String) session.getAttribute("mf_name",
> PortletSession.APPLICATION_SCOPE);
> System.out.println("Name: "+name); Here I receive null (name=null).
>
> What is wrong? What I do incorrectly?
>
> Many thanks
>
> ---------------------------------------------------------------------
> 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