RE: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread Chris Colman
I haven't tested other browsers but the problem is occurring for me on FireFox 7.0.1. my application has same problem, but it only throw socket error when IE 6 - 8 brower, chrome and IE9 has no the problem. here is my question: http://apache-wicket.1842946.n4.nabble.com/Is-there-ModalWindow-

Re: Drilling Application.getHomePage()

2011-10-21 Thread Arjun Dhar
Ah, sorry was trying to use as less words as possible :) Q / Problem) Since Application.getHomePage() returns Class? extends Page and in my case Multiple pages are mounted to point to the same WebPage. How to I specify the Home Page. In other words: CLASS to Mounted Pages is a one to many

Re: Request mapping

2011-10-21 Thread Ernesto Reinaldo Barreiro
Anant, Maybe you can use IndexedParamUrlCodingStrategy to solve your problem...? Regards, Ernesto On Thu, Oct 20, 2011 at 9:36 PM, anantasthana anant.a...@gmail.com wrote: I am trying to map my requests in a special way to achieve a very simple purpose say the root website is abc.com and

Re: Request mapping

2011-10-21 Thread anantasthana
Does it work with wicket 1.5 as well?? I know its there till 1.4v -Original Message- From: Ernesto Reinaldo Barreiro-4 [via Apache Wicket] ml-node+s1842946n3924424...@n4.nabble.com Date: Thu, 20 Oct 2011 23:28:31 To: anantasthanaanant.a...@gmail.com Subject: Re: Request mapping Anant,

Re: Request mapping

2011-10-21 Thread anantasthana
Also I know with that I can do abc.com/users/user1 But would it work if I do abc.com/users/user1/testimonials Which means the testimonials page for user1? I know how to implement the first scenario.. But I just can't figure out the second -Original Message- From: Ernesto Reinaldo

Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread MattyDE
Hi community, i have a big Problem: In my application i use BookmarkabePageLinks to browse through different Pages and AjaxLinks to Open a Div box for Example. If the user now browse from Site A to B with the BookmarkablePageLink, use than the back button of the Browser and now clicked a

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread anant . asty
So how long after going to page2 are you hitting the back button? The page is expired means that the session has been destroyed. You could possibly seT a longer session time out in your webApplication --Original Message-- From: MattyDE To: users@wicket.apache.org ReplyTo:

Re: Request mapping

2011-10-21 Thread Martin Grigorov
Application#getHomePage() can be dynamic: @Override public Class? extends Page getHomePage() { if (MySession.get().isLoggedIn()) { return AuthenticatedHomePage.class; } else { return NonAuthenticatedHomePage.class; } } mountPage(/, NonAuthenticatedHomePage.class);

Re: Request mapping

2011-10-21 Thread anantasthana
Thanks martin this is exactly what I was looking for. -Original Message- From: Martin Grigorov-4 [via Apache Wicket] ml-node+s1842946n3924434...@n4.nabble.com Date: Thu, 20 Oct 2011 23:41:54 To: anantasthanaanant.a...@gmail.com Subject: Re: Request mapping Application#getHomePage()

RE: Drilling Application.getHomePage()

2011-10-21 Thread Chris Colman
We do something similar but use /content/value Then you can mount the single page at /content and then treat what follows as a parameter which determines how that page is rendered. -Original Message- From: Arjun Dhar [mailto:dhar...@yahoo.com] Sent: Friday, 21 October 2011 5:20 PM To:

Re: Drilling Application.getHomePage()

2011-10-21 Thread anant . asty
This is very similar to what I am trying to do. Martin just replied to my post with a great example. Check it out.. -Original Message- From: Chris Colman chr...@stepaheadsoftware.com Date: Fri, 21 Oct 2011 16:44:53 To: users@wicket.apache.org Reply-To: users@wicket.apache.org Subject:

RE: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread Chris Colman
1.4.8 is a very old version. Maybe try using the latest 1.4.x version and see if the problem hasn't already been fixed. -Original Message- From: MattyDE [mailto:ufer.mar...@gmail.com] Sent: Friday, 21 October 2011 5:37 PM To: users@wicket.apache.org Subject: Big Problem:

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread MattyDE
this doesnt matter. i use the back-button on time (less than 2 seconds) and the error appears. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Big-Problem-BookmarkablePageLinks-AjaxLinks-and-BackButton-tp3924428p3924451.html Sent from the Users forum mailing list

RE: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread MattyDE
iam updating right now. i Reply again if i double checked my issue in the new version. Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Big-Problem-BookmarkablePageLinks-AjaxLinks-and-BackButton-tp3924428p3924456.html Sent from the Users forum mailing list

RE: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread MattyDE
Updated and Still the Same Problem. =( This is my BookmarkableLink: linkNummer = new BookmarkablePageLinkAngebotDetailsPage(link_nummer, AngebotDetailsPage.class, new PageParameters(String.format(id=%d, modelOfAngebot.getObject().getId())) ); and this my AjaxLink AjaxLink

RE: Drilling Application.getHomePage()

2011-10-21 Thread Wilhelmsen Tor Iver
Q / Problem) Since Application.getHomePage() returns Class? extends Page and in my case Multiple pages are mounted to point to the same WebPage. How to I specify the Home Page. getHomePage() returns what Page to use for a request when the URL does not refer to a mounted Page or other

RE: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread nhsoft.yhw
You tried google chrome browser? chrome browser I found no problem. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Occasional-Software-caused-connection-abort-socket-write-error-with-1-5-tp3920880p3924517.html Sent from the Users forum mailing list archive at

Re: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread Martin Grigorov
On Fri, Oct 21, 2011 at 6:29 AM, nhsoft.yhw nhsoft@gmail.com wrote: my application has same problem, but it only throw socket error when IE 6 - 8 brower,  chrome and IE9 has no the problem. here is my question:

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread Ernesto Reinaldo Barreiro
Hi, Just guessing. 1-On page A you do some AJAX panel replacements? This is not reflected on page store... 2-You navigate to page B and then back button. 3-You click on AJAX link... page A is retrieved from store but AJAX link is not found on component tree... Then WebRequestCycleProcessor

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread MattyDE
ur guess is wrong =( But u give me a good hint. I've tested it now with two TestPages which only include Bookmarkable and AjaxLinks and this works. On the non-working Page the user did nothing before he browse to Page B but on Page A are a lot of ListViews and nested panels and more... Could

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread Ernesto Reinaldo Barreiro
My guess might still be valid... Somehow the state of the browser does not match component tree. You can try forcing re-loading for that page, so that the state is always the same on both sides. Regards, Ernesto On Fri, Oct 21, 2011 at 10:30 AM, MattyDE ufer.mar...@gmail.com wrote: ur guess is

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread Ernesto Reinaldo Barreiro
See http://webcache.googleusercontent.com/search?q=cache:http://www.richardnichols.net/2010/03/apache-wicket-force-page-reload-to-fix-ajax-back/ Ernesto On Fri, Oct 21, 2011 at 10:38 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: My guess might still be valid... Somehow the state of

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread MattyDE
how can i force a reload on browser back-button? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Big-Problem-BookmarkablePageLinks-AjaxLinks-and-BackButton-tp3924428p3924680.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread Ernesto Reinaldo Barreiro
See http://webcache.googleusercontent.com/search?q=cache:http://www.richardnichols.net/2010/03/apache-wicket-force-page-reload-to-fix-ajax-back/ Ernesto On Fri, Oct 21, 2011 at 10:40 AM, MattyDE ufer.mar...@gmail.com wrote: how can i force a reload on browser back-button? -- View this

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread MattyDE
Thank u so much. This helps me alot! I also figured out that my own gridView implementation cause the problem. Iam using here an own implementation of SortableDataProvider. And if i fill the Provider with data from the Database on Page A and did the browsing forward, back thing than the

ModalWindow shows Error Page in Opera

2011-10-21 Thread Alex
Dear all, While trying to open a ModalWindow the Opera shows error page. Translated from German it says something like “Internal Communication error. Check the address or search for web site” In FF, IE, Safari everything works fine. Wicket version 1.4.9 Opera 11.52 Thanks a lot in advance

Re: ModalWindow shows Error Page in Opera

2011-10-21 Thread Martin Grigorov
On Fri, Oct 21, 2011 at 12:05 PM, Alex zeita...@googlemail.com wrote: Dear all, While trying to open a ModalWindow the Opera shows error page. Translated from German it says something like “Internal Communication error. Check the address or search for web site” In FF, IE, Safari everything

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread Ernesto Reinaldo Barreiro
Martin, Are you navigating the GRID via AJAX? If so, then that is the AJAX panel replacement I was talking about... Otherwise I can't see why it should be different if you fetch data from a DB or use an array:-( Regards, Ernesto On Fri, Oct 21, 2011 at 10:59 AM, MattyDE ufer.mar...@gmail.com

Re: Big Problem: BookmarkablePageLinks, AjaxLinks and BackButton

2011-10-21 Thread MattyDE
is its possible to navigate through this grid via ajax. But in my testcase iam not using this possibilitiy. but there would be also no different between navigating in my grid with or without database driven data. Could there be some problem with model-persistance in PageMap or anything else?

Re: ModalWindow shows Error Page in Opera

2011-10-21 Thread nhsoft.yhw
Wicket 1.5.x have fixed the problem. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ModalWindow-shows-Error-Page-in-Opera-tp3924738p3924885.html Sent from the Users forum mailing list archive at Nabble.com.

Re: ModalWindow shows Error Page in Opera

2011-10-21 Thread Attila Király
It is fixed in 1.4.18 too: https://issues.apache.org/jira/browse/WICKET-3615 Attila 2011/10/21 nhsoft.yhw nhsoft@gmail.com Wicket 1.5.x have fixed the problem. -- View this message in context:

Re: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread nhsoft.yhw
I try to reproduce the problem to create quickStart demo, but this error problem only in my real application occurs, My situation is that only use IE 6 7 8 visits the page with modalwindow will throw be connection problem. I will try to reproduce later. -- View this message in context:

Re: ModalWindow shows Error Page in Opera

2011-10-21 Thread Alex
Thanks to all. With wicket 1.4.19 it works fine. 2011/10/21 Attila Király kiralyattila...@gmail.com It is fixed in 1.4.18 too: https://issues.apache.org/jira/browse/WICKET-3615 Attila 2011/10/21 nhsoft.yhw nhsoft@gmail.com Wicket 1.5.x have fixed the problem. -- View this

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-21 Thread Sebastian
hi, we fixed it in trunk now. please give it a try. regards, seb On 12.10.2011 11:18, vineet semwal wrote: thank you martin ! herald ,i have opened a issue for you https://github.com/wicketstuff/core/issues/66 thank you ! On Wed, Oct 12, 2011 at 2:19 PM, Martin

Re: [wicketstuff-push] How to disconnect cleanly?

2011-10-21 Thread vineet semwal
just tested on a quickstart,works well .. thanks for the fix ! On Fri, Oct 21, 2011 at 6:23 PM, Sebastian nospam...@gmx.net wrote: hi, we fixed it in trunk now. please give it a try. regards, seb On 12.10.2011 11:18, vineet semwal wrote: thank you martin !  herald ,i have opened a

Re: Wrong path for resources on redirected login page

2011-10-21 Thread gilbertoca
Hi Daniel, The Max Berger's blog has a post about it[1]. Hth, Gilberto [1] http://blog.max.berger.name/2010/02/jetty-7-maven-plugin-authentication.html -- View this message in context:

Problems with AjaxCheckBox in Wicket 1.5.1

2011-10-21 Thread jamesatk
Greetings, Our project updated to Wicket 1.5.1 from Wicket 1.4.5 and AjaxCheckBox is no longer firing the onUpdate() method. Below is a code snippet of how it is being used: ListView listView = new ListView(events, eventGroups) { protected void populateItem(final ListItem

Re: Wrong path for resources on redirected login page

2011-10-21 Thread bjolletz
Thanks Gilberto! I'll try that. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wrong-path-for-resources-on-redirected-login-page-tp3920038p3925757.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Problems with AjaxCheckBox in Wicket 1.5.1

2011-10-21 Thread Igor Vaynberg
create a quickstart and attach it to a jira issue... -igor On Fri, Oct 21, 2011 at 6:38 AM, jamesatk james.atkins@esrgtech.com wrote: Greetings, Our project updated to Wicket 1.5.1 from Wicket 1.4.5 and AjaxCheckBox is no longer firing the onUpdate() method. Below is a code snippet of

Latest version of TinyMCE

2011-10-21 Thread Vishal Popat
Hi all, I am trying to get the latest version of TinyMCE... I have tried getting this from Maven like so: dependency groupIdorg.wicketstuff/groupId artifactIdtinymce/artifactId version1.4.18/version

Re: wicket + jasper reports

2011-10-21 Thread Jim Pinkham
OK, I've almost got it - thanks for the example. It comes down to either using a ResourceLinkVoid which serves up the pdf with no complaints, but despite being attached to a submit button, the form doesn't seem to have been submitted; the parameters don't reflect any user input or, I can solve

Re: Problems with AjaxCheckBox in Wicket 1.5.1

2011-10-21 Thread jamesatk
I will. I rolled back to 1.4.19 and they work again. Thanks! James -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problems-with-AjaxCheckBox-in-Wicket-1-5-1-tp3925435p3926640.html Sent from the Users forum mailing list archive at Nabble.com.

RE: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread Chris Colman
I suspect that will be our problem too. With simple quickstart the pages do not take very long to render and so impossible to click links fast enough such that you can click on one before the last link has completed rendering - maybe we could add a delay in the rendering somewhere or do a big

RE: Occasional Software caused connection abort: socket write error with 1.5

2011-10-21 Thread nhsoft.yhw
I do not think so. My application is upgraded from wicket 1.4.18 to 1.5.x, in wicket1.4.x using IE6, IE7, IE8 browser is normal, 'ClientAbortException error' appeared after the upgrade to wicket1.5.1, and use Chrome browser or IE9 is no problem both wicket 1.4.x and 1.5.x. Only some of the