To clear up any confusion I may have created by sending this message:
This only applies if you are using NAS, not NES.
I misspelled NTV as NTF - it is NTV.
mark

> From: Mark Hayes [mailto:[EMAIL PROTECTED]]
>
>
> If you're using NAS, make sure the CacheTimeOut is set to
> zero in your NTF
> file:
>
> YourServlet {
> "CacheTimeOut" Int "0",
>
> Otherwise, the last results of the servlet will be cached.
> mark
>
> > -----Original Message-----
> > From: Abhijit Tannu [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, November 24, 1999 1:43 AM
> > To: [EMAIL PROTECTED]
> > Subject: SOS - JSP & EJBs
> >
> >
> > Hi ,
> > We are using NAS 3.6 server along with NES 4.0 server for
> > running our JSPs.
> > We are calling functions of an stateless EJB from within the JSP.
> >
> > One of the argument for the function is a String. When I call
> > the function
> > for the first time i.e. when the JSP is run for the first
> > time , the EJB
> > works fine.
> > When I call the same function again ( when the JSP is invoked
> > by the browser
> > the second time ) , I get results corresponding to the last call !!!
> >
> > e.g. When I call trial.jsp?name=abhi from the browser for the
> > first time -
> >         String myName = request.getParameter("name");
> >         I call myObjBean.getReverse(myName)
> >          - it returns me "ihba".
> >
> >       When I call trial.jsp?name=tannu from the browser -
> >         String myName = request.getParameter("name");
> >         I call myObjBean.getReverse(myName)
> >         - it returns me "ihba" !!!!
> >
> >
> >       When I call trial.jsp?name=try from the browser -
> >         String myName = request.getParameter("name");
> >         I call myObjBean.getReverse(myName)
> >         - it still returns me "ihba" !!!!
> >
> >
> > This happens even when I close the browser and restart it
> > again. I have
> > taken care to remove the bean by calling
> > objProdGblHome.remove(objProdGblBean.getHandle());
> >
> > If I print the local value of myName , it prints proper values.
> >
> > There are no private variables defined in the session bean. All the
> > arguments are being passed for each call to the function. I
> > am not able to
> > find out why & how the EJB is storing the old values of the
> > argument ???
> >
> > Can anyone pl. help me overcome this problem ?
> >
> > Regards
> >
> > -Abhi
> >
> > ==============================================================
> > =============
> > To unsubscribe: mailto [EMAIL PROTECTED] with body:
> > "signoff JSP-INTEREST".
> > FAQs on JSP can be found at:
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.html
> >
>
> ==============================================================
> =============
> To unsubscribe: mailto [EMAIL PROTECTED] with body:
> "signoff JSP-INTEREST".
> FAQs on JSP can be found at:
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to