Re: how to get some data from servlet

2010-05-09 Thread Zilvinas Vilutis
ion id ( passed as a > > submit > > parameter ) is in the secure session list in "SecureSessionHolder" before > > parsing the response data > > > > If anybody has got any security concerns on this impl - please notify me, > > I'll appreciate any opi

Re: how to get some data from servlet

2010-05-09 Thread Fernando Wermus
ll appreciate any opinions > > ----- > -------- > nothing is impossible > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/how-to-get-some-data-from-servlet-tp1885531p2136546.html > Sent from the Wicket - User mailing list archive at Nabb

Re: how to get some data from servlet

2010-05-08 Thread Zilvinas Vilutis
ecurity concerns on this impl - please notify me, I'll appreciate any opinions - nothing is impossible -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-get-some-data-from-servlet-tp1885531p21365

Re: how to get some data from servlet

2009-07-28 Thread bgooren
gt; > I tried to use WicketSessionFilter but it doesn't work. >> > > >> > > I am using wicket 1.3.5. >> > > >> > > Cheers... >> > > >> > > Altug. >> > > >> > > 2009/6/23 danisevsky >> > > >> > >> hello, I

Re: how to get some data from servlet

2009-07-23 Thread Altuğ B . Altıntaş
-igor >> > > >> >> > > >> On Tue, Jul 14, 2009 at 3:47 AM, Altuğ B. Altıntaş< >> alt...@gmail.com> >> > > >> wrote: >> > > >> > Also I have a problem like yours. >> > > >> >

Re: how to get some data from servlet

2009-07-23 Thread Altuğ B . Altıntaş
st debug your application and you will see that they have > > different > > > >> > session Id's. > > > >> > > > > >> > I tried to use WicketSessionFilt

Re: how to get some data from servlet

2009-07-23 Thread Fernando Wermus
fferent > > >> > session Id's. > > >> > > > >> > I tried to use WicketSessionFilter but it doesn't work. > > >> > > > >> > I am using wicket 1.3.5. > > >> > > > >> > Cheers... >

Re: how to get some data from servlet

2009-07-23 Thread Altuğ B . Altıntaş
t; > > >> > 2009/6/23 danisevsky > >> > > >> >> hello, I am using MyMultiFileUploadServlet for uploading files and in > >> some > >> >> wicket component I need find out how many files was uploaded

Re: how to get some data from servlet

2009-07-19 Thread Igor Vaynberg
files and in >> some >> >> wicket component I need find out how many files was uploaded. >> >> I was trying to set this number to the HttpSession in >> >> MyMultiFileUploadServlet and get it in the component: >> >> >> >>  

Re: how to get some data from servlet

2009-07-19 Thread Altuğ B . Altıntaş
ketSessionFilter but it doesn't work. > > > > > > > > I am using wicket 1.3.5. > > > > > > > > Cheers... > > > > > > > > Altug. > > > > > > > > 2009/6/23 danisevsky > > > > > > > >> hello, I am using MyMult

Re: how to get some data from servlet

2009-07-19 Thread Fernando Wermus
d out how many files was uploaded. > > >> I was trying to set this number to the HttpSession in > > >> MyMultiFileUploadServlet and get it in the component: > > >> > > >>HttpSession httpSession = ((WebRequest) > > >>

Re: how to get some data from servlet

2009-07-19 Thread Altuğ B . Altıntaş
> >> .getSession(); > >> String count = httpSession > >>.getAttribute("filesCount"); > >> > >> but count is always null. Is there any way how to get some data from > >> servlet? Thanks > >> > > > > > > > > -- > > Altuğ. > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Altuğ.

Re: how to get some data from servlet

2009-07-14 Thread Igor Vaynberg
mponent: >> >>                    HttpSession httpSession = ((WebRequest) >> getRequest()).getHttpServletRequest() >>                            .getSession(); >> String count = httpSession >>                            .getAttribute("f

Re: how to get some data from servlet

2009-07-14 Thread Altuğ B . Altıntaş
and get it in the component: > >HttpSession httpSession = ((WebRequest) > getRequest()).getHttpServletRequest() >.getSession(); > String count = httpSession >.getAttribute("filesCount"); > > but count is always null.

how to get some data from servlet

2009-06-23 Thread danisevsky
= ((WebRequest) getRequest()).getHttpServletRequest() .getSession(); String count = httpSession .getAttribute("filesCount"); but count is always null. Is there any way how to get some data from servlet? Thanks