[Wicket-user] How to display applet in wicket?

2007-05-11 Thread edward durai
Hi to all, I have one graph.java file. In HTML I can display like APPLET CODE=graph.class WIDTH=900 HEIGHT=400 PARAM name=title value=Date Vs Average Speed PARAM name=X_axis_description value=Average Speed PARAM name=Y_axis_description value=Date PARAM name=variation_series

Re: [Wicket-user] POST form submissions being converted to GETs

2007-05-11 Thread Erik van Oosten
Wicket will always do a redirect after the POST. So the information you are seeing is from the second request, which is a GET. You can install LiveHTTPHeaders in FireFox. There is something similar for IE. Regards, Erik. Lowell Kirsh wrote: I have a wicket form which is supposed to be

Re: [Wicket-user] POST form submissions being converted to GETs

2007-05-11 Thread Lowell Kirsh
Thanks for the advice. That is unfortunate in my case. But that's a bit off topic from this, so I will post another message. On 5/10/07, Erik van Oosten [EMAIL PROTECTED] wrote: Wicket will always do a redirect after the POST. So the information you are seeing is from the second request, which

[Wicket-user] Wicket and web services

2007-05-11 Thread Lowell Kirsh
I want some of my pages to be accessed programatically. Basically, that page may be accessed as a 'web service'. So the same page may be arrived at in 2 ways - the result of a form submission from another page in the same app, or the result of a direct http connection. When accessed as a web

Re: [Wicket-user] WicketFilter doesn't work in Weblogic [Wicket 1.3]

2007-05-11 Thread Johan Compagner
we only use servletpath when we are in servlet mode: public String getRelativePath(HttpServletRequest request) { String path = Strings.stripJSessionId(request.getRequestURI()); String contextPath = request.getContextPath(); path = path.substring(contextPath.length());

Re: [Wicket-user] POST form submissions being converted to GETs

2007-05-11 Thread Eelco Hillenius
It's a great pattern in general, as you never have to worry again about users re-submitting the form when they press refresh or the back button. If you want to break out in specific cases, RequestCycle.get().setRedirect(false) in your form's onSubmit method should do the trick. If you don't want

[Wicket-user] wicket stuff GMap: New Exciting Features:)

2007-05-11 Thread Nino Saturnino Martinez Vazquez Wael
Hi I've been working on the gmap, and these new features are in place: Using gmap v 2 Custom gIcons can now be added(define your on small map pin). Gmap(serverside) are updated when the user moves,zooms etc via ajax. Control which Gmap controls you want displayed Using google

[Wicket-user] WysiwygTextarea: Bind IFrame-Content to a Model

2007-05-11 Thread Ralf Eichinger
I want to make a simple wysiwyg-textarea. this is done by using an IFrame in design mode and copying the html from the IFrame to a hidden field when the form is submitted. so the html-data can be transfered to a HiddenField that is bind to the model. that's the theory, but as a new wicket user I

Re: [Wicket-user] How to display applet in wicket?

2007-05-11 Thread Robert Novotny
Hello, there is nothing special in displaying applets in wicket pages. Just put the proper applet tags into the HTML page template. You don't even need to have corresponding components in the Java class, since applet is not a wicket component. Robert Novotny edward durai wrote: Hi to all,

Re: [Wicket-user] wicket stuff GMap: New Exciting Features:)

2007-05-11 Thread Nino Saturnino Martinez Vazquez Wael
Now the insert mode works aswell:) Nino Saturnino Martinez Vazquez Wael wrote: Hi I've been working on the gmap, and these new features are in place: * Using gmap v 2 * Custom gIcons can now be added(define your on small map pin). * Gmap(serverside) are updated when the user

Re: [Wicket-user] Wicket requiring one of my Spring managed beans to have a default constructor

2007-05-11 Thread Matt Welch
Thanks. That's great information to have. I now have a couple of clear directions I can go to solve the issue. On 5/9/07, Igor Vaynberg [EMAIL PROTECTED] wrote: if your class is an interface then wicket will create a jdk proxy. if your class is not an interface then we cannot create this

Re: [Wicket-user] Any Problems:Wicket on Tomcat 6

2007-05-11 Thread Nino Saturnino Martinez Vazquez Wael
Hi you wouldnt be deploying in development mode? We've had this come up a lot of times before, and I think the problem are described somewhere... You need to deploy in production mode you can do that by: !-- There are three means to configure Wickets configuration mode and they are

[Wicket-user] Any Problems:Wicket on Tomcat 6

2007-05-11 Thread Ayodeji Aladejebi
Hi Wicket Family, Please I just want to ask if anybody is presently deploying a wicket based project on Tomcat 6 and Java 6 platform. From Wicket founders point of view, which app server is the best for wicket apps Tomcat, Resin, Jetty, Glassfish There is this too many open files problem

Re: [Wicket-user] wicket-contrib-dojo for wicket 1.3.0

2007-05-11 Thread Vincent Demay
Hi Dragos, Could you please fill a issue with that, I will try to fix it as soon as got 5minutes. (http://wicketstuff.org/jira/browse/DOJO) -- Vincent Dragos Bobes a écrit : Hi Vincent, Thanks again for your interest in helping me. I think I found the problem. I started a new project and

Re: [Wicket-user] wicket stuff GMap: New Exciting Features:)

2007-05-11 Thread Nino Saturnino Martinez Vazquez Wael
I wanted to explain what insert mode could be used for. Basicly its intended for user addition of markers, if for example your users would be allowed to add individual markers, like my maps on google. However these marker could be shared be between users etc. regards Nino Nino Saturnino

Re: [Wicket-user] Any Problems:Wicket on Tomcat 6

2007-05-11 Thread Ayodeji Aladejebi
wait wait, i did not say that I am deploying in development modeoff course i know about production mode however we were on production mode when our hosting company reports that we have our server crashing due to many open files however, we are presently upgrading and fixing bugs and we are

Re: [Wicket-user] Any Problems:Wicket on Tomcat 6

2007-05-11 Thread Ayodeji Aladejebi
about the version we are deploying on, I mean wicket1.2.6 not 1.2.7 On 5/11/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi you wouldnt be deploying in development mode? We've had this come up a lot of times before, and I think the problem are described somewhere... You

[Wicket-user] Id is -relative_path_prefix1 after upgrade to 1.3 snapshot

2007-05-11 Thread John RDF
I am currently getting markup exceptions that were OK in 1.2.6. The login panel component does exist as a div in the html and worked fine before. What worries me is that the component thinks its id is -relative_path_prefix1 not login. Where did this come from? Unable to find component with id

Re: [Wicket-user] Any Problems:Wicket on Tomcat 6

2007-05-11 Thread Eelco Hillenius
There's also a Tomcat specific thing you can configure for this. You should be able to find this if you search the list archives. Eelco On 5/11/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: wait wait, i did not say that I am deploying in development modeoff course i know about production

Re: [Wicket-user] wicket stuff GMap: New Exciting Features:)

2007-05-11 Thread Eelco Hillenius
PS this is the right place to write about new features correct? Technically, the dev list would be better. But this is fine. Thanks for your contributions and keeping us up-to-date! it would also be great if you could write up a page at http://wicketstuff.org/confluence/display/STUFFWIKI/Wiki

Re: [Wicket-user] Id is -relative_path_prefix1 after upgrade to 1.3 snapshot

2007-05-11 Thread Igor Vaynberg
i think this is due to our latest url refactor. please create a jira issue and attach markup/html or a quickstart that reproduces the problem. -igor On 5/11/07, John RDF [EMAIL PROTECTED] wrote: I am currently getting markup exceptions that were OK in 1.2.6. The login panel component does

Re: [Wicket-user] Any Problems:Wicket on Tomcat 6

2007-05-11 Thread Johan Compagner
to many open files should be fixed in the latest release op 1.2 (and 1.3)
also look at anti resource an jar locking for tomcat On 5/11/07, Eelco Hillenius [EMAIL PROTECTED] wrote: There's also a Tomcat specific thing you can configure for this. You should be able to find this if you search the

Re: [Wicket-user] have problems with AjaxSelfUpdatingTimerBehavior and AjaxTabbedPanel

2007-05-11 Thread Johan Compagner
please make a jira issue with the fix you now have On 5/10/07, Murat Yücel [EMAIL PROTECTED] wrote: Hi James Thanks for the fix. It works like a charm :)... Is this something that wicket will solve in a future release? /Murat 2007/5/10, James McLaughlin [EMAIL PROTECTED]: erm, sorry

Re: [Wicket-user] WicketFilter doesn't work in Weblogic [Wicket 1.3]

2007-05-11 Thread dukejansen
Hmm, interesting. The code I'm looking at, from the beta1 snapshot, looks more like this: String path = request.getServletPath(); if (servletMode) { path = request.getPathInfo(); // No path info =

[Wicket-user] How to close a modal window backed by a page?

2007-05-11 Thread jamieballing
We have a modal window which is backed by a Page (rather than a Panel). We are using a Page because we have a file upload control which doesn't work with Ajax. The modal window has a form on it with a submit link. How do I get the modal window to close after the form is submitted (i.e. during

[Wicket-user] Wickettester and Validators

2007-05-11 Thread behlma
Hi guys, I'm just fiddling around with the FormTester. Say I have a RequiredValidator and StringLengthValidator on my textfields in a form, with custom error messages specified in the page's .properties file. How can I let wickettester retrieve those custom message, instead of hardcoding them

Re: [Wicket-user] have problems with AjaxSelfUpdatingTimerBehavior and AjaxTabbedPanel

2007-05-11 Thread Matej Knopp
Yeah, looks like a good idea :) On 5/11/07, Johan Compagner [EMAIL PROTECTED] wrote: please make a jira issue with the fix you now have On 5/10/07, Murat Yücel [EMAIL PROTECTED] wrote: Hi James Thanks for the fix. It works like a charm :)... Is this something that wicket will solve

Re: [Wicket-user] RedirectPage and expiration

2007-05-11 Thread Carlos Pita
Hi again Eelco, I have coded a little example: a simple page with just one external and one internal link. I can not reproduce the problem in this reduced scenario. But if both links are rows of a ListView (even if it's outside a TabbedPanel), after following the external one once, the internal

Re: [Wicket-user] RedirectPage and expiration

2007-05-11 Thread Carlos Pita
PS: if you think it's worthly of doing, I could open a jira issue for this. On 5/11/07, Carlos Pita [EMAIL PROTECTED] wrote: Hi again Eelco, I have coded a little example: a simple page with just one external and one internal link. I can not reproduce the problem in this reduced scenario.

[Wicket-user] Fwd: inspecting property models

2007-05-11 Thread Ryan Sonnek
forwarding to wicket-user -- Forwarded message -- From: Ryan Sonnek [EMAIL PROTECTED] Date: May 10, 2007 10:33 PM Subject: inspecting property models To: [EMAIL PROTECTED] This discussion came out of the recent hibernate wicket-stuff activity. For my

Re: [Wicket-user] have problems with AjaxSelfUpdatingTimerBehavior and AjaxTabbedPanel

2007-05-11 Thread James McLaughlin
done! https://issues.apache.org/jira/browse/WICKET-556 with a brief discussion of other possibilities. best, jim On 5/11/07, Matej Knopp [EMAIL PROTECTED] wrote: Yeah, looks like a good idea :) On 5/11/07, Johan Compagner [EMAIL PROTECTED] wrote: please make a jira issue with the fix you

Re: [Wicket-user] url mounting and PageParameters

2007-05-11 Thread smallufo
Hi There is already a jira issue here (1.2.x) : http://issues.apache.org/jira/browse/WICKET-400 2007/5/9, Igor Vaynberg [EMAIL PROTECTED]: still, the query string params should be merged. please file a jira issue if you are using 1.3 -igor On 5/9/07, Lowell Kirsh [EMAIL PROTECTED]

[Wicket-user] PopupSettings with no window name set generates invalid xhtml on Link

2007-05-11 Thread James Renfro
Hi, I've just switched my code over from 1.2 to 1.3 beta, and I'm running into a problem where Wicket seems to be generating invalid xhtml -- specifically, it produces an href tag with a blank target attribute, as here: a href=?wicket:interface=:6:rows:1:launch::ILinkListener: target

Re: [Wicket-user] RedirectPage and expiration

2007-05-11 Thread Eelco Hillenius
On 5/11/07, Carlos Pita [EMAIL PROTECTED] wrote: PS: if you think it's worthly of doing, I could open a jira issue for this. Sure. I'm about to go on vaction for two weeks, so you can add an issue to make sure *someone* looks at it and it doesn't get lost in the tons of mail on this list. The

Re: [Wicket-user] RedirectPage and expiration

2007-05-11 Thread Carlos Pita
The examples are pretty minimal, I think that they're fine for a jira issue, don't you? I'm going to post the project as is for now. Then, if there is a need, I could refine it to a minimal, atomic, undivisible entity :). Cheers, Carlos On 5/11/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On

Re: [Wicket-user] RedirectPage and expiration

2007-05-11 Thread Eelco Hillenius
On 5/12/07, Carlos Pita [EMAIL PROTECTED] wrote: The examples are pretty minimal, I think that they're fine for a jira issue, don't you? Sure. Eelco - This SF.net email is sponsored by DB2 Express Download DB2 Express C -

Re: [Wicket-user] inspecting model from IComponentInstantiationListener

2007-05-11 Thread Eelco Hillenius
On 5/11/07, Ryan Sonnek [EMAIL PROTECTED] wrote: What exactly should a component instantiation listener be able to do? I'm trying to build one that will inspect the model of every component, but the model is not yet bound. is there a way to register a listener that is notified once the model

Re: [Wicket-user] Fwd: inspecting property models

2007-05-11 Thread Eelco Hillenius
On 5/11/07, Ryan Sonnek [EMAIL PROTECTED] wrote: forwarding to wicket-user This was/ is a developer discussion, which is fine on the dev list. Let's keep the thread there. Eelco - This SF.net email is sponsored by DB2

Re: [Wicket-user] Page Expiration when first clicking AJAX

2007-05-11 Thread Andrew Berman
Could there be an issue with the PageMap? On 5/11/07, Andrew Berman [EMAIL PROTECTED] wrote: I am having a strange issue. If I access my site for the first time (I clear all cookies, sessions, and cache before going to the site), the page comes up fine. However, if I click one of the AJAX

Re: [Wicket-user] WicketFilter doesn't work in Weblogic [Wicket 1.3]

2007-05-11 Thread Johan Compagner
http://www.wicketstuff.org/maven/repository/org/apache/wicket/wicket/1.3.0-incubating-SNAPSHOT/ On 5/11/07, dukejansen [EMAIL PROTECTED] wrote: Hmm, interesting. The code I'm looking at, from the beta1 snapshot, looks more like this: String path = request.getServletPath();

Re: [Wicket-user] Page Expiration when first clicking AJAX

2007-05-11 Thread Andrew Berman
Igor, Eelco, anyone? This issue is pretty major as I'm losing all the session info when they first come into the app On 5/11/07, Andrew Berman [EMAIL PROTECTED] wrote: Could there be an issue with the PageMap? On 5/11/07, Andrew Berman [EMAIL PROTECTED] wrote: I am having a strange

Re: [Wicket-user] How to display applet in wicket?

2007-05-11 Thread edward durai
Hi, I have tried. but i am not able to display that applet. Please give me one sample. Thanks Robert Novotny wrote: Hello, there is nothing special in displaying applets in wicket pages. Just put the proper applet tags into the HTML page template. You don't even need to have