Re: Wicket Examples

2012-05-08 Thread Korbinian Bachl - privat
Hi, some hints: Make sure the jvm the server is running in is started with (I assume JRE 1.6 -> 1.6.0_32): -server -XX:+UseConcMarkSweepGC -XX:+CMSPermGenSweepingEnabled -XX:+CMSClassUnloadingEnabled Also make sure permGen is specified big enough, e.g: -XX:MaxPermSize=384m Also, I wouldn't

Re: Wicket 1.5 and glassfish 3.1.1 clustering (session replication)

2011-08-03 Thread Korbinian Bachl - privat
Hello, Vytautas, can you please make a bugreport on http://java.net/jira/browse/GLASSFISH 3.1.1 indeed has some quirks, but its better than 3.1; HTTP/HTTPS and wicket will loose JSessionId (http://java.net/jira/browse/GLASSFISH-17131) a.t.m. but if we give nice bug reports they will get fixed

Re: Wicket and Amazon EC2

2011-03-03 Thread Korbinian Bachl - privat
PS: please forget the link to ubuntu-setup - they try to promote their landscape there, made a mistake :( instead just use the aws-console with these preconfigured AMIs: http://uec-images.ubuntu.com/releases/lucid/release/ Am 03.03.11 06:15, schrieb ookpalm: Not at all? -- View this mess

Re: Wicket and Amazon EC2

2011-03-03 Thread Korbinian Bachl - privat
As long as you're using any EC2 instance with an EBS-AMI its just another server you can deploy any operating system on you like. Only remind that you mustn't terminate the machine but only stop/pause it as terminating equals to throwing away the server in reality while pausing means to shut i

Re: Brix CMS : Based Wicket framework

2010-12-10 Thread Korbinian Bachl - privat
Hello Moez, the link to the repo is wrong. Brix is no longer on googlecode but on github: https://github.com/brix-cms/brix-cms Keep spreading the word for Brix, best, Korbinian Am 10.12.10 15:58, schrieb moèz ben rhouma: It's very important for wicket users to now what is Brix CMS. So s

Re: URLs using wicket wizard

2010-12-01 Thread Korbinian Bachl - privat
What type of URLCodingStrategy do you use? IMHO the HybridURLCodingStrategy should do what you want Best Am 01.12.10 10:13, schrieb bamse: I am rather new to Wicket, still I am building an application using the Wizard-functionality, since this is very suitable for the app. The app consist

wicket + BPM/ jpbm

2010-11-29 Thread Korbinian Bachl - privat
Hello, as I had no luck in the ICQ channel, I post it here: Has anyone some knowledge about putting wicket and BPM together? I saw that there was a wicketBPM project in past by "kgalligan" under http://bigheadco.blogspot.com/2007/02/wicket-bpm-update.html but email and site are dead. Beside t

Re: [OT] where is JPA 2.0 API spec in maven?

2010-09-09 Thread Korbinian Bachl - privat
Oh, didn't know that - thx :) in fact I haven't yet had any situation where I needed the JPA-API from maven but not any persistence library as well; Nino, for what is it good for in your case? Best Am 09.09.10 09:34, schrieb Jan Kriesten: Hi Korbinian, in fact the current is 2.1.1, but

Re: [OT] where is JPA 2.0 API spec in maven?

2010-09-08 Thread Korbinian Bachl - privat
in fact the current is 2.1.1, but 2.0.0 is reference implementation and for the JPA 2.0 API it wont matter what 2.0.x it is (see scope provided here - just API); - usually one uses JPA API of the persistence provider he's using as long as he won't depend on an app server; Best, Korbinian A

Re: [OT] where is JPA 2.0 API spec in maven?

2010-09-08 Thread Korbinian Bachl - privat
JEE 6: javax javaee-api 6.0 provided JPA 2: org.eclipse.persistence eclipselink 2.0.0 provided Best, Korbinian Am 08.09.10 15:35, schrieb nino martinez wael

Re: Serialization of injected EJBs

2010-07-10 Thread Korbinian Bachl - privat
Hi Igor, as I might hit the problem in next weeks (GF 3.0.1 + EJB + Wicket) i just wanted to ask if your code is public and if not if its possible to scheme out the actions you did so far? Best, Korbinian Am 09.07.10 20:03, schrieb Igor Vaynberg: no, the module is for seam 2.1 which does

Re: Beginner question about wicket:extend

2009-08-14 Thread Korbinian Bachl - privat
Hi, well, wicket and JSP have not much in common beside the fact that they both rely on Java... a simple example for your needs would be this here: http://wicket.apache.org/examplemarkupinheritance.html Best, Korbinian Oliver-Sven Fritsch schrieb: Hi everybody! I'm really new to wicket an

Re: spring dojo or wicket for 508 application

2009-06-11 Thread Korbinian Bachl - privat
Am 11.06.2009 um 10:46 schrieb Korbinian Bachl - privat: dumb question: what is 508? tubin gen schrieb: My application must be 508 , we are using wicket , recentlyheard spring dojo , or spring dwr provides rich UI and ajax support and its 90% 508 complaint is that true ? Please sugges

Re: spring dojo or wicket for 508 application

2009-06-11 Thread Korbinian Bachl - privat
dumb question: what is 508? tubin gen schrieb: My application must be 508 , we are using wicket , recentlyheard spring dojo , or spring dwr provides rich UI and ajax support and its 90% 508 complaint is that true ? Please suggest us If we should go with spring dojo or wicket ?

Re: 5 Days of Wicket

2009-03-10 Thread Korbinian Bachl - privat
Hi Andrew, first I was a bit curious about "another wicket intro"(TM) but after reading it I was amazed. It is one of the best blog entries for wicket starting I've read as it elegantly uses helps like the quickstart and then shows how to config it for real world usage. Only things I miss is

Re: Blob or File for Images

2009-02-28 Thread Korbinian Bachl - privat
Francisco Diaz Trepat - gmail schrieb: Hi all. I am building a small shopping app for my girlfriend who sells women underwear (no, i do not get to run around with hot models, other than the uml ones). HA HA HA! :P *sorry could not resist* As the He-Man of this project I opted for Wicket

Re: [OT] Simple file repository?

2009-02-23 Thread Korbinian Bachl - privat
Hi Kaspar, just to save you some pain: in case of Jackrabbit don't use TransientRepository but RepositoryImpl instead and make it launch in the init() of you app and go down on the onDestroy() (in case you want to bundle it with your app). Transient has some bad behaviour and currently makes

Re: propertycolumn - date column, checkbox column

2009-02-14 Thread Korbinian Bachl - privat
Hi, use AbstractColumn instead and provide a panel that does what you want, eg: columns.add(new AbstractColumn(new Model("CHGE"), "changed") { public void populateItem(Item> cellItem, String componentId, IModel model) { cellItem.add(new ChangedCellPanel(componentI

Re: ListView - modify css for some column

2008-09-29 Thread Korbinian Bachl - privat
you should use DataTable instead of ListView for that; there you can easily manipulate by overriding the getCSS() function of the columns. Best, Korbinian radovan schrieb: Hallo community, my code looks like this: listView = new ListView("collectionIterator", listOfMy

Re: wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
ernate). Anyway, for the JPA configuration, you can look at: https://wicketopia.svn.sourceforge.net/svnroot/wicketopia/trunk/jpa-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml On Mon, Sep 29, 2008 at 7:57 AM, Korbinian Bachl - privat <[EMAIL PROTECTED]> wrote

Re: wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
:14 AM, Korbinian Bachl - privat <[EMAIL PROTECTED]> wrote: However, the OpenSessionInViewFilter will not work with wicket, even if mapped to "/*" in the web.xml Huh? We use it and it works just fine. By the way, have you tried OpenEntityManagerInViewFilter if

Re: wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
Wael schrieb: Hi Korbinian Im facing the same problems... I also use extended.. So gonna be great to see the outcome of this thread.. I think it could be something about missing usage of loadabledetachable model..? Korbinian Bachl - privat wrote: Hi, I'm currently struggling with th

wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
Hi, I'm currently struggling with the famous "lazy load exception" under spring + jpa with wicket. The problem is, in my case, that i pull an entity from the database using a spring-bean (@SpringBean) and JPA (hibernate). Then in the wicket class i need to walk the entity tree a bit, based o

Re: wicket-contrib-tinymce problem

2008-08-29 Thread Korbinian Bachl - privat
AFAIK you should add the tinyMCEBehaviour to the Textarea, sth like this: ta = new TextArea("field", model); ta.setRequired(required); ta.setLabel(new Model(label)); ta.setConvertEmptyInputStringToNull(false); TinyMceBehavior tmb = new TinyMceBehavior(getAdvancedSe

Re: Wicket Cart: open-source e-commerce wicket app

2008-08-29 Thread Korbinian Bachl - privat
Hello James, I'm also quite interested into this, however I'm stuck in work at moment, so don't have too much time. 2 things you really should consider: -> Brix! the CMS mentioned before, developed by 2 wicket-core devs and it would add all content functionality and house the cart, list etc;

Re: Dynamically Making changes to Tree Node

2008-08-02 Thread Korbinian Bachl - privat
He is a core dev - just listen to him :P ok, simple treeNode would be: IM A NODE - and Java: class TreeNode extends Panel { public TreeNode(String id, AnyOtherPossibleThingsYouNeed o) { if(IWantADeeperNodeFromHere) {

Re: [ANN] Brix 1.0 beta1

2008-07-24 Thread Korbinian Bachl - privat
Jeremy, please believe me and *don't* use either osCommerce or XTCommerce. Their code is just useless, they have no way of easy changing things and every release you will need to alter most of your provided code (there is no stable plugin system - they plan to do this for long now but havent b

Re: [ANN] Brix 1.0 beta1

2008-07-24 Thread Korbinian Bachl - privat
Hi Igor! Igor Vaynberg schrieb: On Thu, Jul 24, 2008 at 12:52 PM, Korbinian Bachl - privat <[EMAIL PROTECTED]> wrote: Hi Igor & Company! nice to see your CMS nearly ready! I already had a quick look at it and there is one thing I'm not quite sure about: Is Brix thougt of givi

Re: [ANN] Brix 1.0 beta1

2008-07-24 Thread Korbinian Bachl - privat
Hi Igor & Company! nice to see your CMS nearly ready! I already had a quick look at it and there is one thing I'm not quite sure about: Is Brix thougt of giving a underlying space and then build a wicket-app on it or is it more a way to extend a existing wicket-app with the features of a CMS?

Re: FactoryPattern + Forms/ Enclosures + Feedback

2008-04-15 Thread Korbinian Bachl - privat
Follow-UP: I solved the problem I had with the listView; it works as expected if you do a .setReuseItems(true); to the ListView However, the problem with the wicket enclose to a feedBackPanel still exists... this one wont work; Korbinian Bachl - privat schrieb: Hello, Ive got 2

Re: Strange behavior of wicket-security libraries in netbeans

2008-04-15 Thread Korbinian Bachl - privat
AFAIK the packages have changed between the Versions, so NB cant find them (thats correct though); try a full recompile (the one with delete & recompile) and you should get the wrong classes in the output; there hit the link to the classes and issue an "Fix Imports" via the right context menu,

FactoryPattern + Forms/ Enclosures + Feedback

2008-04-15 Thread Korbinian Bachl - privat
Hello, Ive got 2 problems, 1st; I tried the FactoryPattern with form components like TextField and now have the problem, that due to the recreation of the FormFields by the Factory the inserted value into the model gets lost in case of a invalid form submit (e.g: error in one field = all entered

Re: Removing the jsessionid for SEO

2008-04-14 Thread Korbinian Bachl - privat
ot; All I can say in our case is that I added this filter several months ago, and I can't see any negative effects so far. greetings, Rüdiger 2008/4/14, Korbinian Bachl - privat <[EMAIL PROTECTED]>: Hi Rüdiger, AFAIK this could lead to some punishment by google, as he browses th

Re: Removing the jsessionid for SEO

2008-04-14 Thread Korbinian Bachl - privat
Hi Rüdiger, AFAIK this could lead to some punishment by google, as he browses the site multiple times using different agents and origin IPs and in case he sees different behaviours he thinks about cloaking/ prepared content and will act accordingly to it; This is usually noticed after the re

Re: wicket-contrib-javaee

2008-04-13 Thread Korbinian Bachl - privat
make sure you include wicket-ioc as well, as wicket-contrib-javaee depends on it; Best, Korbinian greeklinux schrieb: Hello, I am building an ee application and I want to use wicket in the web tier. Now I find wicket-contrib-javaee on wicketstuff.org and it looks nice. But there is a proble

Re: Shared resources with parameters?

2008-04-13 Thread Korbinian Bachl - privat
Hi Erik, you might want to use IndexedPageParams, so you could do: mount("/myPath", myForwardClass.class); in init; the parameter with index 0 is the first one, the index 1 is second and so on, delimiteds are the ones by "/" eg: myapp.com/myPath/param0/param1/param2 ... and so on; alternat

Re: Removing the jsessionid for SEO

2008-04-13 Thread Korbinian Bachl - privat
Hi Jeremy, youre absolutely right; Nearly all spiders today can handle the default sessions, may it be Java, PHP, .Net etc. ; those guys at google and mircosoft arent beginners! And its also important to understand that a URL with wicket in fact is to a part nothing more than a plain string

Re: localizer and variables

2008-04-08 Thread Korbinian Bachl - privat
well, in your case its not an "easy" string, but one with 2 parameters - in case you have a plain string you can also use the wicket:message method that is quite better suited for this (e.g: 2 message blocks - 1 before, 1 after and in middle a simple label that spews out the user data); if you

Re: @SpringBean in init

2008-04-08 Thread Korbinian Bachl - privat
d use AnnotSpringWebApplication or "manually" setup injector in InjectorHolder: InjectorHolder.setInjector(new AnnotSpringInjector(getSpringContextLocator())); -- Daniel On Tue, Apr 8, 2008 at 10:19 AM, Korbinian Bachl - privat <[EMAIL PROTECTED]> wrote: Hi Mathias, in short: you ca

Re: localizer and variables

2008-04-08 Thread Korbinian Bachl - privat
Hi, > How can I use this in my wicket page? I have looked at getLocalizer() but > there is no were to set the name variable. How can I use this in wicket? you could start using the search function on the mailinglist or browisng the wicket wiki as we had this question just 23 hours ago htt

Re: @SpringBean in init

2008-04-08 Thread Korbinian Bachl - privat
Hi Mathias, in short: you cant; the @SpringBean injection is usually done before the class is really created so at a time wicket and spring aren't registered yet; What you could do (not 100% sure) would be to call a simple proxy-pojo that gets you the data (even maybe a LoadableDetachable on

Re: property file

2008-04-07 Thread Korbinian Bachl - privat
Hi, you mean for i8n issues? if you want to use properties on your pages you dont need to mess with the file, just use it in your label or message-resource, look here for some simple cases: http://cwiki.apache.org/WICKET/general-i18n-in-wicket.html Best, Korbinian tbt schrieb: Hi, I lik

Re: Maven multi module app using wicket spring hibernate

2008-04-07 Thread Korbinian Bachl - privat
you need to assign the correct application class (fully path!) derived from WebApplication -> is outcommented and not set, correct this; also remember to call addComponentInstantiationListener(new SpringComponentInjector(this)); in your application's init() function Best Korbinian pxk sc

Re: Removing the jsessionid for SEO

2008-04-04 Thread Korbinian Bachl - privat
Hi Jeremy, Hi Dan, for a project long ago I had the trail of making a product-browser SEO friendly; I used a plain PagingNavigator at first, and then extended it to have it to use the IndexedUrlPageParameters; this allowed me to put anything into the path to have a nice URL; the key here is

Re: wicket, spring and aop

2008-04-04 Thread Korbinian Bachl - privat
Hello, im quite new to spring, but afaik you cant have spring manipulating wicket itself; however you could create a spring based proxy-class for those purposes and have it used by @SpringBean(name="name") where you put the logic in it; maybe its possible to have a wicket-PageClass be also a

Re: YUI integration?

2008-03-03 Thread Korbinian Bachl - privat
Hello, im currently the only one on it, and I have very short time currently. wicketstuff-YUI is currently at 2.4.1, but 2.5 is a problem as they had some api-changes, which means it isnt a drop in replacement. The trouble is IMHO that they (YUI) havent made their homework first by completing

Re: get Form information after submit

2008-03-01 Thread Korbinian Bachl - privat
do you have the necessary setters/ getters for teststring??? Regards, Korbinian taygolf schrieb: teststring in onSubmit is always null no matter what I have entered in the textfield. Any help with this would be most appreciated. Thanks T igor.vaynberg wrote: what about it didnt work? it