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

Re: how to embed one wicket app into another

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

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

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 betoget...@gmail.com wrote: Hi, My application's

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: how to remove jsessionid parameters in the url at the first time ppl visit the site?

2009-01-06 Thread Quan Zhou
CharSequence encodeURL(CharSequence url) and do nothing, just return the url johan On Tue, Jan 6, 2009 at 18:14, Quan Zhou betoget...@gmail.com wrote: Firstly, i should say i have already read about those past threads which are concerned with the jsessionid appending in url problem. My experiment

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

2009-01-06 Thread Quan Zhou
, 2009 at 10:45 AM, Quan Zhou betoget...@gmail.com 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 contains

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 proj...@gmail.com Estonia, Tallinn

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 deployed the application in a high load

Re: Why Localizer Retained so many heapsize?

2008-05-14 Thread Quan Zhou
in localizer is extreme... Thats really a lot of strings.. You could try to read that dump with yourkit if your current one doesnt show enough. On 5/9/08, Quan Zhou [EMAIL PROTECTED] wrote: Hello everyone. I recently develop my App use Wicket1.3.3. It's my first time to use

Re: Why Localizer Retained so many heapsize?

2008-05-14 Thread Quan Zhou
); } }); 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. I override Localizer.putIntoCache method. and it really reduce

Re: Why Localizer Retained so many heapsize?

2008-05-14 Thread Quan Zhou
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 public void putIntoCache(final String cacheKey,final String string

Re: Why Localizer Retained so many heapsize?

2008-05-14 Thread Quan Zhou
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, May 14, 2008 at 5:04 PM, Quan Zhou [EMAIL PROTECTED] wrote: Yes , it would be a bit slower

Re: Why Localizer Retained so many heapsize?

2008-05-12 Thread Quan Zhou
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 show enough. On 5/9/08, Quan Zhou [EMAIL PROTECTED] wrote: Hello everyone. I recently develop my App

Re: Why Localizer Retained so many heapsize?

2008-05-12 Thread Quan Zhou
/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 Zhou [EMAIL PROTECTED] wrote: Thanks for your all replys. I review the dump file with both SAP

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