David,
I don't know about support but I have done servlet to jsp data exchange... I do
it with a session bean. for instance:
<servlet side>
MyBean mb1 = new MyBean(); //instantiates the bean
mb1.setData("value"); //sets the 'data'
property to the String "value"
HttpSession ses = req.getSession(true); //gets a handle on the session
ses.putValue("mybean", mb1); //adds the bean to the
session
RequestDispatcher rd = req.getRequestDispatcher("/mypage.jsp");
rd.forward(req, resp); //forward to the jsp
page
</servlet side>
<jsp side>
<jsp:useBean id="mb1" scope="session" class="MyBean" /> //get the bean from
the session
<jsp:getProperty name="mb1" property="data" /> //display the
data
</jsp side>
hope this helps,
Matt Goss
"Harding, David" wrote:
> i have been looking all over for answers to my question/problem and have not
> gotten it resolved yet. my client is growing very concerned, as am i.
>
> anyone know where i can get some pay by incident support or does anyone want
> to volunteer to have me call them or email them directly for help?
>
> btw: my problem was with passing data from a servlet to a jsp page.
>
> cheers,
> david j harding
begin:vcard
n:Goss;Matt
tel;fax:919-657-1501
tel;work:919-657-1432
x-mozilla-html:FALSE
url:www.rtci.com
org:RTCI;Custom Solutions
adr:;;201 Shannon Oaks Circle;Cary;NC;27511;US
version:2.1
email;internet:[EMAIL PROTECTED]
title:Web Developer
fn:Matt
end:vcard