Re: Asynchronous construction of page

2009-11-04 Thread jpswain
Wicket is remarkably fast and efficient the way it is used in common practice. To do what you are suggesting would be to wreck that big time. Why on earth do you want to do this? Kaspar Fischer-2 wrote: I am trying to find out how to load several parts (Wicket panels) of a page in

Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-09-16 Thread jpswain
All you have to do is not put sensitive forms on bookmarkable pages. The bookmarkable pages containing forms should be things like searches, that aren't really meaningful targets for attack. The sensitive forms for things like account info, transactions, etc, should be on session-relative URLs

Re: Tomcat Context problem

2009-05-28 Thread jpswain
Your context.xml file needs to be like this ?xml version=1.0 encoding=UTF-8? Context path=/ You probably have this: ?xml version=1.0 encoding=UTF-8? Context path=/WicketApp/ Hope this helps! Jamie Anton Veretennikov wrote: Hello, all wicket users! I'm new to this list but like to be

Re: setting up REST API that can respond to requests alongside Wicket

2009-04-02 Thread jpswain
context which every filter and servlet can access. -igor On Wed, Apr 1, 2009 at 7:51 PM, jpswain jpsw...@gmail.com wrote: Igor, Thanks for the response. Sorry, I wasn't very clear when I said wicket realm. What I meant was to be able to access the Wicket DAO's and stuff like

Re: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread jpswain
-1 (because this isn't real) As ashamed as I am to say it, WicketFX does sound kind of cool! Martijn Dashorst-4 wrote: The Wicket PMC has discussed the following action. Because I think it is prudent that the Wicket community keeps evolving with the state of Java, I've created a board

Re: setting up REST API that can respond to requests alongside Wicket

2009-04-01 Thread jpswain
Igor, Thanks for the response. Sorry, I wasn't very clear when I said wicket realm. What I meant was to be able to access the Wicket DAO's and stuff like that. Maybe what I am talking about is only directly possible with objects that share the same classloader? Would the best way to

Re: Wicket - Ajax(Fallback)Button and Form - possible solution to problem

2008-11-07 Thread jpswain
this helps. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Nov 7, 2008 at 1:00 AM, jpswain [EMAIL PROTECTED] wrote: Jeremy, Thanks for checking it out! Everything you said is true, except you missed one thing, the button won't get anything out of the field except what was last

Wicket - Ajax(Fallback)Button and Form - possible solution to problem

2008-11-06 Thread jpswain
As far as I can tell--and I realize there is a good chance I have missed something--even with nested forms or buttons set to setDefaultFormProcessing(false) there is no way to create a functionality like the Gmail sign-up page with it's Check Availability button. Basically what I'm trying to do

Re: Wicket - Ajax(Fallback)Button and Form - possible solution to problem

2008-11-06 Thread jpswain
Jeremy, Thanks for checking it out! Everything you said is true, except you missed one thing, the button won't get anything out of the field except what was last (if yet) submitted by the entire form to update its model. So, in this case setDefaultFormProcessing(false) definitely does Not work.

Maven Wicket 1.4-m3 can't install/build.

2008-11-03 Thread jpswain
Hey guys, I've been working with Wicket using Ant for the last year with no big problems. However, I am now trying to get maven working so I can build a quickstart to demonstrate a problem I'm having with AjaxFallbackButton. Anyways, sorry for the extremely long post, but maven is just driving

Re: Maven Wicket 1.4-m3 can't install/build.

2008-11-03 Thread jpswain
Igor, Thanks! I just saw that a few minutes ago. There was some weird stuff in the quickstart java files where one had the page genericized as Void and some other stuff. I appreciate the help. J -- View this message in context:

AjaxFallbackButton and setDefaultFormProcessing(false)

2008-11-03 Thread jpswain
I'm building a registration page for my wicket app, and I'm having trouble getting an AjaxFallbackButton to work the way I would like it to. I have several fields for the user to fill out on my registration page, including email, password, desired-username, etc. What I want is to have an

My Wicket + Hibernate project- Transaction solutions? Java EE w/ Wicket?

2008-08-23 Thread jpswain
I'm just curious what everyone is using for transaction management. I have been working with Wicket for a while now (and loving it) on a pet project that also uses Hibernate and Guice. I'm realizing now that I might need/want transactional support for a couple parts of my app. I don't have

Re: users, please give us your opinion: what is your take on generics with Wicket

2008-07-25 Thread jpswain
1) Generifying* Wicket [X ] Can best be done like currently in the 1.4 branch, where models and components are both generified. I care most about the improved static type checking generified models and components give Wicket. 2) How strongly do you feel about your choice above? [X ]

Re: JavaScript w/ Flash Player - Need guidance on to generate session-relative url's

2008-03-30 Thread jpswain
I appreciate your reply. The problem I'm having is that I really need a way to have a component that basically adds this JavaScript as a link: lt;a href=javascript:playFile('linktofilehere.mp3')gt;Play [1]lt;/agt; (The anythinghere.mp3 part would be dynamically generated depending on what I

JavaScript w/ Flash Player - Need guidance on to generate session-relative url's

2008-03-28 Thread jpswain
I have some JavaScript on my main page that contains a special Flash player that loads and starts playing a specific mp3 file for each associated link that the user clicks on. This currently works fine when I use mountSharedResource within my application subclass, then my JavaScript calls