Retrieving user data from portal

2002-11-04 Thread R
How does one retrieve the user data that is stored in the data tags when going through the authentication framework? I've traced into code and it seems that its being saved in the session somewhere, but I can't seem to be able to figure out how to pull it from the session using the session

Re: Retrieving user data from portal

2002-11-04 Thread Markdelanoy
Look at the SessionTransformer. It retrieves it. Really session, authentication and the portal all work together. MD - Please check that your question has not already been answered in the FAQ before posting.

Re: Retrieving user data from portal

2002-11-04 Thread R
Right.. I've looked at the SessionTransformer. I'm assuming I will need to do some sort of: session:getxml context=??? path=/data/title/ or some such... but I don't know what context the authentication framework stores the user data in. Am I barking up the wrong tree? thanks, rob On Mon, 04

Re: Retrieving user data from portal

2002-11-04 Thread Markdelanoy
I personally don't use it, but remember going through the authentication code and seeing it. I'm not certain how well documented this is but take a look in Developer Section/webapps/session. There's probably some mention there. If not or not sufficient to your liking there's always the code.

Re: Retrieving user data from portal

2002-11-04 Thread Rob Johnston
Yup. It is context authentication. I totally missed this when tracing through the code. thanks! rob On Mon, 04 Nov 2002, [EMAIL PROTECTED] wrote: I personally don't use it, but remember going through the authentication code and seeing it. I'm not certain how well documented this is but