Re: wicket url encoding: ClassCastException using SunJceCrypt

2011-11-21 Thread lesterburlap
Igor Vaynberg-2 wrote > > jsessionid is managed by the servlet container. we cant encrypt it > because its not part of the page path or query string, its in its own > weird ;jsessionid thing that containers mangle in there. maybe your > container has an option to encrypt it, or maybe you can writ

Re: wicket url encoding: ClassCastException using SunJceCrypt

2011-11-21 Thread lesterburlap
lesterburlap wrote > > Caused by: java.lang.ClassCastException: > com.sun.crypto.provider.PBEKeyFactory$PBEWithMD5AndDES cannot be cast to > javax.crypto.SecretKeyFactorySpi > at javax.crypto.SecretKeyFactory.getInstance(Unknown Sou

wicket url encoding: ClassCastException using SunJceCrypt

2011-11-20 Thread lesterburlap
Hello: I've followed the straightforward instructions for implementing URL encoding that are available here: https://cwiki.apache.org/WICKET/url-coding-strategies.html When my page renders, I get the following ClassCastException. I haven't been able to find others having this particular problem.

Re: TextField in inmethod grid column header - Firefox issue

2009-01-05 Thread lesterburlap
Matej Knopp-2 wrote: > > Well, you can try catching the event in textfields' onMouseDown and > then either set e.ignore=true on it or make it stop propagate. > Brilliant, thanks Matej. It works now. For posterity, this is the necessary change: HTML: JS (using Ext to double-check browser t

Re: TextField in inmethod grid column header - Firefox issue

2008-12-19 Thread lesterburlap
Matej Knopp-2 wrote: > > it doesn't seem likely for me that the prelight would cause this. But > it also isn't impossible. These things are quite difficult to predict > and sometimes also to solve unfortunately. > > -Matej > Could it possibly be the InMethod.Drag.onMouseDown method in script.

TextField in inmethod grid column header - Firefox issue

2008-12-17 Thread lesterburlap
Hi! I'm using the inmethod grid 1.0.0-SNAPSHOT (1.3 branch) with Wicket 1.3.5. I added a TextField to my custom column header (an AbstractLightWeightColumn extension). The purpose of the TextField is to provide a way to filter the row contents of the column. It works fine in Internet Explorer

WSRP Service Description Interface

2008-10-13 Thread lesterburlap
Hi: I've been working with Wicket and Liferay. My end (possibly dream) goal is to expose a Wicket Panel in a WSRP Consumer Proxy Portlet. Can I assume that there is no support yet in Wicket (or wicket extensions, etc) for the required WSRP interfaces "Service Description Interface" and "Mar

Re: Inmethod Grid with wicket 1.3

2008-10-02 Thread lesterburlap
Damn it, for some reason nabble 2 didn't show all the other responses to Jim's question. Sorry to answer it needlessly. LBB -- View this message in context: http://www.nabble.com/Inmethod-Grid-with-wicket-1.3-tp19731013p19780036.html Sent from the Wicket - User mailing list archive at Nabble.c

Re: Inmethod Grid with wicket 1.3

2008-10-02 Thread lesterburlap
Jim Pinkham wrote: > > I'm getting this error at runtime I don't understand: > > NoSuchMethodError: org.apache.wicket.MetaDataKey: method ()V not > found > at > com.inmethod.grid.common.AbstractGrid$4.(AbstractGrid.java:908) > at > com.inmethod.grid.common.AbstractGrid.(AbstractGrid.jav

Re: wicket 1.4 release

2008-10-02 Thread lesterburlap
> re: 1.4m4 Do milestone releases come before beta releases? (or do you just go straight to final from milestone?) LBB -- View this message in context: http://www.nabble.com/wicket-1.4-release-tp19772502p19779596.html Sent from the Wicket - User mailing list archive at Nabble.com. ---

wicket 1.4 release

2008-10-01 Thread lesterburlap
Hi: I've searched everywhere and can't find an answer. I know this is kind of a crappy question to ask the developers... Is there an estimate for a Wicket 1.4 GA release? Will it possibly be by January 2009? I need to make a decision about whether or not to upgrade to 1.4-m3 from 1.3. whi

Re: Google Chrome & Wicke

2008-09-04 Thread lesterburlap
This is the related section of wicket-ajax.js (~line 985 in 1.3.4) right before that error message is logged. I can't find much of anything on the Internet about Chrome or WebKit supporting DOMParser, so that may be it...? // parse the response if the callback nee

Re: Google Chrome & Wicket

2008-09-03 Thread lesterburlap
I'm getting the same "Received ajax response (0 characters)" / "Error while parsing response: Could not find root element" message in the ajax debug window. We're using 1.3.4. Our application is totally inoperable in Chrome. I'm not worrying too much, though, since Chrome is still beta, but a

Adding ClassStringResourceLoader(s)

2008-08-19 Thread lesterburlap
Hi! I've been having a blast sorting out my String resources the last couple of days. Thanks for everyone's help. I am using Wicket in an OSGI environment with modular "Blades" (these are not Wicket Components). In addition to the root MyApplication.properties, I need to have a independent and

Re: ResourceModel vs. getLocalizer

2008-08-19 Thread lesterburlap
> you can however safely construct a ResourceModel > (but not call getObject on it). So, doing ResourceModel("key").getObject().getString() is really kind of silly and defeats the whole purpose of the ResourceModel? LBB -- View this message in context: http://www.nabble.com/ResourceModel-vs.-

ResourceModel vs. getLocalizer

2008-08-18 Thread lesterburlap
Hi! Which is generally the preferred / least expensive way to get a resource string? new ResourceModel("my.resource.key").getObject().toString(); or getLocalizer().getString("my.resource.key", MyComponent.this); I've been using getLocalizer almost everywhere, and only using ResourceModel when I

properties files search efficiency

2008-08-06 Thread lesterburlap
Hi: I understand how Wicket searches for property keys: MyPage.properties -> MyComponentA.properties -> MyComponentB.properties -> MyApplication.properties, etc, etc... Is there any run time efficiency benefit in putting a property from MyComponentB in the MyPage.properties file (rather than