IBM Developer Works (dw) does a REALLY good job on their tutorials.
I've taken a few of them and I've been very pleased.
--- David Gallardo <[EMAIL PROTECTED]> wrote:
> Sure, here are some links:
> 
> Starting point for all tutorials:
> http://www-106.ibm.com/developerworks/training/?loc=dwmain
> 
> Intro to JSP:
>
http://www-105.ibm.com/developerworks/education.nsf/java-onlinecourse-bytitle/882707E838C672A185256770004BDE72?OpenDocument
> 
> Intro to servlets:
>
http://www-105.ibm.com/developerworks/education.nsf/java-onlinecourse-bytitle/0EE353D3449DB625862569530047CD1A?OpenDocument
> 
> - David Gallardo
> 
> --- rohit kuttappan <[EMAIL PROTECTED]>
> wrote:
> > David, could you tell me the url of IBM's JSP &
> > Servelets Tutorial
> > 
> > Thanks,
> > 
> > Rohit
> > ----- Original Message ----- 
> > From: "Tedi Zanfolim" <[EMAIL PROTECTED]>
> > To: "JDJList" <[EMAIL PROTECTED]>
> > Sent: Wednesday, July 31, 2002 3:04 AM
> > Subject: [jdjlist] Re: JSP parameters
> > 
> > 
> > > Thanks a lot, for you all, I really apreciate it.
> > > 
> > > 
> > > --- David Gallardo <[EMAIL PROTECTED]> wrote:
> > > > Oops. The JSP line should read:
> > > > 
> > > >   <%= request.getAttribute("MYATTRIB") %>
> > > > 
> > > > BTW, IBM has some good tutorials on JSP &
> > servlets.
> > > > Registration is required, but it's free and they
> > > > don't
> > > > spam you.
> > > > 
> > > > - David Gallardo
> > > > 
> > > > --- David Gallardo <[EMAIL PROTECTED]> wrote:
> > > > > There is a limit to the length of an URL, but
> > it's
> > > > > server dependent. Why not use a request
> > attribute,
> > > > > like this, in your servlet:
> > > > > 
> > > > >   request.setAttribute("MYATTRIB", attrib);
> > > > >  
> > dispatcher=servletContext.getRequestDispatcher
> > > > >       ("whatever.jsp");
> > > > >   dispatcher.forward(request, response);
> > > > > 
> > > > > Then in your jsp, if you wanted to print it,
> > or
> > > > use
> > > > > it
> > > > > in a tag, for example, you could use this:
> > > > > 
> > > > >   <%= request.getAttribute("ARTISTNAME") %>
> > > > > 
> > > > > - David Gallardo
> > > > > 
> > > > > 
> > > > > --- Tedi Zanfolim <[EMAIL PROTECTED]> wrote:
> > > > > > Hi Guys,
> > > > > > 
> > > > > >    I am pretty new to developing in the Web
> > tier
> > > > > of
> > > > > > the J2EE and I was wondering about the
> > > > following:
> > > > > > 
> > > > > > - I can invoke a JSP from a Servlet,
> > redirecting
> > > > > the
> > > > > > the response page from the sevlet, and pass
> > to
> > > > it
> > > > > > the
> > > > > > result of an internal processing, something
> > like
> > > > > > this:
> > > > > > 
> > > > > > redirect("test.jsp" + "?xml=" +
> > > > > myProcessingResult);
> > > > > > 
> > > > > > I think there is a limitation on the length
> > of
> > > > the
> > > > > > URL
> > > > > > that can be composed this way, that is, all
> > the
> > > > > > string
> > > > > > passed as a parameter to 'redirect' must be
> > no
> > > > > > longer
> > > > > > than 240 characters. 
> > > > > > 
> > > > > >   Could someone tell me if this is true or
> > not?
> > > > > > 
> > > > > >    Thanks in advance,
> > > > > > 
> > > > > > tiz
> > > > > > 
> > > > > >
> > > >
> > __________________________________________________
> > > > > > Do You Yahoo!?
> > > > > > Yahoo! Health - Feel better, live better
> > > > > > http://health.yahoo.com
> > > > > > 
> > > > > > To change your membership options, refer to:
> > > > > > http://www.sys-con.com/java/list.cfm
> > > > > 
> > > > > 
> > > > >
> > __________________________________________________
> > > > > Do You Yahoo!?
> > > > > Yahoo! Health - Feel better, live better
> > > > > http://health.yahoo.com
> > > > > 
> > > > > To change your membership options, refer to:
> > > > > http://www.sys-con.com/java/list.cfm
> > > > 
> > > > 
> > > >
> > __________________________________________________
> > > > Do You Yahoo!?
> > > > Yahoo! Health - Feel better, live better
> > > > http://health.yahoo.com
> > > > 
> > > > To change your membership options, refer to:
> > > > http://www.sys-con.com/java/list.cfm
> > > 
> > > 
> > > __________________________________________________
> > > Do You Yahoo!?
> > > Yahoo! Health - Feel better, live better
> > > http://health.yahoo.com
> > > 
> > > To change your membership options, refer to:
> > > http://www.sys-con.com/java/list.cfm
> > > 
> > 
> > To change your membership options, refer to:
> > http://www.sys-con.com/java/list.cfm
> 
> 
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Health - Feel better, live better
> http://health.yahoo.com
> 
> To change your membership options, refer to:
> http://www.sys-con.com/java/list.cfm


__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com

To change your membership options, refer to:
http://www.sys-con.com/java/list.cfm

Reply via email to