RE: FOSDEM 2011 presentation online

2011-02-08 Thread Ames, Tim
Thanks for sharing. The audio of the presentation would have been a plus, unless the audio was there and I missed it somehow :) -Original Message- From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] Sent: Monday, February 07, 2011 2:50 PM To: users@wicket.apache.org Subject:

RE: Accessing Wicket Application from custom servlet

2009-08-04 Thread Ames, Tim
Just a guess: Application wicketApplication = Session.get().getApplication(); Cast like this if you need to: MyWicketApplication wicketApplication = (MyWicketApplication) Session.get().getApplication(); -Original Message- From: Aaron Dixon [mailto:atdi...@gmail.com] Sent: Tuesday,

RE: Questions about Wicket sessions

2009-07-27 Thread Ames, Tim
Question #2 can be muddy depending on how the new window was launched. In my experience (Using IE 6) if you click on a link (i.e target=_blank) that launches an application and log in, then go back and click that link again to open a new window to the same application, you will be using the

RE: Page Expire

2009-06-23 Thread Ames, Tim
From what I have read on this forum, page expires and session expires can be two different things. Search in this forum for the message What does page expired mean?. The discussion talks about several issues not just session expiration. -Original Message- From: Dipu

Ajax enabled pages are slow to load

2009-06-18 Thread Ames, Tim
I have recently converted a project from 1.3.5 to 1.4.rc-4. The only thing that I have changed with it is adding all the generics. On pages, panels, etc. that I have ajax classes, the pages are taking a great deal of time to load. They were not exactly quick to load for me in 1.3.5, but in

RE: Send Page Parameter to Login Page after Calling Logoff Method

2009-06-16 Thread Ames, Tim
I recently had an issue with the LoginPage also. This was using the AuthenticatedWebSession and AuthenticatedWebApplication classes. Not sure if this holds true with Wasp. I wanted to access the page parameters in the LogIn class itself but could not. I had to save the page parameters in

RE: how to avoid multiple session for the same username

2009-06-12 Thread Ames, Tim
Be careful not to confuse sessions with opening new windows. I got bit by this recently. For example; an application is a link from a portal. This portal opens a new window (i.e. target=_blank) that launches your wicket or servlet app. A new session is created upon first log in. The user

AuthorizedWebApplication, Session

2009-06-09 Thread Ames, Tim
I am using the AuthorizedWebApplication and session. I have used this with success in the past, but now I need to get at the page parameters in my SignIn WebPage. The constructor: public SP_SignInPage(PageParameters parms) the parms are all null in the HashMap that shows up in Debug.

RE: AuthorizedWebApplication, Session

2009-06-09 Thread Ames, Tim
= (SP_WebSession) getSession(); PageParameters parms = session.getInitialPageParameters(); . I think there is another way to get those original page parameters within the Sign-In page, but not sure how. -Original Message- From: Ames, Tim [mailto:tim.a...@promedica.org] Sent

RE: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Ames, Tim
Please excuse my EXTREME ignorance, but what exactly does or will the FX mean from a Wicket standpoint? What does it do or allow a developer to do that would designate it as FX? -Original Message- From: David Leangen [mailto:wic...@leangen.net] Sent: Wednesday, April 01, 2009 4:08 AM

RE: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Ames, Tim
to Apache WicketFX Failed eXtremely On Wed, Apr 1, 2009 at 15:08, Ames, Tim tim.a...@promedica.org wrote: Please excuse my EXTREME ignorance, but what exactly does or will the FX mean from a Wicket standpoint? What does it do or allow a developer to do that would designate it as FX

RE: DataView vs ListView

2009-01-07 Thread Ames, Tim
My humble opinion is that you have to pay the price somewhere. Either you are going to load all that data into memory in a List or get it from the database for each page. I use JPersist to map the database to objects. I have found it to be quite fast. Connection pooling helps too. If you

RE: DataView vs ListView

2009-01-07 Thread Ames, Tim
to the page you want: sql = Select ... whatever ..; sql += limit + query.getFrom() + ,+query.getCount(); Oracle and other variants have similar options - I agree conn pool probably makes most difference. -- Jim On Wed, Jan 7, 2009 at 9:52 AM, Ames, Tim tim.a...@promedica.org wrote: My

RE: DownloadLink, BIRT report

2009-01-05 Thread Ames, Tim
You should not need to copy anything to the eclipse\plugins since you downloaded Eclipse with Birt support. You will need to add the birt runtime jars into your eclipse project. They can be found in runtime download folder\ReportEngine\lib There are a couple ways to do this in eclipse: 1.

RE: have anyone tried empire-DB?

2008-10-16 Thread Ames, Tim
Looks like it has a lot in common with JPersist. That is what I have been using. No XML, all POJO. -Original Message- From: Nino Saturnino Martinez Vazquez Wael [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2008 11:28 AM To: users@wicket.apache.org Subject: have anyone tried

AuthenticatedWebApplication Problem

2008-07-28 Thread Ames, Tim
Using wicket 1.3.4 - production/stable version I am testing AuthenticatedWebApplication and AuthenticatedWebSession set up similar to the wicket-examples. I have the @AuthorizationInstantiation annotation set up on the home page. I start up a session using the address:

RE: AuthenticatedWebApplication Problem

2008-07-28 Thread Ames, Tim
Additionally, if I then type the address http://localhost:8080/MyApp/ the home page shows like it should -Original Message- From: Ames, Tim [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2008 11:24 AM To: users@wicket.apache.org Subject: AuthenticatedWebApplication Problem Using

RE: Wicket cheat sheet, solve your wicket problem fast?

2008-06-02 Thread Ames, Tim
Sorry, I don't understand how to access the pdf from this link -Original Message- From: Nino Saturnino Martinez Vazquez Wael [mailto:[EMAIL PROTECTED] Sent: Monday, June 02, 2008 4:34 AM To: users@wicket.apache.org Subject: Wicket cheat sheet, solve your wicket problem fast? Hi

RE: Wicket cheat sheet, solve your wicket problem fast?

2008-06-02 Thread Ames, Tim
Duh, sorry to have bothered y'all :) -Original Message- From: Gwyn Evans [mailto:[EMAIL PROTECTED] Sent: Monday, June 02, 2008 9:25 AM To: users@wicket.apache.org Subject: Re: Wicket cheat sheet, solve your wicket problem fast? On Mon, Jun 2, 2008 at 1:59 PM, Ames, Tim [EMAIL PROTECTED