Hi Frank,

Thanks for your reply.  That's a very interesting idea.  Not sure if
there is an ADF-supplied id, but I'll look into doing it that way if I
can't find another solution.

Thanks again,

Jim

-----Original Message-----
From: Frank Felix Debatin [mailto:[EMAIL PROTECTED] 
Sent: 16 February 2006 17:07
To: 'MyFaces Discussion'
Subject: RE: ADF Faces processScope problem

Hi James, 

we're not yet using the process scope facilities of ADF, but intend to
do so in the future. Thus, I read you message with high interest. 

Maybe the following is an alternative. Instead of putting your own stuff
in the process scope map, keep a map of yourself somewhere. If there is
an ADF-supplied id in the process scope available (I saw they had
something like a pageflow id), you can use this is a key in your own
map. Like:

myMap.put(adfContext.getProcessScope().get("XYZID"), myValue) 

and later 

myValue =(MyData)myMap.get(adfContext.getProcessScope().get("XYZID"))

In this way, you don't rely on altering the process scope map. Just an
idea.

Frank Felix


Reply via email to