Re: issue with file download out of form component

2012-10-17 Thread Maxim Solodovnik
Thanks a lot! Those NullPointer exceptions makes makes me mad :( (we use customized Tomcat 6 in our project) And I get them all the time. I get rid of all callback URL and all parameters passed via URL. Thanks!! :) On Wed, Oct 17, 2012 at 5:11 PM, Martin Grigorov mgrigo...@apache.orgwrote:

Re: issue with file download out of form component

2012-10-17 Thread Maxim Solodovnik
Hello Martin, I have modified the code and have removed AjaxDownloader (since it is not really necessary). NullPointerException somehow happens while post parameters parsing (getCallbackURL) is not working anymore. I believe this is somehow connected with custom HomePageMapper

Re: issue with file download out of form component

2012-10-17 Thread Maxim Solodovnik
I'll take a look at it On Wed, Oct 17, 2012 at 12:59 AM, seba.wag...@gmail.com seba.wag...@gmail.com wrote: Hi, I did follow this tutorial to create a download via Ajax in a form: https://cwiki.apache.org/confluence/display/WICKET/AJAX+update+and+file+download+in+one+blow The slightly

Re: issue with file download out of form component

2012-10-24 Thread Maxim Solodovnik
in: org.apache.wicket.protocol.http.servlet.ServletWebRequest line 305 param.getValue() returns String and cannot be casted to String[] (for the 'antiCache' parameter above) Is there anything I can do to fix it? Thanks a lot in advance :) On Wed, Oct 17, 2012 at 5:39 PM, Maxim Solodovnik solomax

Re: issue with file download out of form component

2012-10-24 Thread Maxim Solodovnik
in: org.apache.wicket.protocol.http.servlet.ServletWebRequest line 305 param.getValue() returns String and cannot be casted to String[] (for the 'antiCache' parameter above) Is there anything I can do to fix it? Thanks a lot in advance :) On Wed, Oct 17, 2012 at 5:39 PM, Maxim Solodovnik solomax

Re: issue with file download out of form component

2012-10-24 Thread Maxim Solodovnik
/servlet/ServletRequest.html#getParameterMap() ) the map should be String, String[]). On Wed, Oct 24, 2012 at 1:45 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello Martin, I just have tested Wicket 6.2 Using AjaxDownload: https://svn.apache.org/repos/asf/incubator/openmeetings

Re: issue with file download out of form component

2012-10-24 Thread Maxim Solodovnik
Thanks for your help! The issue seems to be resolved now. We had lots of dependencies to the huge number of various servlet-api.jar + custom ServletRequestMapper I perform cleanup and now everything works as expected On Thu, Oct 25, 2012 at 8:51 AM, Maxim Solodovnik solomax...@gmail.comwrote

WebSockets questions

2012-12-06 Thread Maxim Solodovnik
Hello, I'm trying to add WebSocketBehavior to our project (Apache Openmeetings Incubating) Unfortunately my first attempts were unsuccessful :( Configuration: 1) custom Tomcat7 (Red5 server on the top of Servlet Engine: Apache Tomcat/7.0.32 embedded) 2) Sun JDK 1.7.09 3) Ubuntu 12.10 4) Wicket

Re: WebSockets questions

2012-12-08 Thread Maxim Solodovnik
to expose as many problems as you can with it. On Thu, Dec 6, 2012 at 6:14 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello, I'm trying to add WebSocketBehavior to our project (Apache Openmeetings Incubating) Unfortunately my first attempts were unsuccessful

Re: hot to set Unicoding to UTF-8

2012-12-10 Thread Maxim Solodovnik
I guess you can use language files in xml format instead of properties On Tue, Dec 11, 2012 at 2:33 PM, oliver.stef ova...@gmail.com wrote: Hi all, When i'm saving my properties file in 'UTF-8' coding, i can't see the correct chars (image 1). but when i'm saving it as displayed if i'm

Re: WebSockets questions

2012-12-11 Thread Maxim Solodovnik
Hello Martin, just have added the patch for this issue. can you please take a look it and probably accept? :) I would really appreciate it since this issue blocks me Thanks in advance On Sat, Dec 8, 2012 at 10:23 PM, Maxim Solodovnik solomax...@gmail.comwrote: Hello Martin, Thanks

Re: WebSockets questions

2012-12-15 Thread Maxim Solodovnik
Hello Martin, Are there any plans to release wicket-native-websocket? On Wed, Dec 12, 2012 at 4:47 AM, Maxim Solodovnik solomax...@gmail.comwrote: Hello Martin, just have added the patch for this issue. can you please take a look it and probably accept? :) I would really appreciate

Re: WebSockets questions

2012-12-16 Thread Maxim Solodovnik
else need to be updated as well? On Sun, Dec 16, 2012 at 2:29 PM, Maxim Solodovnik solomax...@gmail.comwrote: Hello Martin, Are there any plans to release wicket-native-websocket? On Wed, Dec 12, 2012 at 4:47 AM, Maxim Solodovnik solomax...@gmail.comwrote: Hello Martin, just have added

Re: WebSockets questions

2012-12-16 Thread Maxim Solodovnik
week, I've tested websockets with https://github.com/martin-g/blogs/tree/master/wicket6-websocket-broadcast after the class names' changes. All seems to be OK. Make sure you have updated the name of the Filter class in your web.xml On Sun, Dec 16, 2012 at 1:28 PM, Maxim Solodovnik solomax

Re: delete messages

2012-12-22 Thread Maxim Solodovnik
I believe it should be attached to the JIRA issue On Dec 22, 2012 7:38 PM, Dirk Wichmann d...@team-wichmann.de wrote: Hi Sven, create a quickstart means that I create a quickstart project, put the my stuff inside, zip the project and attach it to a e-mail?? Maybe it's a stupid question, but

Re: URL fragment parsing

2013-02-26 Thread Maxim Solodovnik
AFAIK it is impossible to read URL hash on the server side Hopefully somebody can write component for that :) I use JS (with the hack to pass authorization) On Tue, Feb 26, 2013 at 11:40 PM, Michael Chandler michael.chand...@onassignment.com wrote: Is it possible to read and parse values in

Re: wicket:for behavior

2013-03-14 Thread Maxim Solodovnik
Gooren Op 14-3-2013 5:01, schreef Maxim Solodovnik: Hello, I'm trying to use wicket:for as follows: input wicket:id=rememberMe type=checkbox /label wicket:for=rememberMe**wicket:ommessage key=288 //label https://svn.apache.org/repos/**asf/openmeetings/trunk/** singlewebapp/src/org

Re: Interpolating variables inside web.xml

2013-04-18 Thread Maxim Solodovnik
Hello, I'm using ant: https://svn.apache.org/repos/asf/openmeetings/trunk/singlewebapp/build.xml copy ant task with filter token=wicket.mode value=${wicket.mode}/ do the job On Thu, Apr 18, 2013 at 11:23 PM, Leonardo D'Alimonte leonardo.dalimo...@loginet.it wrote: Hi everybody, I'm trying

Re: wicket Jquery/JqueryUI Ajax modal windows examples

2013-04-22 Thread Maxim Solodovnik
http://www.7thweb.net/wicket-jquery-ui/dialog/MessageDialogPage On Mon, Apr 22, 2013 at 8:07 PM, Bruno Moura brunormo...@gmail.com wrote: Hi Someone could provide resources and links for Jquery/JqueryUI Ajax modal examples with wicket? Thanks a lot! Bera

Re: Skip dynamically an item in populateItem of ListView

2013-04-30 Thread Maxim Solodovnik
Maybe you can filter List prior to populate items from it? On Tue, Apr 30, 2013 at 8:01 PM, Marco Di Sabatino Di Diodoro mdisabatinodidiod...@gmail.com wrote: Hi all, Which is the best way to skip dynamically an item in populateItem of ListView. Currently I use setEnable and setVisible,

Re: Wicket push alternative

2013-05-06 Thread Maxim Solodovnik
I believe you can you wicket-websocket's On Mon, May 6, 2013 at 2:29 PM, Noven noven_...@yahoo.com wrote: Hi all, Do you know any wicket push technology beside atmosphere and wicket-push project? I use wicket-push 1.4 and it work good for me. But when migrate to wicket v6.x, my code is

Re: Textbox in a listView, retrieve the value and set the property model

2013-05-09 Thread Maxim Solodovnik
I would try to change your code as follows: new DropDownChoice*[Customer]*(customerSelection, new PropertyModel[Customer](customer, name), listCustomer, new ChoiceRenderer[Customer](name, *id*)) your code seems to not in JAVA On Fri, May 10, 2013 at 9:13 AM, Bruno Moura brunormo...@gmail.com

Re: Textbox in a listView, retrieve the value and set the property model

2013-05-09 Thread Maxim Solodovnik
. Bruno Moura 2013/5/10 Maxim Solodovnik solomax...@gmail.com I would try to change your code as follows: new DropDownChoice*[Customer]*(customerSelection, new PropertyModel[Customer](customer, name), listCustomer, new ChoiceRenderer[Customer](name, *id*)) your code seems

Wicketstuff release cycle

2013-05-15 Thread Maxim Solodovnik
Hello, I would like to ask a question regarding wicketstuff releases. According to Wicketstaff WIKI [1] last stable was made July 3, 2012, according to maven some modules were released 18-Apr-2013 and has version 6.7.0 [2]. Is there option to ask for release of the components [3] with the wicket

Re: Wicketstuff release cycle

2013-05-15 Thread Maxim Solodovnik
Grigorov will release a new version within a couple of days (sometimes just a matter of hours) after each wicket release... On Thu, May 16, 2013 at 8:16 AM, Maxim Solodovnik solomax...@gmail.com wrote: Hello, I would like to ask a question regarding wicketstuff releases. According

Re: Wicketstuff release cycle

2013-05-16 Thread Maxim Solodovnik
Hello Martin, Thanks! :) On Thu, May 16, 2013 at 1:45 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi Maxim, On Thu, May 16, 2013 at 7:26 AM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks for the quick reply :) According to the maven no all components are released

Re: Ill really apreciate the help to get the selected item of a DropDownChoice using Scala

2013-05-16 Thread Maxim Solodovnik
You should have objects of same type in DropDownChoice, PropertyModel, List and ChoiceRenderer On Fri, May 17, 2013 at 10:12 AM, Bruno Moura brunormo...@gmail.com wrote: Hi Martin But the DDC doesn't have a constructor with PropertyModel[String](this, custName) only a property model with

wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Hello All, According to wicketstuff rules if component does not declaring own license - it is AL. I was unable to find license for wicket-html5, but on the old project root at code.google.com/p/wickethtml5 the project is declared as GPLv2. If it is GPLv2 can anybody help me to create callback

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Thanks a lot! On Fri, May 17, 2013 at 4:20 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi Maxim, WicketStuff-Html5 project is ASL2, so you can use it. On Fri, May 17, 2013 at 12:14 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All, According to wicketstuff rules

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
The latest version available in maven is 1.5-rc2.1/http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/1.5-rc2.1/ 26-Mar-2011 17:31 Is it compatible with Wicket 6? On Fri, May 17, 2013 at 4:27 PM, Maxim Solodovnik solomax...@gmail.comwrote: Thanks a lot! On Fri, May 17, 2013 at 4

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Thanks! was looking at http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/ :( Sorry On Fri, May 17, 2013 at 4:40 PM, Martin Grigorov mgrigo...@apache.orgwrote: http://repo1.maven.org/maven2/org/wicketstuff/wicketstuff-html5/6.7.0/ On Fri, May 17, 2013 at 12:29 PM, Maxim Solodovnik

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
(; target.add(player.setVisible(true)); Is it possible to add *AjaxBehavior* mp4download able to act as source for video? On Fri, May 17, 2013 at 5:00 PM, Maxim Solodovnik solomax...@gmail.comwrote: Thanks! was looking at http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/ :( Sorry

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
, May 17, 2013 at 2:04 PM, Maxim Solodovnik solomax...@gmail.com wrote: Unfortunately Html5Video seems to be not available to work with ResourceStreams, only static urls :( Can you use a mounted resource that streams the content ? I'll try to ask more generic wicket question: I

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
I can commit my not working and paste the link to the SVN here. Video-Rclick-save video works as expected, but not play :( On Fri, May 17, 2013 at 6:33 PM, Maxim Solodovnik solomax...@gmail.comwrote: Is it possible to create mounted resources available only to some users? I mean I would like

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Grigorov mgrigo...@apache.orgwrote: On Fri, May 17, 2013 at 2:04 PM, Maxim Solodovnik solomax...@gmail.com wrote: Unfortunately Html5Video seems to be not available to work with ResourceStreams, only static urls :( I'll try to ask more generic wicket question: I would like to implement

Issue in 6.8.0

2013-05-20 Thread Maxim Solodovnik
Hello All, sorry for the late report Just have updated wicket to be 6.8.0 in our project and it seems like adding AjaxFormValidatingBehavior.addToAllFormComponents(this, keydown, Duration.ONE_SECOND); To the form preventing text from being entered into text fields Can somebody test it? -- WBR

Re: Issue in 6.8.0

2013-05-21 Thread Maxim Solodovnik
Done https://issues.apache.org/jira/browse/WICKET-5194 On Tue, May 21, 2013 at 2:09 PM, Sven Meier s...@meiers.net wrote: Hi Maxim, the case is clear, no need for a quickstart. Sven On 05/21/2013 08:59 AM, Maxim Solodovnik wrote: Martin, Thanks for the quick reply! I see no other

Re: Issue in 6.8.0

2013-05-21 Thread Maxim Solodovnik
private static class FormValidateVisitor, and because it uses static method to do its main job there is no way to override #updateAjaxAttributes(). But I think this issue is not that big to release 6.8.1. ~ Thank you, Paul Bors -Original Message- From: Maxim Solodovnik

Re: Issue in 6.8.0

2013-05-21 Thread Maxim Solodovnik
Martin, Thanks, I'll try that On Tue, May 21, 2013 at 9:59 PM, Martin Grigorov mgrigo...@apache.orgwrote: Maxim, On Tue, May 21, 2013 at 5:53 PM, Maxim Solodovnik solomax...@gmail.com wrote: What date 6.9.0 is scheduled? It seems to be blocker for us :( You can copy/paste

Re: Panel switching

2013-05-27 Thread Maxim Solodovnik
Hello Martin, Is it possible to know current URL (used by the user if reverse proxy is used)? On Mon, May 27, 2013 at 2:34 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, I guess you know that History API (pushState) works only in IE10, all older versions of IE do not support it.

Re: Re:aj Component twice in markup while ax refresh in Wicket 6.7 (migrated from 1.5.10)

2013-05-28 Thread Maxim Solodovnik
I also saw this behavior using 6.8.0 The component with additional id was replaced, but there was time period when 2 components are present on page On Wed, May 29, 2013 at 12:12 AM, Heikki Uotinen heikki.uoti...@syncrontech.com wrote: Hi, we had similar issue and could not find jira ticket

Re: How I get the internal html content of a dynamically updated div tag using Apache Wicket

2013-06-01 Thread Maxim Solodovnik
Hello Martin, Is it possible to create FormComponentPanel as in following example https://cwiki.apache.org/WICKET/creating-custom-formcomponentpanels-to-build-valid-objects-using-wickets-form-validation-logic.html but taking the value from the div.innerHtml and not the textfield? On Sat, Jun

Re: How I get the internal html content of a dynamically updated div tag using Apache Wicket

2013-06-01 Thread Maxim Solodovnik
mapping between the client and the server usage of form components. On Sat, Jun 1, 2013 at 11:11 AM, Maxim Solodovnik solomax...@gmail.com wrote: Hello Martin, Is it possible to create FormComponentPanel as in following example https://cwiki.apache.org/WICKET/creating-custom

ResourceReference serving video files

2013-06-03 Thread Maxim Solodovnik
Hello All, I have weird problem: 1) wicket 6.8.0 2) resources are mounted in Application [1] using mountResource 3) video files are viewable in IE, Chrome, FF, Safari (iMac) 4) I got huge stack trace while accessing the files using iPad (Safari, latest iOS) [3] The code of resource references

Re: ResourceReference serving video files

2013-06-05 Thread Maxim Solodovnik
it be the cause of my issue? Is it possible to create ResourceReference with Content-Range support? Thanks in advance On Tue, Jun 4, 2013 at 12:55 PM, Maxim Solodovnik solomax...@gmail.comwrote: Hello All, I have weird problem: 1) wicket 6.8.0 2) resources are mounted in Application [1] using

ResourceResponse processing Accept-Ranges

2013-06-07 Thread Maxim Solodovnik
Hello All, Is it possible to create ResourceResponse in wicket able to work with ranges request for resource? i.e. initially set Accept-Ranges: bytes header parse Range: bytes=0-1 request header add correct Content-Range: bytes 0-1/232469 and Content-Length: 2 headers based on request Thanks in

Re: ResourceResponse processing Accept-Ranges

2013-06-07 Thread Maxim Solodovnik
Hello Sven, Thanks for the response I was able to implement this: https://svn.apache.org/repos/asf/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/web/util/RecordingResourceReference.java The only issue remains: the following stacktraces while client drops the current connection and

Re: ResourceResponse processing Accept-Ranges

2013-06-07 Thread Maxim Solodovnik
Sven [1] http://code.google.com/p/**wicket-guidehttp://code.google.com/p/wicket-guide On 06/07/2013 12:30 PM, Maxim Solodovnik wrote: Hello Sven, Thanks for the response I was able to implement this: https://svn.apache.org/repos/**asf/openmeetings/trunk/** singlewebapp/src/org/apache

Re: ResourceResponse processing Accept-Ranges

2013-06-07 Thread Maxim Solodovnik
will be appreciated :)) On Fri, Jun 7, 2013 at 5:48 PM, Maxim Solodovnik solomax...@gmail.comwrote: Thanks! will try it On Fri, Jun 7, 2013 at 5:46 PM, Sven Meier s...@meiers.net wrote: Hi, IMHO is would be easier to just extend AbstractResource and catch ClientAbortException in a custom

NoSuchMethodError after upgrading to 6.9.0

2013-07-01 Thread Maxim Solodovnik
Hello All, Just have upgraded to 6.9.0 and start getting: Caused by: java.lang.NoSuchMethodError: org.joda.time.LocalDate.toDate()Ljava/util/Date; at org.apache.wicket.extensions.yui.calendar.DateTimeField.onBeforeRender(DateTimeField.java:446) ~[wicket-datetime-jar-6.9.0.jar:6.9.0] 6.8.0 works

Re: NoSuchMethodError after upgrading to 6.9.0

2013-07-02 Thread Maxim Solodovnik
same time DateTextField works as expected :( after switching org.apache.wicket:wicket-datetime to rev=6.8.0 everything works as expected On Tue, Jul 2, 2013 at 12:12 PM, Maxim Solodovnik solomax...@gmail.comwrote: Hello All, Just have upgraded to 6.9.0 and start getting: Caused

Re: NoSuchMethodError after upgrading to 6.9.0

2013-07-02 Thread Maxim Solodovnik
dependencies. Maybe you have an older version of Joda Time in your app. On Tue, Jul 2, 2013 at 9:17 AM, Maxim Solodovnik solomax...@gmail.com wrote: same time DateTextField works as expected :( after switching org.apache.wicket:wicket-datetime to rev=6.8.0 everything works as expected

Re: NoSuchMethodError after upgrading to 6.9.0

2013-07-02 Thread Maxim Solodovnik
somehow everything was working without joda-time lib before 6.9.0 Thanks for your help Martin! On Tue, Jul 2, 2013 at 1:55 PM, Maxim Solodovnik solomax...@gmail.comwrote: Thanks, will double-check! On Tue, Jul 2, 2013 at 1:51 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi Maxim

Brazilian Portuguese localization question

2013-07-17 Thread Maxim Solodovnik
Hello All, I'm trying to provide Brazilian Portuguese localization for our wicket based application by appending _pt_BR to the names of html template files like this: CongratulationsPanel_pt_BR.html surprisingly after adding portuguese (Brazil) as browser primary language the localized template

Re: Brazilian Portuguese localization question

2013-07-18 Thread Maxim Solodovnik
Thanks for the quick response Sven, The locale is detected as pt_BR On Thu, Jul 18, 2013 at 2:25 PM, Sven Meier s...@meiers.net wrote: Hi, that should work. Put a breakpoint on Session#locale and check whether the locale is picked up correctly. Sven On 07/18/2013 07:13 AM, Maxim

Re: Brazilian Portuguese localization question

2013-07-18 Thread Maxim Solodovnik
Not sure if it is important information or not. The only component displayed on page is Wizard Wizard buttons are in Portuguese Brazil and panels are in English :( On Thu, Jul 18, 2013 at 2:40 PM, Maxim Solodovnik solomax...@gmail.comwrote: Thanks for the quick response Sven, The locale

Re: Brazilian Portuguese localization question

2013-07-18 Thread Maxim Solodovnik
Sorry Sven, Template files are named incorrectly, sorry for disturbing you On Thu, Jul 18, 2013 at 2:42 PM, Maxim Solodovnik solomax...@gmail.comwrote: Not sure if it is important information or not. The only component displayed on page is Wizard Wizard buttons are in Portuguese Brazil

Re: Draw inside Apache Wicket

2013-07-29 Thread Maxim Solodovnik
Here is an example: https://github.com/andunslg/Whiteboard-Wicket/ This project is currently in work-in-progress state On Mon, Jul 29, 2013 at 9:32 PM, Marco Di Sabatino Di Diodoro marco.disabat...@tirasa.net wrote: Hi all, I'm implementing a Dashboard with Apache Wicket. In the Dashboard

Re: wicket single page application: replacing panels with ajax and back button support

2013-08-25 Thread Maxim Solodovnik
we did it in Apache Openmeetings project https://svn.apache.org/repos/asf/openmeetings/trunk/singlewebapp/src/main/java/org/apache/openmeetings/web/ not sure if it can be used as an example :) but it is working :) On Sun, Aug 25, 2013 at 5:54 PM, Ilkka Seppälä iluwa...@gmail.com wrote: Hi,

Re: How to get URLs for images with in a WebApp

2013-08-28 Thread Maxim Solodovnik
((WebApplication) WebApplication.get()).getServletContext() .getRealPath(images) On Wed, Aug 28, 2013 at 6:11 PM, Andun Sameera andun...@gmail.com wrote: Hi All, I have a use case like this which needs some help. There is folder in my web app called images. There are some images in that

Re: client timezone and flickering

2013-09-11 Thread Maxim Solodovnik
Would be nice to have WebSession#getAjaxClientInfo out of the box :) On Wed, Sep 11, 2013 at 2:17 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, By default Wicket redirects temporarily to a special page where JavaScript extracts the info and sends it back to the server. You may need

Re: client timezone and flickering

2013-09-11 Thread Maxim Solodovnik
Will try :) On Wed, Sep 11, 2013 at 3:20 PM, Martin Grigorov mgrigo...@apache.orgwrote: Implement it and attach it to a ticket. On Wed, Sep 11, 2013 at 11:15 AM, Maxim Solodovnik solomax...@gmail.com wrote: Would be nice to have WebSession#getAjaxClientInfo out of the box

Re: Wicket merchandise

2013-09-19 Thread Maxim Solodovnik
Martin Grigorov +1 On Thu, Sep 19, 2013 at 4:02 PM, Sebastien seb...@gmail.com wrote: Martin Grigorov +1 On Thu, Sep 19, 2013 at 10:03 AM, Collinson, Alasdair alasdair.collin...@senacor.com wrote: +1 for Sven Meier, though I think he should get the bib. ;-) -Ursprüngliche

broken links in wicket-examples

2013-09-25 Thread Maxim Solodovnik
Hello, just found some [1] *.properties.xml resources from here [2]: are producing 404 error with following URL: [3] [1] FormInput_ja.properties.xml, FormInput_ru.properties.xml, FormInput_th_TH.properties.xml, FormInput_zh_CN.properties.xml [2]

Re: broken links in wicket-examples

2013-09-26 Thread Maxim Solodovnik
encoding and thus produces invalid XML characters. Please create an issue in Jira. Thanks Sven On 09/26/2013 01:56 AM, Maxim Solodovnik wrote: Hello, just found some [1] *.properties.xml resources from here [2]: are producing 404 error with following URL: [3] [1

Re: searching for a Rich text editor

2013-11-18 Thread Maxim Solodovnik
We are using this one: http://www.7thweb.net/wicket-jquery-ui/plugins/wysiwyg/WysiwygEditorPage?0 seems to work as expected :) On Tue, Nov 19, 2013 at 4:30 AM, Sebastien seb...@gmail.com wrote: Hi Dirk, For the Kendo one, this is because Kendo has released a new version

Re: Optional wrapping H1 tag

2013-11-22 Thread Maxim Solodovnik
You can avoid code duplication in case you don't really need h1 tag, but it is enough just to look like h1 tag ... you can add css like: h1, .myH1 { font-size:24px; } and change markup to be div wicket:id=homeLinkContainer a wicket:id=homeLink title=Home href=#ABC, Inc./a /div you will set

Re: client timezone and flickering

2013-12-02 Thread Maxim Solodovnik
/master/src/main/java/org/ajax/BrowserInfoForm.java Will wait for feedback from you :) On Wed, Sep 11, 2013 at 3:27 PM, Maxim Solodovnik solomax...@gmail.comwrote: Will try :) On Wed, Sep 11, 2013 at 3:20 PM, Martin Grigorov mgrigo...@apache.orgwrote: Implement it and attach

Re: client timezone and flickering

2013-12-03 Thread Maxim Solodovnik
like in ClientInfoBehavior but we will improve it. Thanks! On Tue, Dec 3, 2013 at 1:18 AM, Maxim Solodovnik solomax...@gmail.com wrote: Hello Martin, I finally was able implement this feature :) Could you please take a look at it? https://github.com/solomax/ajax-client-info/blob

Continuous page reload

2014-01-14 Thread Maxim Solodovnik
Hello all, I just have updated to 6.13.0 (to get WICKET-5435https://issues.apache.org/jira/browse/WICKET-5435 ) Unfortunately application stop working :( We are using single page design but after update the whole page is get reloaded continuously Can someone please suggest the way to find the

Re: Continuous page reload

2014-01-14 Thread Maxim Solodovnik
and Consulting On Tue, Jan 14, 2014 at 5:36 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello all, I just have updated to 6.13.0 (to get WICKET-5435https://issues.apache.org/jira/browse/WICKET-5435 ) Unfortunately application stop working :( We are using single page design

Re: Continuous page reload

2014-01-14 Thread Maxim Solodovnik
Is there any docs describing what was changed in the behaviors etc. so I can go through our code and fix it? Thanks in advance :) On Tue, Jan 14, 2014 at 10:48 PM, Maxim Solodovnik solomax...@gmail.comwrote: I do have TimerBehavior, but the issue was reproducible after commenting it. I also

Re: Continuous page reload

2014-01-14 Thread Maxim Solodovnik
Training and Consulting On Wed, Jan 15, 2014 at 7:28 AM, Maxim Solodovnik solomax...@gmail.com wrote: Is there any docs describing what was changed in the behaviors etc. so I can go through our code and fix it? Thanks in advance :) On Tue, Jan 14, 2014 at 10:48 PM, Maxim Solodovnik

Web Sockets proxying

2014-01-27 Thread Maxim Solodovnik
Hello All, Is there any way to perform proxying of web sockets? I have tried mod_proxy_wstunnel but with no luck due to 1) I might compile something to very stable (Segmentation fault under Ubuntu 13.10 HTTP 2.4.6) 2) both main app and ws URL are looks the same: http://localhost/openmeetings and

Re: Continuous page reload

2014-01-27 Thread Maxim Solodovnik
for this? Thanks in advance! On Wed, Jan 15, 2014 at 2:48 PM, Maxim Solodovnik solomax...@gmail.comwrote: Thanks, Will try to pin down the issue and will write back On Wed, Jan 15, 2014 at 2:31 PM, Martin Grigorov mgrigo...@apache.orgwrote: You can use git bisect if nothing else works

Re: Continuous page reload

2014-01-27 Thread Maxim Solodovnik
: Please give a link to NoVersionMapper. Martin Grigorov Wicket Training and Consulting On Mon, Jan 27, 2014 at 7:19 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello Martin, finally was able to find what is wrong: Everything starts working after replacing lines 122 and 123

Re: Web Sockets proxying

2014-01-27 Thread Maxim Solodovnik
, 2014 at 12:42 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All, Is there any way to perform proxying of web sockets? I have tried mod_proxy_wstunnel but with no luck due to 1) I might compile something to very stable (Segmentation fault under Ubuntu 13.10 HTTP 2.4.6) 2

Memory leaks best practices

2014-02-06 Thread Maxim Solodovnik
Hello All, Recently we have deployed our project to wicket project to production server. And start getting OutOfMemory PermGenSpace. I believe we have memory leak in our application maybe there is best practices how to deal with Models and JPA entities to resolve this? Thanks in advance --

Re: Memory leaks best practices

2014-02-06 Thread Maxim Solodovnik
leak, i.e. you keep references to Class instances and they cannot be released so the PermGen is overloaded. Those are very tricky to be debugged. Martin Grigorov Wicket Training and Consulting On Thu, Feb 6, 2014 at 1:07 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All

Re: Web Sockets proxying

2014-02-06 Thread Maxim Solodovnik
AM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks for the quick answer Paul, Segmentation fault is definitely caused by me, but I was not sure if it is compilation issue or bacuse of my configuration. I currently have Apache config like this: #WEBSOCKETS

Re: Memory leaks best practices

2014-02-06 Thread Maxim Solodovnik
the database connection! On Thu, Feb 6, 2014 at 8:54 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks a lot for quick answers have already added -Xms512M -Xmx2G -Xss1M -XX:PermSize=192m -XX:MaxPermSize=512m -XX:+CMSClassUnloadingEnabled Now will add *Model.detach(); to the code

Re: [ANN] wicket-dnd project

2014-03-11 Thread Maxim Solodovnik
We are using DND in Eclipse, it seems to work as expected On Tue, Mar 11, 2014 at 4:04 PM, Duke warlock9...@gmail.com wrote: Hi all, I'm try to use wicket-dnd 0.6.0 in my project. I got a strange behavior in my NetBeans 7.4 IDE when I add wicket-dnd library to my project library list.

The wicket way of getting application base URL

2014-03-12 Thread Maxim Solodovnik
Hello, I'm currently using SelfUpdatingAjaxBehavior [1] to get application base URL used by the end user. Maybe there is more standard way of doing this? Or maybe code like this can be added to ClientInfo? Thanks in advance! [1]

Re: The wicket way of getting application base URL

2014-03-12 Thread Maxim Solodovnik
).toString()); Url baseUrl = new Url(page.getRequestCycle().getUrlRenderer().getBaseUrl()); baseUrl.resolveRelative(pageUrl); return String.format(%s/%s, page.getRequest().getContextPath(), baseUrl); } Best regards, Sebastien. On Wed, Mar 12, 2014 at 5:14 PM, Maxim

Re: wicket:header-items/

2014-03-14 Thread Maxim Solodovnik
Great! very useful tag On Fri, Mar 14, 2014 at 7:50 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, At http://wicketinaction.com/2014/03/header-contributions-positioning/I've added a short description of a new special wicket tag - wicket:header-items/. It will be available with Wicket

Availability of RequestParameters in WebSession

2014-04-02 Thread Maxim Solodovnik
Hello All, I'm trying to get RequestParameters in getRoles() method of WebSession extends AbstractAuthenticatedWebSession [1] the code is like this: IRequestParameters params = RequestCycle.get().getRequest().getRequestParameters(); StringValue secureHash = params.getParameterValue(secureHash);

Re: Availability of RequestParameters in WebSession

2014-04-03 Thread Maxim Solodovnik
and attach it to a ticket in Jira. Thanks! Martin Grigorov Wicket Training and Consulting On Thu, Apr 3, 2014 at 5:57 AM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All, I'm trying to get RequestParameters in getRoles() method of WebSession extends AbstractAuthenticatedWebSession [1

Re: Restful Services

2014-04-08 Thread Maxim Solodovnik
You can try to use TomEE as your server, then use annotations I believe it will work regardless of Wicket version On Tue, Apr 8, 2014 at 6:29 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, This project has been introduced with WicketStuff 6.x -

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-09 Thread Maxim Solodovnik
I have attended, it was fun :) On Wed, Apr 9, 2014 at 10:51 AM, William Speirs wspe...@apache.org wrote: I gave a talk at ApacheCon NA yesterday on Croquet. It is a combination of Wicket, Jetty, Hibernate, and Guice to make it super-easy to start writing Wicket code almost immediately,

Re: Web Sockets proxying

2014-04-12 Thread Maxim Solodovnik
Training and Consulting On Thu, Feb 6, 2014 at 3:17 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello Martin, I have asked HTTPD mailing thread: http://httpd.markmail.org/thread/zohvqeokryvigpjn It seems to be impossible to set proxy on protocol basis. Maybe it would

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-14 Thread Maxim Solodovnik
In our project we have removed Hibernate because it's licence is not AL compatible We are using OpenJPA, was not so hard to replace On Mon, Apr 14, 2014 at 7:44 PM, Bill Speirs bill.spe...@gmail.com wrote: Chris, sorry for not responding more quickly... was traveling back from ApacheCon NA.

Re: drop n drop

2014-04-15 Thread Maxim Solodovnik
We are currently using DND with 6.14.0 Works as expected (with small display issues, which might be caused by massive ajax use) On Tue, Apr 15, 2014 at 3:23 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, https://github.com/svenmeier/wicket-dnd

Re: The wicket way of getting application base URL

2014-04-20 Thread Maxim Solodovnik
Thanks! Has added config option On Thu, Mar 13, 2014 at 8:39 PM, Chris Snyder chris.sny...@biologos.orgwrote: I think that such a configuration option is likely your only choice, and is something I often see in other webapps. The only other option I can think of would be if the proxy was

Re: WicketTester in Thread

2014-04-20 Thread Maxim Solodovnik
#2 works for me with Quartz Thanks Martin! On Sat, Apr 19, 2014 at 9:51 PM, Mathias Nilsson wicket.program...@gmail.com wrote: Thank you! 1) ComponentRenderer does not work. Have already tried that and with same result as my above error. 2) I get the same result when trying this. 3) I

Re: Delete version number in url

2014-05-10 Thread Maxim Solodovnik
Here is approach we are currently using: https://svn.apache.org/repos/asf/openmeetings/trunk/singlewebapp/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application.java(NoVersionMapper class) On Sun, May 11, 2014 at 2:01 AM, RedCarpet bluecar...@gmx.com wrote:

Re: # in URL

2014-05-16 Thread Maxim Solodovnik
It is definitely not, We are using https://github.com/wicketstuff/core/wiki/UrlFragment to work with URL hashes On Tue, May 13, 2014 at 4:22 PM, Sven Meier s...@meiers.net wrote: Hi, AFAIK everything after the hashbang is not sent to the server:

Wicketstuff snapshots

2014-06-21 Thread Maxim Solodovnik
Hello All, Maybe anyone knows is there any wicketstuff snapshot repository? If yes, what is the update period? Thanks in advance -- WBR Maxim aka solomax

Re: Wicketstuff snapshots

2014-06-21 Thread Maxim Solodovnik
://ci.wicketstuff.org/ deploys the snapshots and it is not very reliable ... I will release 6.16.0 soon. Martin Grigorov Wicket Training and Consulting On Sat, Jun 21, 2014 at 8:55 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All, Maybe anyone knows is there any wicketstuff

Re: Wicketstuff snapshots

2014-06-22 Thread Maxim Solodovnik
it uploading the release :) Martin Grigorov Wicket Training and Consulting On Sat, Jun 21, 2014 at 9:59 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks for the quick response Martin :) snapshots seems to be updated once in month and the half :( Will try to use releases

Bad zh_CN file in wicket-extensions-jar

2014-07-10 Thread Maxim Solodovnik
Hello, We have received following error report: INFO 07-09 21:43:29.953 o.a.w.r.PropertiesFactory:209 [http-nio-0.0.0.0-5080-exec-1] - Loading properties files from

  1   2   3   4   5   6   7   >