Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-19 Thread Wujek Srujek
If the container returns the correct bean, this means your login works fine, is this correct? Why do you then care that the @Stateful-annotated field is different? It probably is just a proxy generated by your container's injection framework anyways. On Mon, Nov 19, 2012 at 2:16 PM, Satrix

Re: How to know the country of the user

2012-10-28 Thread Wujek Srujek
Locale has more information than just the language. For example: en_US is English in USA; en_UK is English in the UK, it_IT is Italian in Italy, but it_CH is Italian in Switzerland. Your example would differentiate between pt_PT (Portuguese in Portugal) and pt_BR (Portuguese in Brazil). Check out

Re: How to know the country of the user

2012-10-28 Thread Wujek Srujek
: Alle domenica 28 ottobre 2012, Wujek Srujek ha scritto: Locale has more information than just the language. For example: en_US is English in USA; en_UK is English in the UK, it_IT is Italian in Italy, but it_CH is Italian in Switzerland. Your example would differentiate between pt_PT

Re: wicket 6.1.0 default logging configuration

2012-10-23 Thread Wujek Srujek
). Additionally with ClassLoader#getResources(/logback.xml) (logback-test.xml, logback.groovy, log4j.properties) you may find whether there is one of those in the classpath and where exactly. On Tue, Oct 23, 2012 at 1:31 AM, Wujek Srujek wujek.sru...@gmail.com wrote: Hi. I am using wicket

Re: js

2012-10-19 Thread Wujek Srujek
This works more or less the following way in servlet containers: when the first request comes to the server, it doesn't know if cookies are supported or not on the client, so it sets both the cookie and appends the jsessionid thingy that you see. Then, on another request, the container checks

Re: js

2012-10-19 Thread Wujek Srujek
- the server can't know that. That's what sessions are for ;d wujek On Fri, Oct 19, 2012 at 11:10 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, On Fri, Oct 19, 2012 at 11:04 AM, Wujek Srujek wujek.sru...@gmail.com wrote: This works more or less the following way in servlet containers: when

ModalDialog - control the location

2012-10-12 Thread Wujek Srujek
Hi. We have the requirement that we need to show more than one popup at a time - this means buttons / links in a popup trigger showing other popups (whether it's good style or not is irrelevant, this is a requirement...). We are using ModalWindow for that, and it is always shown in the center of