Re: [Wicket-user] Wicket under JBoss: ClassLoader not found?

2007-06-13 Thread Jeremy Levy
Bill it looks like your application isn't really there in your EAR/WAR etc.. Open it up and make sure it's got all the correct files in WEB-INF/lib WEB-INF/classes Jeremy On 6/12/07, William J. Laubenheimer [EMAIL PROTECTED] wrote: I'm using NetBeans 5.5 and Wicket 1.2.5 for a web

[Wicket-user] AjaxLink not updating Image

2007-06-13 Thread Jeremy Levy
I have an AjaxLink link that I am trying to use to update an image, in the onClick method I am replacing the Model of the image to the new path, however it's not working. I've tried it with Image and NonCachingImage, and also turned off Caching in FireFox. I'm not sure but the XML being sent

Re: [Wicket-user] AjaxLink not updating Image

2007-06-13 Thread Jeremy Levy
image? so it seems that set model on the nci has no effect at all? On 6/13/07, Jeremy Levy [EMAIL PROTECTED] wrote: I have an AjaxLink link that I am trying to use to update an image, in the onClick method I am replacing the Model of the image to the new path, however it's not working. I've tried

[Wicket-user] AjaxSubmitLink throws ClassCastException in 1.2.6

2007-05-15 Thread Jeremy Levy
After upgrading to Wicket 1.2.6 all AjaxSubmitLinks throw the exception listed below. I have also opened the following bug: https://issues.apache.org/jira/browse/WICKET-571 12:11:38,841 ERROR [RequestCycle] ::: [Ljava.lang.String; cannot be cast to java.lang.String

Re: [Wicket-user] Unknown Exception -- Wicket 1.2.1

2006-08-09 Thread Jeremy Levy
PROTECTED] wrote: On 8/8/06, Jeremy Levy [EMAIL PROTECTED] wrote: Can someone help me debug this exception?I don't see any references to my code: I'm using 1.2.1 in Jboss/Tomcat wicket.WicketRuntimeException: Internal error parsing wicket:interface = :1 atYeah, looks like someone has been trying

[Wicket-user] Unknown Exception -- Wicket 1.2.1

2006-08-08 Thread Jeremy Levy
Can someone help me debug this exception? I don't see any references to my code:I'm using 1.2.1 in Jboss/Tomcatwicket.WicketRuntimeException: Internal error parsing wicket:interface = :1 at

Re: [Wicket-user] Wicket and Websphere

2006-06-23 Thread Jeremy Levy
Will do, so far it looks like java.util.regex is going to be a significant effort in addition to the exception handling.On 6/23/06, shumbola [EMAIL PROTECTED] wrote:Здравствуйте, Jeremy.Вы писали 23 июня 2006 г., 4:55:29: Thanks very much for the response, can you point me to an example of how

[Wicket-user] Wicket and Websphere

2006-06-22 Thread Jeremy Levy
Does anyone use wicket in websphere 5? I am tring to deploy my application and I am getting class not found for java.land.charsequence. This instance of websphere is running in JDK 1.3. Has wicket been used successfully in this version of Java? Using Tomcat but need to do more? Need to support

Re: [Wicket-user] Wicket and Websphere

2006-06-22 Thread Jeremy Levy
if one exists for 1.4 - 1.3 Especially the exception handling inside wicket is the largest deviation from 1.3 to 1.4 Martijn On 6/22/06, Jeremy Levy [EMAIL PROTECTED] wrote: Does anyone use wicket in websphere 5?I am tring to deploy my application and I am getting class not found

Re: [Wicket-user] Wicket and Websphere

2006-06-22 Thread Jeremy Levy
it manually.Is it your hosting party requiring you to use WS on JDK 1.3? Thatversion is almost EOL...EelcoOn 6/22/06, Jeremy Levy [EMAIL PROTECTED] wrote: Thanks very much for the response, can you point me to an example of how exceptions are used in wicket with 1.4 as complared to how it would work

[Wicket-user] Using a Local EJB as a Property Model?

2006-02-21 Thread Jeremy Levy
Is using a local interface for an EJB for a propertymodel possible? I think I can conceptualize this when loading a form to populate the data, however what if I want to do it to then populate the data to the local interface? Should I create a intermediately POJO? Thanks in advance, this is my