> From: Je vous site [mailto:[EMAIL PROTECTED]]
> 
> Thank you very much Vadim, it's perfect.
> 
> I would like to understand why it works this way : which entry of the
> javadoc API of Cocoon must i read.

Better if you take a look at the generated Java code for the XSP page,
at least once. You will have better understanding of the XSP.

See also:
http://xml.apache.org/cocoon/apidocs/index.html
(this link could be found on the
http://xml.apache.org/cocoon/developing/index.html page, "API
(Javadoc)")

See XSP documentation:
http://xml.apache.org/cocoon/userdocs/xsp/index.html


> I have found the Interface request, but not the Object request.

org.apache.cocoon.environment.http.HttpRequest
org.apache.cocoon.environment.commandline.CommandLineRequest
...


> In fact
> I would like a schematic structure of the object cocoon. If this
schema
> exist, please give me the url

I'm not sure what you are asking for, but if you want some kind of UML
diagrams I guess that they do not exist. Still, you always can use tools
like Together Control Center to quickly generate them (Together
Whiteboard edition is free and can draw nice class diagrams).

Vadim

 
> Vadim Gritsenko wrote:
> 
> >AFAIU,
> >
> >You want, in main.xsp:
> ><xsp:logic>
> >  request.getSession().setAttribute("my-data", myObject);
> ></xsp:logic>
> >
> >In svg.xsp:
> ><xsp:logic>
> >  MyObject myObject =
> >(MyObject)request.getSession().getAttribute("my-data");
> ></xsp:logic>
> >
> >
> >Vadim
> >
> >-----Original Message-----
> >From: Je vous site [mailto:[EMAIL PROTECTED]]
> >Sent: Tuesday, March 19, 2002 10:33 AM
> >To: [EMAIL PROTECTED]
> >Subject: Session Parameter
> >
> >hello,
> >
> >I'm not sure, what i want to do is possible or not.
> >I've got a main page named main.xsp with main.xsl, I've got a svg.xsp
> >with svg.xsl embedded.
> >I want to pass values from main to svg.xsp. I've tried to url-encode
the
> >datas : it works, but i want to give svg.xsp a large and variable
amount
> >of data. I've tried to get the session-id : no session-id available
in
> >svg.xsp, I've tried to give svg.xsp the session-id of main : i've got
an
> >error. Does someone manage to do what i want ?
> >
> >
> >Thank you for your help
> >
> >Xavier.
> >


---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

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

Reply via email to