Re: [Wicket-user] Creating Image on the fly

2007-06-07 Thread Johannes Schneider
Thanks for your replys. I think this will help me. I have also found the Captcha Image - maybe I can follow the same style. Johannes Schneider Jean-Baptiste Quenot wrote: * Johannes Schneider: Of course I don't want to add the mail address as url parameter. Therefore I have

Re: [Wicket-user] wicket did not make the grade.

2007-06-07 Thread Martijn Dashorst
On 6/7/07, Upayavira [EMAIL PROTECTED] wrote: I've often heard it said that us human beings are strange - we often prefer the familiar to the pleasant. And it is confirmed in this article [1]: Explaining Cognitive Lock-In: The Role of Skill-Based Habits of Use in Consumer Choice KYLE B.

Re: [Wicket-user] MarkupContainer.add() fails if log4j is enabled

2007-06-07 Thread Johan Compagner
Moreover, this is an inconsistent behavior. System should have the same behavior regardless whether log is enabled or not. thats true, i was just saying your isVisible() shouldn't absolutely depend on a parent page.. It could be used in none logging code also. The parent hierarchy doesn't

Re: [Wicket-user] MarkupContainer.add() fails if log4j is enabled

2007-06-07 Thread Nili Adoram
If wicket policy prohibits isVisible() to depend on parent page, you might as well make it final. This is acceptable if you provide some other hook that may depend on parent page. Johan Compagner wrote: Moreover, this is an inconsistent behavior. System should have the same

[Wicket-user] Configuration Interceptor

2007-06-07 Thread Sven Schliesing
Hi, I'm trying to build a ConfigurationInterceptor for my wicket-application. Goal of this is the easy configuration file handling even when updating the application. The Application is started and looks if it has a property file configFileLocation.properties (this just contains the name of

Re: [Wicket-user] wicket did not make the grade.

2007-06-07 Thread A_flj_
Bad bad bad bad thing that the examples for the wicket-extensions are either hard to find or not documented very well. I'm trying for half a day now to find an example markup for inserting a treetable, but could not find anything. IMO it would be _very_ useful to make wars/jars/zips with Eclipse

[Wicket-user] [GMAP contrib] IE7 Ajax target appendJavascript not working?

2007-06-07 Thread Nino Saturnino Martinez Vazquez Wael
Hi We are experiencing some issues with ajax in IE7, possibly IE6 as well when using the target.appendjavascript. Are there any workarounds? I've looked a bit at http://www.nabble.com/-BUG-%3Cscript%3E-tag-evaluation-in-IE-t3839952.html but it does not seem to work. Any ideas, solutions

[Wicket-user] NPE at org.apache.wicket.markup.html.list.ListView.renderItem(ListView.java:645)

2007-06-07 Thread Johannes Schneider
Hi, I try to reproduce the FileUploadDemo using Wicket 1.3.0. But I get this NPE and really don't know what the problem could be. Any hints? Thanks, Johannes Schneider WicketMessage: Exception in rendering component: [MarkupContainer [Component id = _extend, page =

Re: [Wicket-user] NPE at org.apache.wicket.markup.html.list.ListView.renderItem(ListView.java:645)

2007-06-07 Thread Matthieu Casanova
Hi, I'm not sure but I had such problems with a ListView because I added some elements to my ArrayList in the onBeforeRender() method of my page, so the list was populated, but the rendering failed because there was a new element that was not populated because it didn't exists before. it was

Re: [Wicket-user] Form redirect issue

2007-06-07 Thread hillj2
Well after playing around with setContextPath() a bit, we've decided to try and get 1.3 working. It would be nice if it had an official release, but for now we only have one form done in wicket, so that shouldn't be too much of a problem. By the time we have more wicket pages a stable 1.3

Re: [Wicket-user] Form redirect issue

2007-06-07 Thread Martijn Dashorst
On 6/7/07, hillj2 [EMAIL PROTECTED] wrote: Well after playing around with setContextPath() a bit, we've decided to try and get 1.3 working. It would be nice if it had an official release, but for now we only have one form done in wicket, so that shouldn't be too much of a problem. By the

[Wicket-user] Use case - dublin core METADATA generator

2007-06-07 Thread Ví­t Rozkovec
Hallo, I have this problem and I need to get a bit of kick-start. See this page: http://www.webarchiv.cz/generator/dc.php (in Czech language, but I hope you get the picture) This is the generator which I need to replicate with all of its functionality in Wicket. So far I have managed to be able

[Wicket-user] turning off markup validation

2007-06-07 Thread Ví­t Rozkovec
Good day, one more issue - is there some way how to turn of markup validation? In my template I am using this: wicket:panel span wicket:id=outerConditionalStart/span ul li wicket:id=liItem a href=#

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread salmas
It's not a case of an unknown reference causing the not serializable exception. I know which object is not serializable and it is the concrete proxy object created by WebLogic for my remote EJB. I ended up checking if I was in development mode and then using a transient variable and then using a

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread Johan Compagner
so the end result is that in production you have now a none serializeable object in the session? that is not really the right solution if you ask me. also going to wicket1.3 (with SecondLevelCache) is not an option then johan On 6/7/07, salmas [EMAIL PROTECTED] wrote: It's not a case of

Re: [Wicket-user] Form redirect issue

2007-06-07 Thread hillj2
We're still having issues with our reverse proxy. This doesn't even involve the redirect issue yet. When our form hits user-defined validation errors we pass messages back to the feedback panel an then do nothing (so the default behavior kicks in to send it back to the form page). But the url

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread salmas
Eelco, I realized that you are recommending using Spring or looking up the bean on the fly some other way but I am working for a place where Spring is not part of the approved stack and they have an established way that access to EJB's is coded. I am a contracter here and I have to do things

[Wicket-user] TreeTable : html tags in cells howto

2007-06-07 Thread Matthieu Casanova
Hi, I wanted to add some custom tags in the cells of my TreeTable, but if I return html code in the public String renderNode(TreeNode node) method of my column, the tags are stripped. I found this idea to do what I want, it works but it's not very well : I had to replace the TreeFragment used in

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread Eelco Hillenius
Eelco, I realized that you are recommending using Spring or looking up the bean on the fly some other way but I am working for a place where Spring is not part of the approved stack and they have an established way that access to EJB's is coded. Not really. I mean a @SpringBean *construct*,

Re: [Wicket-user] Prototype scoped Spring beans

2007-06-07 Thread Igor Vaynberg
hrm. you say you will have a serialization problem if you lookup the bean directly and hold on to it. but isnt that exactly what you want? to pull out a prototype bean and keep it inside the form's scope? the form is in httpsession and so the bean will be serialized. so if that is what you want

Re: [Wicket-user] Injecting session scoped beans with wicket-spring-annot

2007-06-07 Thread Igor Vaynberg
this might be due to the fact that wicket performs a test-lookup on the bean to make sure its there and if not fail early. that might be what is causing the problem. will need to have a look. see AnnotProxyFieldValueFactory.testLocator(). that was ok for singleton beans, but probably not ok for

Re: [Wicket-user] editable tree table and select lists

2007-06-07 Thread Eelco Hillenius
Not sure, but ultimately, probably yes :) Did you try? Eelco On 6/5/07, NYSophia [EMAIL PROTECTED] wrote: Is it possible to put select lists inside an editable tree table? -- View this message in context: http://www.nabble.com/editable-tree-table-and-select-lists-tf3875441.html#a10981204

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread Igor Vaynberg
has this already been mentioned? http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-javaee -igor On 6/7/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Eelco, I realized that you are recommending using Spring or looking up the bean on the fly some other way but I am working

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread salmas
It would be a simple thing to look up the bean in each method in the service locater as versus keeping a reference. However, this is not how the existing service locaters here have been coded and they've been clear about wanting the new stuff to mimic the old stuff. The best way to solve the

Re: [Wicket-user] turning off markup validation

2007-06-07 Thread Juergen Donnerstag
Why do you need the fragments at all? The fragments body is a constant text, correct? You don't change it, you don't change the visibility. Juergen On 6/7/07, Ví­t Rozkovec [EMAIL PROTECTED] wrote: Good day, one more issue - is there some way how to turn of markup validation? In my template I

Re: [Wicket-user] FormTester, DropDownChoice Validation

2007-06-07 Thread Ingram Chen
I dig into 1.3 trunk, and yes, in FormTester constructor: *else* *if* ( (formComponent *instanceof* DropDownChoice) || (formComponent *instanceof* RadioChoice) || (formComponent *instanceof* CheckBox)) { setFormComponentValue(formComponent, formComponent.getValue());

Re: [Wicket-user] Form redirect issue

2007-06-07 Thread hillj2
This may be an issue with our proxy server not being able to handle redirects properly. We found on the post redirect it was sending the port/path of our app server back to the browser for the redirect. When we implemented the ONE_PASS_RENDER strategy it fixed the default form processing. For

Re: [Wicket-user] wicket did not make the grade.

2007-06-07 Thread howzat
I too would be sad to announce this outcome, especially after investing the time necessary to research and evaluate the options and having looked into some of the ways wicket improves the whole development experience for web apps and, the quality of the end product. I have only been working with

Re: [Wicket-user] editable tree table and select lists

2007-06-07 Thread NYSophia
Not yet, but we will. We have to learn more about wicket first. Eelco Hillenius wrote: Not sure, but ultimately, probably yes :) Did you try? Eelco On 6/5/07, NYSophia [EMAIL PROTECTED] wrote: Is it possible to put select lists inside an editable tree table? -- View this message

Re: [Wicket-user] form action url

2007-06-07 Thread Frank Bille
Hi Unless you have a specific reason to use that Filter for authorization I surgest that you take a look at SimplePageAuthorizationStrategy, which allows you to define which pages should be protected:

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread Johan Compagner
i did understand you, if you can't do anything to the object that is generated is fine by me. But i still say, don't have it as a serializeable field in your pages that you can handle. Just lookup the EJB when you need it and cache it in a transient variable johan On 6/7/07, salmas [EMAIL

Re: [Wicket-user] Wicket Security Configuration Question

2007-06-07 Thread Maurice Marrink
Thanks, Craig I've updated the getting started to include the example for the default mode, which is what most likely you will be using. I am sorry to say that as of yet i do not have an ETA for the examples but i will post it on the mailing list when i have them ready. Maurice On 6/7/07,

Re: [Wicket-user] turning off markup validation

2007-06-07 Thread Vit Rozkovec
Actually I do, sometime the conditional text is there (when there are subitems for current item), for all the rest the visibility of span is set to false. Vitek Juergen Donnerstag wrote: Why do you need the fragments at all? The fragments body is a constant text, correct? You don't change

[Wicket-user] WASPSession.logout(object)

2007-06-07 Thread craigdd
I see that the WASPSession.logout method takes a LoginContext. Is there somewhere within the SWARM implementation to grab the LoginContext used to login? Or when logging in is it up to the developer to put the LoginContext somewhere...say maybe the session itself? Thanks Craig -- View this

[Wicket-user] page map size

2007-06-07 Thread Scott Swank
Are these typical sizes for page maps? wicket:/app:p:null:267,668 bytes wicket:/app:p:null:155,861 bytes wicket:/app:p:null:052,817 bytes -- Scott Swank reformed mathematician - This SF.net email is