Re: how to embed one wicket app into another

2009-09-09 Thread Quan Zhou
omponents, you should be able to > just embed into > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Wed, Sep 9, 2009 at 10:54 PM, Quan Zhou wrote: > > > Hi.I've developed my simple forum with Wicket(we call it A), and I want > to

how to embed one wicket app into another

2009-09-09 Thread Quan Zhou
Hi.I've developed my simple forum with Wicket(we call it A), and I want to embed it into another website (B) developed by Wicket. like, the left panel and the navigator panel are both from B, and the right panel is from A, I dont want to use Frame because my page will be complicated. Does anyone h

Re: update ModalWindow content by another link?

2009-05-01 Thread Quan Zhou
window is that once it is shown you cannot > click on anything that is not inside the modal window... > > i would rethink your requirements or start thinking about how to make > the window nonmodal. > > -igor > > On Fri, May 1, 2009 at 8:46 AM, Quan Zhou wrote: > >

update ModalWindow content by another link?

2009-05-01 Thread Quan Zhou
Hi, My application's built with WIcket 1.3, and I use ModalWindow to implement most of my functions. I really do some modification to meet my needs. but there's a problem i cannot find any idea to solve that. My scenario is that: There're 2 links (Link A, Link B) in the index Page. Clicking each li

Re: how to remove jsessionid parameters in the url at the first time ppl visit the site?

2009-01-06 Thread Quan Zhou
Wed, Jan 7, 2009 at 10:45 AM, Quan Zhou wrote: > Thanks for your reply. This morning I create a new class extends > BufferedWebResponse and override encodeURL method as you mentioned. > The result remains the same. I do print out the origin url passing in , It > has already con

Re: how to remove jsessionid parameters in the url at the first time ppl visit the site?

2009-01-06 Thread Quan Zhou
feredWebResponse > and overwrite this method: > > public CharSequence encodeURL(CharSequence url) > > and do nothing, just return the url > > johan > > > On Tue, Jan 6, 2009 at 18:14, Quan Zhou wrote: > > > Firstly, i should say i have already read abou

how to remove jsessionid parameters in the url at the first time ppl visit the site?

2009-01-06 Thread Quan Zhou
Firstly, i should say i have already read about those past threads which are concerned with the jsessionid appending in url problem. My experiment proved the conclusion: the first time people visit the site, the application server (tomcat) would append the jsessionid into the url no matter whether

Re: [OT] wicket users around the world

2008-12-14 Thread Quan Zhou
Beijing China.I'm using wicket to develop webgame named FBM (www.wedomo.com),it's 600,000 registers, and about 10,000 players online in average. I also develop my game master tools and log analyzers with wicket. I love it so much. 2008/12/15 Juri Prokofjev > Estonia, Tallinn > > I've tried many

how to activate a modalwindow in another frame page

2008-07-15 Thread Quan Zhou
I recently spilt my app page into several small pages and place them into a frame page with 3 parts. one is on the top (called A), the rest are left(B) and right(C). i'm trying my best to solve the problems after splitting. but getting troubled when dealing with modal window. in the past version,

Re: Localizer cache with 150.000+ entries causing OutOfMemory

2008-06-19 Thread Quan Zhou
I've met the same problem several days away and resovled it by override a method of Localizer see: http://www.nabble.com/Why-Localizer-Retained-so-many-heapsize--to17142582.html#a17182935 that may help you a little. 2008/6/9 Stefan Fußenegger <[EMAIL PROTECTED]>: > > I am just analysing a heap

how to do i18n of javascript file with Wicket?

2008-06-01 Thread Quan Zhou
My application's supposed to support both English,Simpilify Chinese,Traditional Chinese,and even Vietnamese. The great I18N feature of Wicket helps me solve many i18n problems. The only remains is how to do i18n of javascript. Due to the initial design, we put some of messages in the .js file,like

Re: Why Localizer Retained so many heapsize?

2008-05-21 Thread Quan Zhou
i remove the code "cursor.getId()" from Localizer.getCacheKey and deploy it to the server. No more memory leak detected. the server runs well for several days. Great thanks to Johan. 2008/5/15 Quan Zhou <[EMAIL PROTECTED]>: > Maybe you're right. > Yesterday I deploye

Re: Why Localizer Retained so many heapsize?

2008-05-14 Thread Quan Zhou
id to the > cachekey string > that was your problem > everypage that was created also creates an localizer entry that is just > plain wrong. > > So the pageid is not in the path anymore.. i think this is what really > caused your constant growing cache > > > On Wed, Ma

Re: Why Localizer Retained so many heapsize?

2008-05-14 Thread Quan Zhou
nk that my fix for not including the page is solving your real mem > leak problem > > johan > > > On Wed, May 14, 2008 at 2:03 PM, Quan Zhou <[EMAIL PROTECTED]> wrote: > > > getResourceSettings().setLocalizer(new Localizer() { > >@Override >

Re: Why Localizer Retained so many heapsize?

2008-05-14 Thread Quan Zhou
, string); } }); 2008/5/14 Johan Compagner <[EMAIL PROTECTED]>: > but what did you do there in that method? > nothing? you dont cache anything anymore? > > On Wed, May 14, 2008 at 10:29 AM, Quan Zhou <[EMAIL PROTECTED]> wrote: > > > Hello everyone. > > >

Re: Why Localizer Retained so many heapsize?

2008-05-14 Thread Quan Zhou
; > > Johan Compagner wrote: > >> > >> Can you really see what it holds? > >> Almost 2G in memory in localizer is extreme... Thats really a lot of > >> strings.. > >> You could try to read that dump with yourkit if your current one > >> doesnt s

Re: Why Localizer Retained so many heapsize?

2008-05-12 Thread Quan Zhou
es taking so much > space. If you can give a dump of one of the bigger key/values we can help > more. > Also the DiskPageStore doesnt hold on to anything in memory, so it wont > consume any memory, nothing strange about it. > > Iman > > On Mon, May 12, 2008 at 9:31 AM, Quan Zho

Re: Why Localizer Retained so many heapsize?

2008-05-11 Thread Quan Zhou
Iman > > On Sat, May 10, 2008 at 9:38 AM, Johan Compagner <[EMAIL PROTECTED]> > wrote: > > > Can you really see what it holds? > > Almost 2G in memory in localizer is extreme... Thats really a lot of > > strings.. > > You could try to read that dump with yo

Why Localizer Retained so many heapsize?

2008-05-09 Thread Quan Zhou
Hello everyone. I recently develop my App use Wicket1.3.3. It's my first time to use this framework and I feel it's really really a perfect framework for me. My app support both Simplified Chinese , Traditional Chinese, I implement this with Wicket i18n feature. With the load increasing these days