setResponsePage in AjaxSubmitLink causing AjaxError

2013-04-16 Thread Jeremy Levy
console also includes the full HTML of the destination page. Any idea whats going on here? -- Jeremy Levy

Re: setResponsePage in AjaxSubmitLink causing AjaxError

2013-04-16 Thread Jeremy Levy
I figured it out- further up in the code I was calling: new PageReference(new PageProvider(MyPage.class).getInstance().getPageId()) which was causing the problem. Jeremy On Tue, Apr 16, 2013 at 5:30 PM, Jeremy Levy jel...@gmail.com wrote: I'm using Wicket 6.6.0, in an AjaxSubmitLink when I

Re: HttpsMapper broken with Mounted pages

2013-01-15 Thread Jeremy Levy
, 2013 at 3:18 AM, Jeremy Levy jel...@gmail.com wrote: I believe I may have stumbled upon somewhat serious issue with 6.4.0 (and possibly earlier). A page that is annotated with @RequiresHttps and is mounted with any encoding method, when requested directly, or linked to is not switched

Re: HttpsMapper broken with Mounted pages

2013-01-15 Thread Jeremy Levy
On Tue, Jan 15, 2013 at 10:24 AM, Jeremy Levy jel...@gmail.com wrote: Thanks- Done. https://issues.apache.org/jira/browse/WICKET-4979 On Tue, Jan 15, 2013 at 3:05 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, Please create a ticket and attach your quickstart. It will be good to fix

HttpsMapper broken with Mounted pages

2013-01-14 Thread Jeremy Levy
thought this was serious enough to bring up here right away. Jeremy -- Jeremy Levy

Terracotta Sessions and Wicket

2011-09-06 Thread Jeremy Levy
this sound like a good idea? Thanks. Jeremy -- Jeremy Levy

Re: Terracotta Sessions and Wicket

2011-09-06 Thread Jeremy Levy
Actually, after thinking about this some more, it has nothing to do with the jvmRoute on the session per se, it's because the node from which the session originated never has the unbind/method called for that session. On Tue, Sep 6, 2011 at 7:44 PM, Jeremy Levy jel...@gmail.com wrote: We've

Re: Configure http and https with apache and jboss

2011-07-01 Thread Jeremy Levy
from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy

Re: POST path via Ajax erratically invalid when used with #

2011-05-02 Thread Jeremy Levy
() and wicketAjaxPost() in wicket-ajax.js On Fri, Apr 29, 2011 at 12:59 AM, Jeremy Levy jel...@gmail.com wrote: I've noticed that in 1.4.17 in some circumstances when using Wicket to POST data over AJAX the path it's POSTing to tries to include the value after # in the URL. For example on a page

Re: POST path via Ajax erratically invalid when used with #

2011-05-02 Thread Jeremy Levy
org.apache.wicket.ajax.AjaxEventBehavior.generateCallbackScript(CharSequence) I gave you the names of the JavaScript functions which trigger the form submit. Use Chrome Developer Tools to debug the JavaScript and see where the url gets broken. On Mon, May 2, 2011 at 2:26 PM, Jeremy Levy jel...@gmail.com wrote: It happens

Re: AjaxButton and HTML5 fields

2011-04-28 Thread Jeremy Levy
. There is a Behavior which did exactly this before the improvements in Wicket 1.5. On Wed, Apr 27, 2011 at 1:50 AM, Jeremy Levy jel...@gmail.com wrote: I've extended TextField to support some of the HTML5 variants, number, email etc. This works great when submitting via normal methods. However

POST path via Ajax erratically invalid when used with #

2011-04-28 Thread Jeremy Levy
trouble using the debugger to nail down where in the JS this is happening, can someone help point me to the function? Jeremy -- Jeremy Levy

AjaxButton and HTML5 fields

2011-04-26 Thread Jeremy Levy
I've extended TextField to support some of the HTML5 variants, number, email etc. This works great when submitting via normal methods. However it doesn't work when using AjaxButton, the form data for the HTML5 fields is never POSTed. The root issue appears to be in wicket-ajax.js specifically

DiskPageStore with Terracotta

2010-09-07 Thread Jeremy Levy
When using Terracotta WebSessions 3.3.0 with Wicket 1.4.9 on JBoss 4.2 / Tomcat6 the DiskPageStore grows infinitely. After a few days our jboss/server/myserver/work/jboss.web/localhost/[context]/[filtername]-filestore is filled with gigabytes of data. The terracotta folks say that they aren't

Re: How to set the http response code for an error page

2009-09-06 Thread Jeremy Levy
://cwiki.apache.org/WICKET/error-pages-and-feedback-messages.html Stillthe page returns http 200. How do I set it to a specific error code? Thanks, Arie -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Re: Mysterious NullPointerException

2009-07-13 Thread Jeremy Levy
or something on it? Its weird that the exception it self just wont generate a stack.. On 01/07/2009, Jeremy Levy jel...@gmail.com wrote: Okay, I was able to get a thread dump for when this mysterious exception happens, see my prior message for the code the code that I am using to print

Re: Mysterious NullPointerException

2009-07-13 Thread Jeremy Levy
Hmm, looking at that again, it looks just like the dump... On Mon, Jul 13, 2009 at 8:55 AM, Jeremy Levy jel...@gmail.com wrote: Take a look at this one: 2009-07-12 11:03:11,865 ERROR Web [RequestCycle] : java.lang.NullPointerException 2009-07-12 11:03:11,879 ERROR Web [MMRequestCycle

Re: Mysterious NullPointerException

2009-07-01 Thread Jeremy Levy
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Re: Mysterious NullPointerException

2009-07-01 Thread Jeremy Levy
] :at java.lang.Thread.run(Thread.java:619) On Wed, Jul 1, 2009 at 12:41 PM, Jeremy Levy jel...@gmail.com wrote: I'm trying this, what do you think? if (e == null) { log.error(The exception was null, dumping Stack); Thread.dumpStack

Re: Mysterious NullPointerException

2009-06-29 Thread Jeremy Levy
generates way to much volume. Any suggestions? Jeremy On Fri, Jun 19, 2009 at 2:20 PM, Jeremy Levy jel...@gmail.com wrote: I'll override the method and let you know the results. Jeremy On Fri, Jun 19, 2009 at 11:35 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: right, so where

Re: Apache Logs, Session IDs, and PageExpiredException

2009-06-19 Thread Jeremy Levy
but if session cookie works it wont append it to the url, or you really have to tell tomcat that it has to do that everytime. On 17/06/2009, Jeremy Levy jel...@gmail.com wrote: We see a very similar issue: Between one request to another that happen within a matter of seconds / minutes the sessionid

Re: Mysterious NullPointerException

2009-06-19 Thread Jeremy Levy
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Re: Mysterious NullPointerException

2009-06-19 Thread Jeremy Levy
realize this isn't much to go on, any ideas? j - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy

Mysterious NullPointerException

2009-06-18 Thread Jeremy Levy
I see the following a few times a day, this is with Wicket 1.3.6. It results in a 500 being displayed to the user... 2009-06-18 00:53:09,485 ERROR Web [RequestCycle] : java.lang.NullPointerException I realize this isn't much to go on, any ideas? j

Re: Mysterious NullPointerException

2009-06-18 Thread Jeremy Levy
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Re: Apache Logs, Session IDs, and PageExpiredException

2009-06-17 Thread Jeremy Levy
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Re: Wicketeer Available for Hire...

2009-06-01 Thread Jeremy Levy
rude or anything. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Re: PageExpiredException

2009-03-09 Thread Jeremy Levy
) at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:895) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689) at java.lang.Thread.run(Thread.java:619) -- Jeremy Levy See my location in real-time: http

Re: Some SignInPanel Questions

2009-02-25 Thread Jeremy Levy
Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location

Re: How exactly does RestartResponseAtInterceptPageException work?

2009-02-23 Thread Jeremy Levy
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Re: What IDE best fits with Wicket?

2009-02-23 Thread Jeremy Levy
are: free and the set of plug-ins free too. Thanks, Eduardo S. Nunes - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my

Re: Stackoverflow running Wicket application on JBOSS cluster

2009-02-18 Thread Jeremy Levy
For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy -- View this message in context: http://www.nabble.com/Stackoverflow-running-Wicket-application-on-JBOSS-cluster-tp22052904p22075044.html

Re: Stackoverflow running Wicket application on JBOSS cluster

2009-02-17 Thread Jeremy Levy
-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Re: How exactly does RestartResponseAtInterceptPageException work?

2009-02-17 Thread Jeremy Levy
...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy

Problem with WebRequestCodingStrategy's and mobile phones

2009-02-09 Thread Jeremy Levy
that it breaks all form submits. This is a some what obsecure case, and perhaps irrelvant if you don't run a mobile site, but we saw our number's drop by about 20% - 50% until we figured this out. Hope this helps someone else. Jeremy -- Jeremy Levy See my location in real-time: http

Re: [OT] wicket users around the world

2008-12-15 Thread Jeremy Levy
. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy Right now we are paying a $2,500

Clustering Problems / java.lang.StackOverflowError

2008-12-08 Thread Jeremy Levy
We have recently moved our application over to using clustering, we are running JBoss 4.2.3 with Tomcat 6 bundled using two nodes. After a few seconds with both nodes active and receiving traffic we start to see StackOverFlow exceptions. They don't originate from within our code and I'm a bit at

Re: Clustering Problems / java.lang.StackOverflowError

2008-12-08 Thread Jeremy Levy
? org.apache.wicket.util.io.IObjectStreamFactory$1.resolveClass(IObjectStreamFactory.java:70) Thanks, Bruno -Original Message- From: Jeremy Levy [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2008 4:02 PM To: users@wicket.apache.org Subject: Clustering Problems

Re: job postings

2008-09-22 Thread Jeremy Levy
] For additional commands, e-mail: [EMAIL PROTECTED] -- Jeremy Levy See my location in real-time: http://seemywhere.com/jeremy Right now we are paying a $2,500 referral fee for any full-time hire we make and keep for 90 days. We're looking for Java Developers and Marketers with Internet marketing

Re: component x not found on page y

2008-08-05 Thread Jeremy Levy
URLs. I've read that using HybridUrlEncoding (?) could resolve that problem, but the problem hasn't been wide-spread enough to justify the risk. Hope this helps, Alex On Aug 4, 2008, at 2:25 PM, Jeremy Levy wrote: We have been struggling with an issue for several months now, any help

component x not found on page y

2008-08-04 Thread Jeremy Levy
We have been struggling with an issue for several months now, any help would be appreciated. In our logs I see variations of the same error on the following error which results in a 500 for the user: 2008-08-04 13:21:24,006 ERROR Wap [RequestCycle] : component updateSection:theForm not found on

Re: No effect of code until restarting netbeans.

2008-07-01 Thread Jeremy Levy
Use Undeploy and Deploy on your EAR or WAR... On Tue, Jul 1, 2008 at 3:58 AM, Sushant [EMAIL PROTECTED] wrote: I am a newuser using wicket. I have been facing this problem since a week. I'm in serious trouble. Whenever i make any changes in my code in netbeans the changes i have made

Re: JS/CSS references different in Jetty versus Tomcat

2008-05-02 Thread Jeremy Levy
Scott, It sounds like this: https://issues.apache.org/jira/browse/WICKET-1205 Jeremy On Fri, May 2, 2008 at 9:37 AM, Scott Sauyet [EMAIL PROTECTED] wrote: I'm having a problem with different behavior when my Wicket application runs on Jetty versus on Tomcat, and I'm wondering if anyone has

Re: FileResourceStream

2008-05-02 Thread Jeremy Levy
implements IMarkupCacheKeyProvider . . public String getCacheKey(MarkupContainer arg0, Class arg1) { return null; } Jeremy On Tue, Apr 29, 2008 at 3:01 PM, Johan Compagner [EMAIL PROTECTED] wrote: So through a Wicket Page impl you serve static pages? The wicket page self doesnt

Re: How to pass an arbitrary javascript variable to onSubmit?

2008-04-11 Thread Jeremy Levy
Check out IAjaxCallDecorator getAjaxCallDecorator(). Jeremy On Fri, Apr 11, 2008 at 4:42 AM, Vitaly Tsaplin [EMAIL PROTECTED] wrote: I am doing it exactly like this. I am wondering if there is a formless way to do this? Probably I can mount a page and then just add some parameters to this

Re: FileUploadField and Image

2008-04-10 Thread Jeremy Levy
Use javascript to submit the form. On Thu, Apr 10, 2008 at 4:38 AM, Fabien D. [EMAIL PROTECTED] wrote: Hi, I would like to do a special behavior. I have a input for FileUploadField, when the user choices an image in his local disk, this file is automatically uploaded (in a temp folder of

Re: System requirements for running wicket app in production

2008-04-10 Thread Jeremy Levy
All of our hardware is virtualized. It's allowed us to scale very quickly and easily. As for specific requirements it really depends on the volume you expect. If your going to run Apache, Tomcat, and your DB on the same machine I'd try to have at least 512mb on a low volume site. You may want

Re: how to get the war name wicket application is running from?

2008-04-07 Thread Jeremy Levy
If by the application and set the appropriate style of the application. you mean the look and feel there are better ways to do this then deploying your application multiple times. Use locales which will let you have multiple style sheets and/or HTML / resources which vary depending the locale

Re: Render body only

2008-04-03 Thread Jeremy Levy
Did you try setRenderBodyOnly(true) ? On Thu, Apr 3, 2008 at 10:28 AM, Scott Sauyet [EMAIL PROTECTED] wrote: Hi, I'm looking to do exactly what was discussed in a thread a few years ago (http://tinyurl.com/3yo43s), namely to dynamically include or exclude a group of TR tags. I can wrap them

Re: Removing the jsessionid for SEO

2008-04-03 Thread Jeremy Levy
We have a similar issue, and are trying the following out right now.. http://www.google.com/support/webmasters/bin/answer.py?hl=enanswer=40367 User-agent: * Disallow: /*? On Thu, Apr 3, 2008 at 9:09 PM, Dan Kaplan [EMAIL PROTECTED] wrote: Ok, at least I'm not missing anything. I

Re: Removing the jsessionid for SEO

2008-04-03 Thread Jeremy Levy
To clarify my message below: With a CryptedUrlWebRequestCodingStrategy and alot of BookmarkablePages. On Thu, Apr 3, 2008 at 9:16 PM, Jeremy Levy [EMAIL PROTECTED] wrote: We have a similar issue, and are trying the following out right now.. http://www.google.com/support/webmasters/bin

RequestCycle exception explanation

2008-04-01 Thread Jeremy Levy
I've started seeing exceptions like the onces below more frequently can someone explain what is actually going on? We've been making a lot of changes, but I can't say exactly what may have set this off... 2008-04-01 16:07:12,514 ERROR Wap [RequestCycle] : component myLink not found on page

Re: RequestCycle exception explanation

2008-04-01 Thread Jeremy Levy
. it is possible that this happens on stateless pages or the ones where versioning has been explicitly turned off. -igor Regards, Al On Tue, Apr 1, 2008 at 9:44 PM, Jeremy Levy [EMAIL PROTECTED] wrote: On this site we aren't using any Ajax components. :( J

Re: RequestCycle exception explanation

2008-04-01 Thread Jeremy Levy
to ILinkListener urls? -igor On Tue, Apr 1, 2008 at 4:15 PM, Jeremy Levy [EMAIL PROTECTED] wrote: I've tried to reproduce this for the last several hours with no luck. It reports that it's happening for many different components from many different pages, nor is there any discernible pattern

Re: RequestCycle exception explanation

2008-04-01 Thread Jeremy Levy
) at org.apache.tomcat.util.net.AprEndpoint$Worker.run( AprEndpoint.java:1513) at java.lang.Thread.run(Thread.java:619) thanks. On Tue, Apr 1, 2008 at 8:25 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: can you paste a full stack trace please -igor On Tue, Apr 1, 2008 at 5:21 PM, Jeremy Levy [EMAIL PROTECTED] wrote

Re: Does Wicket support WML?

2008-03-30 Thread Jeremy Levy
I don't see why it couldn't, WML is XML based so you could create your own components. You should check out the page on the Wiki for wicket and mobile devices. Do you have a strict requirement that it needs to be WML or just for mobile devices? http://cwiki.apache.org/WICKET/mobile-devices.html

Re: Redirect after post Issue

2008-03-24 Thread Jeremy Levy
I got it working. Basically the ProxyPassReverse directive should use HTTP not AJP. This article helped: http://lenya.apache.org/docs/2_0_x/tutorials/mod_proxy_ajp.html Jeremy On Fri, Mar 21, 2008 at 10:35 AM, James Carman [EMAIL PROTECTED] wrote: On 3/21/08, Jeremy Levy [EMAIL PROTECTED

Re: Redirect after post Issue

2008-03-21 Thread Jeremy Levy
generated absolute URL's (for example in emails) will be wrong. Regards, Sebastiaan Sebastiaan van Erk wrote: Hi, Jeremy Levy wrote: I have been having trouble with this for a couple of months, it seems that redirects in Wicket 1.3.x seem to be writing out the URL incorrectly

Redirect after post Issue

2008-03-20 Thread Jeremy Levy
I have been having trouble with this for a couple of months, it seems that redirects in Wicket 1.3.x seem to be writing out the URL incorrectly in our set up. We are running JBoss 4.2 with embedded Tomcat 5.5 using Apache/2.2.4 with mod_proxy. The Tomcat URL for the application is

Re: Redirect after post Issue

2008-03-20 Thread Jeremy Levy
Slight correction: With IRequestCycleSettings.ONE_PASS_RENDER most form submits seem to work except in the case of continueToOriginalDestination... Everything else still fails. J On Thu, Mar 20, 2008 at 6:09 PM, Jeremy Levy [EMAIL PROTECTED] wrote: I have been having trouble

Re: Redirect after post Issue

2008-03-20 Thread Jeremy Levy
No problem, I know other people are doing this, I can't seem to see where the issue is... Which is why I think something is wrong either in Tomcat or Wicket. J On Thu, Mar 20, 2008 at 8:36 PM, brian.diekelman [EMAIL PROTECTED] wrote: ...and after reading your post a little closer, I flipped

Re: Wicket 1.3.2 - java.lang.NullPointerException

2008-03-18 Thread Jeremy Levy
We are having the same issue, it's happening on pages where we are defining the markup at run time, by implementing IMarkupResourceStreamProvider and IMarkupCacheKeyProvider. I'll create a sample project to demonstrate.. Jeremy On Tue, Mar 18, 2008 at 9:36 AM, Johnnie [EMAIL PROTECTED] wrote:

Re: Wicket 1.3.2 - java.lang.NullPointerException

2008-03-18 Thread Jeremy Levy
trying for a bit more... Jeremy On Tue, Mar 18, 2008 at 9:55 AM, Jeremy Levy [EMAIL PROTECTED] wrote: We are having the same issue, it's happening on pages where we are defining the markup at run time, by implementing IMarkupResourceStreamProvider and IMarkupCacheKeyProvider. I'll create

Re: After 1 minute the Pagemap null is still locked

2008-03-18 Thread Jeremy Levy
the message tell you who it is locked by? which page or otherwise? if not that is possibly something we can improve also... -igor On Tue, Mar 18, 2008 at 1:06 PM, Jeremy Levy [EMAIL PROTECTED] wrote: I am seeing the After 1 minute the Pagemap null is still locked error in production

Re: [vote] Release 1.4 with only generics and stop support for 1.3

2008-03-17 Thread Jeremy Levy
+1 On Mon, Mar 17, 2008 at 1:15 PM, djo.mos [EMAIL PROTECTED] wrote: [ ] +1, Wicket 1.4 is 1.3 + generics, drop support for 1.3 -- View this message in context: http://www.nabble.com/-vote--Release-1.4-with-only-generics-and-stop-support-for-1.3-tp16090054p16097038.html Sent from the

Re: Link to last accessed page

2008-02-13 Thread Jeremy Levy
You could just pass the current page to the new page via the constructor. On Feb 13, 2008 2:06 PM, Warren [EMAIL PROTECTED] wrote: How do I create a link on a page that will go to the last accessed page no matter what that page is? I see that WebPage has a method homePageLink. Is there

Re: Challenge: write something really sleek for Facebook?

2008-02-04 Thread Jeremy Levy
We have been thinking about this a little bit as well... It broke down into two parts: Making FaceBook Wicket components that represent and render the corresponding FBML. Integrating the wicket session with facebooks session. It seemed like to us that the calls from facebook across multiple

Re: DropDownChoice with -1 value

2008-01-02 Thread Jeremy Levy
If you create a properties file for the page class and use dot notation matching your page hierarchy but leave the last value as null you can set the default value: For example: theForm.birthdayMonth.null=M theForm.birthdayYear.null=Y theForm.birthdayDay.null=D See if that helps.. J On Jan

Re: Create button to open popup Window.

2007-12-11 Thread Jeremy Levy
You may want to check out PopupSettings as well. http://wicketstuff.org/wicket13doc/org/apache/wicket/markup/html/link/PopupSettings.html Jeremy On Dec 10, 2007 5:33 PM, Christian Alejandro Marquez Grabia [EMAIL PROTECTED] wrote: Hi Maybe you should look at this example using Modal Windows

Re: Overlay panel on ajax call

2007-12-11 Thread Jeremy Levy
I would assume this can be done entirely using CSS.. Try something like: div#greyBackground {position:absolute;z-index:2;top:0;left:0;width:100%;height:100%;background:rgb(230,230,230);opacity:.75;filter:alpha(opacity=75);text-decoration:none;} and use the wicket simpleattributemodifier to

Re: Wicket behind a front-end proxy

2007-12-10 Thread Jeremy Levy
I am pretty sure my configuration is correct as per the documentation however I am having the following problem: My configuration is as follows: Apache 2.2 (mod_proxy_jk) -- Tomcat 5.5(JBoss embedded) My Wicket application filter is mapped to /* and my WAR file is deployed within a context of

Re: Wicket 1.3 rc1 Relative URLs not working properly

2007-12-03 Thread Jeremy Levy
/ is your servlyet path? what happens if you put ../css/style.css in your markup? Because from the normal page that is the css you want i guess? johan On Dec 2, 2007 11:08 PM, Jeremy Levy [EMAIL PROTECTED] wrote: I just upgraded to Wicket 1.3, it was remarkably smooth. It took about 6

Re: How to secure passwords?

2007-12-03 Thread Jeremy Levy
Pills, I don't really thing this has anything to do w/ Wicket... Do a Google search for java password hash. A quick search found this: http://www.devarticles.com/c/a/Java/Password-Encryption-Rationale-and-Java-Example/ J On Dec 3, 2007 9:40 AM, Pills [EMAIL PROTECTED] wrote: Hello, I've

Re: How to secure passwords?

2007-12-03 Thread Jeremy Levy
You are correct, I'm assuming his admin has knowledge of the salt, if there even was one... On Dec 3, 2007 1:33 PM, Sebastiaan van Erk [EMAIL PROTECTED] wrote: Jeremy Levy wrote: Don't use MD5: http://md5.rednoize.com/ 328b78157026ea76f87d3f2d7111dfb1 j I REALLY don't get your

Re: Wicket 1.3 rc1 Relative URLs not working properly

2007-12-03 Thread Jeremy Levy
for this johan On Dec 3, 2007 4:08 PM, Jeremy Levy [EMAIL PROTECTED] wrote: The /1 is the web app context. Change it to ../ breaks it on the pages that were working before. One thing I noticed is that if I deploy this to a server which has mod_proxy set up to hide the /1

Re: Wicket 1.3 rc1 Relative URLs not working properly

2007-12-03 Thread Jeremy Levy
WICKET-1205 On Dec 3, 2007 5:16 PM, Jeremy Levy [EMAIL PROTECTED] wrote: Sorry for now explaining this properly. My application is deployed within a context of /1. The Wicket filter is mapped to /* of the app context. The first page of the site has url of http://www.somehost.com/1

Wicket 1.3 rc1 Relative URLs not working properly

2007-12-02 Thread Jeremy Levy
I just upgraded to Wicket 1.3, it was remarkably smooth. It took about 6 hours overall. Every single thing was explained very well in the migration guide and the things i was looking forward to in 1.3 are working perfectly. The only issue I am having is if I have a page this is not mounted as a

InlineFrame and Ajax Timer failing

2007-11-27 Thread Jeremy Levy
I've created a Ajax Timer similar to the one on the example page, it works well, and I use it several places on my site. However when it's added to the same page as a InlineFrame/Iframe the Ajax callback fails with the following error: *INFO: * *INFO: * Initiating Ajax GET request on

Re: InlineFrame and Ajax Timer failing

2007-11-27 Thread Jeremy Levy
I fixed it. I was creating the InlineFrame by passing in a Page to the constructor, I switched it to MyPage.class and it worked... Not quite sure why though.. j On Nov 27, 2007 10:29 AM, Jeremy Levy [EMAIL PROTECTED] wrote: I've created a Ajax Timer similar to the one on the example page

possible bug in 1.2.6 / 1.3 Include

2007-10-16 Thread Jeremy Levy
I found this while working on 1.2.6 and checked it out in 1.3 and it's the same. It appears as though Include does not pay attention to the contextpath if it is explicitly set. Line 162 (In 1.2.6) or line 233 (in 1.3b4) of Include is the following line which as I understands it builds a absolute

Using mod_proxy / mod_rewrite to hang app off root

2007-10-16 Thread Jeremy Levy
I've having trouble getting my application behind apache hanging off the root, my application servers url are as follows: http://localhost:8080/context/servlet/bookmarkpage I'd like the URL to be: http://localhost/bookmarkpage I've set up Apache 2.2 in from of it. I can get Apache2 working so

Custom Content

2007-10-13 Thread Jeremy Levy
I'm attempting to load the markup for a page based on values that are available when the page is constructed. For example, I want to be able to pass a parameter into a page and then lookup the name of the content file in my database based on this parameter and then have the page load and display

Re: Custom Content

2007-10-13 Thread Jeremy Levy
would seem to make the most sense isn't going to work in this case.. j On 10/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: stick a content into a label and call label.setescapemodelstrings(false) -igor On 10/13/07, Jeremy Levy [EMAIL PROTECTED] wrote: I'm attempting to load the markup

Re: Custom Content

2007-10-13 Thread Jeremy Levy
and IMarkupCacheKeyProvider. make that page implement both and suck the markup in from the db. -igor On 10/13/07, Jeremy Levy [EMAIL PROTECTED] wrote: Will that work if the content includes a form? I would like to be able to have a page which includes a form but have a couple of different versions

Re: Custom Content

2007-10-13 Thread Jeremy Levy
it? j On 10/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 10/13/07, Jeremy Levy [EMAIL PROTECTED] wrote: newMarkupResourceStream is only called on the first time the page loads when it's compiled with the HTML i suppose. Is there any way to prevent that for one class / page

Re: Custom Content

2007-10-13 Thread Jeremy Levy
Okay, I think i figured it out. Using AbstractResourceStream which gets content based on the ids. Thank you. On 10/13/07, Jeremy Levy [EMAIL PROTECTED] wrote: Thanks. I see, so if I were to return a random value with getVariation, that would effectively defeat reusing the complied version

Re: out of memory - wicket 1.2.6

2007-10-08 Thread Jeremy Levy
Are you redeploying often with out restarting? Jeremy On 10/8/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: At my former job, we had a memory leak not in our own application but a dependancy though.. Thats where jmeter and jprobe came into scope. It took me 12 hours of