[java ee programming] javapassion.com site down?

2010-02-09 Thread Senthil Chidambaram
Hi, Is the site http://www.javapassion.com up and running? Looks like down to me. thx Senthil -- You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to this group, send email to java-ee-j2ee-programming-with-passion

Re: [java ee programming] how to access the scope variable from outside the application.

2010-03-18 Thread Senthil Chidambaram
You can think of something like server side cookies i.e. store the session info. in a file or database and make your applications read from that one place. thx Senthil On Thu, Mar 18, 2010 at 3:41 AM, thanooj bharateeyudu wrote: > hello all. > Let us assume that, i have

Re: [java ee programming] how to access the scope variable from outside the application.

2010-03-18 Thread Senthil Chidambaram
May be you don't have to use any server side cookies approach. You are sharing between two applications any way. Just setting client side cookie approach would work. thx Senthil On Thu, Mar 18, 2010 at 3:41 AM, thanooj bharateeyudu wrote: > hello all. > Let us assume tha

Re: [java ee programming] alternate to request,getParameter

2010-03-22 Thread Senthil Chidambaram
You should consider the available frameworks out there or consider writing your own. JSF has built in support for validation, you can consider Richfaces. thx Senthil On Mon, Mar 22, 2010 at 4:37 AM, vinay basavanal wrote: > Hi all, > > If i have a b to b application in which in my jsp

Re: [java ee programming] jdbc

2010-03-26 Thread Senthil Chidambaram
Once the user is logged in you can store the userid in a session variable and use it for consecutive requests. As Saurabh said you have to present a screen to get the userid, if you don't want to authenticate the user you can byepass the authentication mechanism and just use the id. Hope this helps

Re: [java ee programming] response.sendRedirect() using tag

2010-03-26 Thread Senthil Chidambaram
Let me understand this clearly. You have an link and when the user clicks this link you want to redirect to another link. This should happen on the client side using javascript onclick event handler, location.href or something like that. You can look at javascript doc. thx Senthil On Fri, Mar 26