Re: [Wicket-user] Problem restarting application in Tomcat

2007-02-13 Thread Gabor Szokoli
On 2/12/07, Rüdiger Schulz [EMAIL PROTECTED] wrote:
 I had the same error with 1.2.4. I just updated to 1.2.5, and the error
 message changed to:

Hi,

Excuse me if this is not relevant, but on a trivial application with
wicket 1.2.4 the tomcat ant tasks work perfectly for me, for example:
taskdef name=reload   classname=org.apache.catalina.ant.ReloadTask/


Gabor Szokoli

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-02-12 Thread Rüdiger Schulz
Hello,

I had the same error with 1.2.4. I just updated to 1.2.5, and the error
message changed to:

WicketMessage: Markup of type 'html' for component
'de.indyphone.logokits.wicket.LogoKitOverviewPage' not found. Enable
debug messages for wicket.util.resource to get a list of all filenames
tried:
[Page class = de.indyphone.logokits.wicket.LogoKitOverviewPage, id = 11]

Root cause:

wicket.markup.MarkupNotFoundException: Markup not found. Component
class: de.indyphone.logokits.wicket.LogoKitOverviewPage Enable debug
messages for wicket.util.resource to get a list of all filenames tried
at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java:117)
at
wicket.MarkupContainer.getAssociatedMarkupStream(MarkupContainer.java:827)
at wicket.Page.onRender(Page.java:854)
at wicket.Component.render(Component.java:1526)
at wicket.Page.renderPage(Page.java:413)

So I enabled debug messages for wicket.util.resource, and it seems to
look for the standard filenames (lots of output, I don't know if its
helpful?)

Also, for pages getting some of their markup from properties files, I
get the following error after redeploy:

java.util.MissingResourceException: Unable to find resource: code for
component: registerForm:codeLabel
at wicket.Localizer.getString(Localizer.java:262)
at wicket.Localizer.getString(Localizer.java:181)
at wicket.model.ResourceModel.getObject(ResourceModel.java:69)
at wicket.Component.getModelObject(Component.java:983)
at wicket.Component.getModelObjectAsString(Component.java:998)
at
wicket.markup.html.form.SimpleFormComponentLabel.onComponentTagBody(SimpleFormComponentLabel.java:59)
at wicket.Component.renderComponent(Component.java:1712)



This always happens after running my ant script which undeploys the
webapp via manager, copies over the new warfile and then deploys via the
manager.

The context is configured to be using the war directly, so it is not
unpacked in the webapps directory.

Simply restarting tomcat solves this, but doing this with every redploy
is a little tedious :( And I just changed from Jboss to Tomcat because I
hoped I could speed up development...

Other environment: JDK1.5, Spring, Hibernate, Tomcat 5.5.20



Igor Vaynberg schrieb:
 looks like the npe was hiding the real exception, i just checked in a
 change that should fix that. update from svn wicket-1.2.x branch and
 deploy that, then look for the exception in the log and let us know what
 it is.
 
 -igor



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-02-12 Thread Igor Vaynberg

On 2/12/07, Rüdiger Schulz [EMAIL PROTECTED] wrote:


Simply restarting tomcat solves this, but doing this with every redploy
is a little tedious :( And I just changed from Jboss to Tomcat because I
hoped I could speed up development...



OT but if you want real speedy development try using embedded jetty - that
way you dont need to redeploy at all, use hotswap and when that fails
restart jetty which only takes a few secs. see StartExamples class in
wicket-examples

-igor
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-02-12 Thread Rüdiger Schulz
Igor Vaynberg schrieb:
 On 2/12/07, *Rüdiger Schulz* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
 wrote:
 
 Simply restarting tomcat solves this, but doing this with every redploy
 is a little tedious :( And I just changed from Jboss to Tomcat because I
 hoped I could speed up development...
 
 
 OT but if you want real speedy development try using embedded jetty -
 that way you dont need to redeploy at all, use hotswap and when that
 fails restart jetty which only takes a few secs. see StartExamples class
 in wicket-examples

yeah, that's probably right, and I use a quickstart to test out single
components or concepts from time to time. But I don't have much
experience with Jetty, and I use JNDI datasource and javamail session
from Tomcat, and have an Apache beforehand, which serves some static
resources as well. So I think that a move to Jetty will not be done that
fast...




greetings,

Rüdiger

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-30 Thread Johan Compagner

i dont think that null pointer is fixed for 1.2.x
at least i didn't do that check.

Maybe we should?

johan


On 1/30/07, Igor Vaynberg [EMAIL PROTECTED] wrote:


try the code from the latest 1.2.x branch

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED]  wrote:

 I tried in both modes, and it makes no difference.

 On 1/29/07, Igor Vaynberg [EMAIL PROTECTED]  wrote:
 
  did you deploy your app in development or deployment mode?
 
  -igor
 
 
  On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
  
   I saw that thread, but either I don't understand it or it doesn't
   have the solution.
  
   On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:
   
http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437
   
-igor
   
   
On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:

 If it's something outside of Wicket it has nothing to do with my
 application because there isn't any line of a class of mine in the 
stack
 trace, such stack trace is:

 java.lang.NullPointerException
 at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java
 :390)
 at wicket.markup.MarkupParser.readAndParse(MarkupParser.java
 :196)
 at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
 at
 wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
 MarkupCache.java:354)
 at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
 at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java
 :106)
 at
 wicket.MarkupContainer.getAssociatedMarkupStream(
 MarkupContainer.java:827)
 at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
 at wicket.markup.html.WebPage.init(WebPage.java:120)
 at ...

 and, as I said, happens when I restart the application in a
 Tomcat server. In my local development environment this doesn't 
happen.
 Thanks,

   Luis Pablo


 On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:
 
  Problems like that should have been fixed for a while now, so
  it may
  be something outside of Wicket. But could you give us your
  complete
  stacktrace please?
 
  Eelco
 
  On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]
  wrote:
 I have an app developed with wicket 1.2.4 running on a
  Tomcat 5.5.20.
   Whenever I upload a new jar archive with changes in
  my  classes and I
   restart the application (not the hole server) I get a
  NullPointerException
   in the XmlPullParser that has nothing to do with my
  application classes. I
   saw something in the mailing list archives talking about
  leaving the HTML
   files outside the jar file, but that doesn't seem to be the
  right solution.
 Can any of you help me with this? Thanks in advance,
  
   Luis Pablo
  
  
  
-
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the
  chance to share your
   opinions on IT  business topics through brief surveys - and
  earn cash
  
  
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  
-
 
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance
  to share your
  opinions on IT  business topics through brief surveys - and
  earn cash
  
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 



 
-
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance
 to share your
 opinions on IT  business topics through brief surveys - and
 earn cash

 
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



   
   

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to
share your
opinions on IT  business topics through brief surveys - and 

Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-30 Thread Johan Compagner

ahh you already checked in the same thing i guess :)

On 1/30/07, Igor Vaynberg [EMAIL PROTECTED] wrote:


looks like the npe was hiding the real exception, i just checked in a
change that should fix that. update from svn wicket-1.2.x branch and
deploy that, then look for the exception in the log and let us know what it
is.

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:

 I can't reproduce it either. It happens on the hosting where we have our
 client's app running. In my development environment I can't make this
 happen, so I can't trace it. But this is really annoying and delays our
 work, that's why we're trying to find its source and solution.
 So I should try the latest sources? If there is no other option to try
 maybe I'll do it.
 thanks

 Luis Pablo

 On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:
 
  i dont know. we are not sure what is causing it since it only affects
  a very small set of our users and none of the core devs can reproduce it on
  their setups. we did some work to what we think is a related issue (running
  out of open file handles) so it might help or it might not.
 
  -igor
 
 
  On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
  
   I'm using the latest release. Is this a fixed issue in the source
   files?
  
   On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED]  wrote:
   
try the code from the latest 1.2.x branch
   
-igor
   
   
On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]  wrote:

 I tried in both modes, and it makes no difference.

 On 1/29/07, Igor Vaynberg [EMAIL PROTECTED]  wrote:
 
  did you deploy your app in development or deployment mode?
 
  -igor
 
 
  On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]
  wrote:
  
   I saw that thread, but either I don't understand it or it
   doesn't have the solution.
  
   On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:
   
   
http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437
   
-igor
   
   
On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED]
wrote:

 If it's something outside of Wicket it has nothing to do
 with my application because there isn't any line of a class 
of mine in the
 stack trace, such stack trace is:

 java.lang.NullPointerException
 at wicket.markup.parser.XmlPullParser.parse(
 XmlPullParser.java:390)
 at wicket.markup.MarkupParser.readAndParse(
 MarkupParser.java:196)
 at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java
 :279)
 at
 wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
 MarkupCache.java:354)
 at wicket.markup.MarkupCache.getMarkup(MarkupCache.java
 :198)
 at wicket.markup.MarkupCache.getMarkupStream(
 MarkupCache.java:106)
 at
 wicket.MarkupContainer.getAssociatedMarkupStream(
 MarkupContainer.java:827)
 at wicket.markup.html.WebPage.commonInit(WebPage.java
 :235)
 at wicket.markup.html.WebPage.init(WebPage.java:120)
 at ...

 and, as I said, happens when I restart the application
 in a Tomcat server. In my local development environment this 
doesn't happen.
 Thanks,

   Luis Pablo


 On 1/29/07, Eelco Hillenius [EMAIL PROTECTED]
 wrote:
 
  Problems like that should have been fixed for a while
  now, so it may
  be something outside of Wicket. But could you give us
  your complete
  stacktrace please?
 
  Eelco
 
  On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED]
  wrote:
 I have an app developed with wicket 1.2.4 running
  on a Tomcat 5.5.20.
   Whenever I upload a new jar archive with changes in
  my  classes and I
   restart the application (not the hole server) I get
  a NullPointerException
   in the XmlPullParser that has nothing to do with my
  application classes. I
   saw something in the mailing list archives talking
  about leaving the HTML
   files outside the jar file, but that doesn't seem to
  be the right solution.
 Can any of you help me with this? Thanks in
  advance,
  
   Luis Pablo
  
  
  
-
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get
  the chance to share your
   opinions on IT  business topics through brief
  surveys - and earn cash
  
  
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   ___

[Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Luis Pablo Gallo

 I have an app developed with wicket 1.2.4 running on a Tomcat 5.5.20.
Whenever I upload a new jar archive with changes in my  classes and I
restart the application (not the hole server) I get a NullPointerException
in the XmlPullParser that has nothing to do with my application classes. I
saw something in the mailing list archives talking about leaving the HTML
files outside the jar file, but that doesn't seem to be the right solution.
 Can any of you help me with this? Thanks in advance,

   Luis Pablo
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Eelco Hillenius
Problems like that should have been fixed for a while now, so it may
be something outside of Wicket. But could you give us your complete
stacktrace please?

Eelco

On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:
   I have an app developed with wicket 1.2.4 running on a Tomcat 5.5.20.
 Whenever I upload a new jar archive with changes in my  classes and I
 restart the application (not the hole server) I get a NullPointerException
 in the XmlPullParser that has nothing to do with my application classes. I
 saw something in the mailing list archives talking about leaving the HTML
 files outside the jar file, but that doesn't seem to be the right solution.
   Can any of you help me with this? Thanks in advance,

 Luis Pablo

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Luis Pablo Gallo

If it's something outside of Wicket it has nothing to do with my application
because there isn't any line of a class of mine in the stack trace, such
stack trace is:

java.lang.NullPointerException
at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java:390)
at wicket.markup.MarkupParser.readAndParse(MarkupParser.java:196)
at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
at
wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(MarkupCache.java:354)
at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java:106)
at
wicket.MarkupContainer.getAssociatedMarkupStream(MarkupContainer.java:827)
at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
at wicket.markup.html.WebPage.init(WebPage.java:120)
at ...

and, as I said, happens when I restart the application in a Tomcat server.
In my local development environment this doesn't happen.
Thanks,

 Luis Pablo


On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:


Problems like that should have been fixed for a while now, so it may
be something outside of Wicket. But could you give us your complete
stacktrace please?

Eelco

On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:
   I have an app developed with wicket 1.2.4 running on a Tomcat 5.5.20.
 Whenever I upload a new jar archive with changes in my  classes and I
 restart the application (not the hole server) I get a
NullPointerException
 in the XmlPullParser that has nothing to do with my application classes.
I
 saw something in the mailing list archives talking about leaving the
HTML
 files outside the jar file, but that doesn't seem to be the right
solution.
   Can any of you help me with this? Thanks in advance,

 Luis Pablo


-
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
your
 opinions on IT  business topics through brief surveys - and earn cash

http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Igor Vaynberg

http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:


If it's something outside of Wicket it has nothing to do with my
application because there isn't any line of a class of mine in the stack
trace, such stack trace is:

java.lang.NullPointerException
at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java:390)
at wicket.markup.MarkupParser.readAndParse(MarkupParser.java:196)
at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
at
wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(MarkupCache.java
:354)
at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java:106)
at
wicket.MarkupContainer.getAssociatedMarkupStream(MarkupContainer.java:827)
at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
at wicket.markup.html.WebPage.init(WebPage.java:120)
at ...

and, as I said, happens when I restart the application in a Tomcat server.
In my local development environment this doesn't happen.
Thanks,

  Luis Pablo


On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:

 Problems like that should have been fixed for a while now, so it may
 be something outside of Wicket. But could you give us your complete
 stacktrace please?

 Eelco

 On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
I have an app developed with wicket 1.2.4 running on a Tomcat 5.5.20
 .
  Whenever I upload a new jar archive with changes in my  classes and I
  restart the application (not the hole server) I get a
 NullPointerException
  in the XmlPullParser that has nothing to do with my application
 classes. I
  saw something in the mailing list archives talking about leaving the
 HTML
  files outside the jar file, but that doesn't seem to be the right
 solution.
Can any of you help me with this? Thanks in advance,
 
  Luis Pablo
 
 
 -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to
 share your
  opinions on IT  business topics through brief surveys - and earn cash
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

 -

 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
 your
 opinions on IT  business topics through brief surveys - and earn cash

 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Luis Pablo Gallo

I saw that thread, but either I don't understand it or it doesn't have the
solution.

On 1/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote:


http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:

 If it's something outside of Wicket it has nothing to do with my
 application because there isn't any line of a class of mine in the stack
 trace, such stack trace is:

 java.lang.NullPointerException
 at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java:390)
 at wicket.markup.MarkupParser.readAndParse(MarkupParser.java:196)
 at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
 at
 wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(MarkupCache.java
 :354)
 at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
 at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java:106)
 at
 wicket.MarkupContainer.getAssociatedMarkupStream(MarkupContainer.java
 :827)
 at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
 at wicket.markup.html.WebPage.init(WebPage.java:120)
 at ...

 and, as I said, happens when I restart the application in a Tomcat
 server. In my local development environment this doesn't happen.
 Thanks,

   Luis Pablo


 On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:
 
  Problems like that should have been fixed for a while now, so it may
  be something outside of Wicket. But could you give us your complete
  stacktrace please?
 
  Eelco
 
  On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
 I have an app developed with wicket 1.2.4 running on a Tomcat
  5.5.20.
   Whenever I upload a new jar archive with changes in my  classes and
  I
   restart the application (not the hole server) I get a
  NullPointerException
   in the XmlPullParser that has nothing to do with my application
  classes. I
   saw something in the mailing list archives talking about leaving the
  HTML
   files outside the jar file, but that doesn't seem to be the right
  solution.
 Can any of you help me with this? Thanks in advance,
  
   Luis Pablo
  
  
  -
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the chance to
  share your
   opinions on IT  business topics through brief surveys - and earn
  cash
  
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  -
 
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to
  share your
  opinions on IT  business topics through brief surveys - and earn cash
 
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 



 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
 your
 opinions on IT  business topics through brief surveys - and earn cash

 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Igor Vaynberg

did you deploy your app in development or deployment mode?

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:


I saw that thread, but either I don't understand it or it doesn't have the
solution.

On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:

 http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437

 -igor


 On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:
 
  If it's something outside of Wicket it has nothing to do with my
  application because there isn't any line of a class of mine in the stack
  trace, such stack trace is:
 
  java.lang.NullPointerException
  at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java:390)
  at wicket.markup.MarkupParser.readAndParse(MarkupParser.java:196)
  at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
  at
  wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
  MarkupCache.java:354)
  at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
  at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java:106)
  at
  wicket.MarkupContainer.getAssociatedMarkupStream(MarkupContainer.java
  :827)
  at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
  at wicket.markup.html.WebPage.init(WebPage.java:120)
  at ...
 
  and, as I said, happens when I restart the application in a Tomcat
  server. In my local development environment this doesn't happen.
  Thanks,
 
Luis Pablo
 
 
  On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:
  
   Problems like that should have been fixed for a while now, so it may
   be something outside of Wicket. But could you give us your complete
   stacktrace please?
  
   Eelco
  
   On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
  I have an app developed with wicket 1.2.4 running on a Tomcat
   5.5.20.
Whenever I upload a new jar archive with changes in my  classes
   and I
restart the application (not the hole server) I get a
   NullPointerException
in the XmlPullParser that has nothing to do with my application
   classes. I
saw something in the mailing list archives talking about leaving
   the HTML
files outside the jar file, but that doesn't seem to be the right
   solution.
  Can any of you help me with this? Thanks in advance,
   
Luis Pablo
   
   
   -
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to
   share your
opinions on IT  business topics through brief surveys - and earn
   cash
   
   http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
  
   -
  
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the chance to
   share your
   opinions on IT  business topics through brief surveys - and earn
   cash
   http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 
 
  -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to
  share your
  opinions on IT  business topics through brief surveys - and earn cash
 
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 


 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
 your
 opinions on IT  business topics through brief surveys - and earn cash

 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user




Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Luis Pablo Gallo

I tried in both modes, and it makes no difference.

On 1/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote:


did you deploy your app in development or deployment mode?

-igor


On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:

 I saw that thread, but either I don't understand it or it doesn't have
 the solution.

 On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:
 
  http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437
 
  -igor
 
 
  On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:
  
   If it's something outside of Wicket it has nothing to do with my
   application because there isn't any line of a class of mine in the stack
   trace, such stack trace is:
  
   java.lang.NullPointerException
   at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java:390)
   at wicket.markup.MarkupParser.readAndParse(MarkupParser.java:196)
   at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
   at
   wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
   MarkupCache.java:354)
   at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
   at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java:106)
   at
   wicket.MarkupContainer.getAssociatedMarkupStream(
   MarkupContainer.java:827)
   at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
   at wicket.markup.html.WebPage.init(WebPage.java:120)
   at ...
  
   and, as I said, happens when I restart the application in a Tomcat
   server. In my local development environment this doesn't happen.
   Thanks,
  
 Luis Pablo
  
  
   On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:
   
Problems like that should have been fixed for a while now, so it
may
be something outside of Wicket. But could you give us your
complete
stacktrace please?
   
Eelco
   
On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
   I have an app developed with wicket 1.2.4 running on a Tomcat
5.5.20.
 Whenever I upload a new jar archive with changes in my  classes
and I
 restart the application (not the hole server) I get a
NullPointerException
 in the XmlPullParser that has nothing to do with my application
classes. I
 saw something in the mailing list archives talking about leaving
the HTML
 files outside the jar file, but that doesn't seem to be the
right solution.
   Can any of you help me with this? Thanks in advance,

 Luis Pablo



-
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance
to share your
 opinions on IT  business topics through brief surveys - and
earn cash


http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


   

-
   
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to
share your
opinions on IT  business topics through brief surveys - and earn
cash

http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
   
  
  
  
   -
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the chance to
   share your
   opinions on IT  business topics through brief surveys - and earn
   cash
  
   http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
 
 
  -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to
  share your
  opinions on IT  business topics through brief surveys - and earn cash
 
  http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 


 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
 your
 opinions on IT  business topics through brief surveys - and earn cash

 

Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Igor Vaynberg

try the code from the latest 1.2.x branch

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:


I tried in both modes, and it makes no difference.

On 1/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote:

 did you deploy your app in development or deployment mode?

 -igor


 On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
 
  I saw that thread, but either I don't understand it or it doesn't have
  the solution.
 
  On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:
  
   http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437
  
   -igor
  
  
   On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:
   
If it's something outside of Wicket it has nothing to do with my
application because there isn't any line of a class of mine in the stack
trace, such stack trace is:
   
java.lang.NullPointerException
at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java
:390)
at wicket.markup.MarkupParser.readAndParse(MarkupParser.java:196)
at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
at
wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
MarkupCache.java:354)
at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java:106)
at
wicket.MarkupContainer.getAssociatedMarkupStream(
MarkupContainer.java:827)
at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
at wicket.markup.html.WebPage.init(WebPage.java:120)
at ...
   
and, as I said, happens when I restart the application in a Tomcat
server. In my local development environment this doesn't happen.
Thanks,
   
  Luis Pablo
   
   
On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:

 Problems like that should have been fixed for a while now, so it
 may
 be something outside of Wicket. But could you give us your
 complete
 stacktrace please?

 Eelco

 On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
I have an app developed with wicket 1.2.4 running on a
 Tomcat 5.5.20.
  Whenever I upload a new jar archive with changes in
 my  classes and I
  restart the application (not the hole server) I get a
 NullPointerException
  in the XmlPullParser that has nothing to do with my
 application classes. I
  saw something in the mailing list archives talking about
 leaving the HTML
  files outside the jar file, but that doesn't seem to be the
 right solution.
Can any of you help me with this? Thanks in advance,
 
  Luis Pablo
 
 
 
-
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance
 to share your
  opinions on IT  business topics through brief surveys - and
 earn cash
 
 
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

 
-

 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance
 to share your
 opinions on IT  business topics through brief surveys - and
 earn cash
 
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

   
   
   

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to
share your
opinions on IT  business topics through brief surveys - and earn
cash
   

http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
   
  
  
   -
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the chance to
   share your
   opinions on IT  business topics through brief surveys - and earn
   cash
  
   http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
 
 
  

Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Luis Pablo Gallo

I'm using the latest release. Is this a fixed issue in the source files?

On 1/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote:


try the code from the latest 1.2.x branch

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED]  wrote:

 I tried in both modes, and it makes no difference.

 On 1/29/07, Igor Vaynberg [EMAIL PROTECTED]  wrote:
 
  did you deploy your app in development or deployment mode?
 
  -igor
 
 
  On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
  
   I saw that thread, but either I don't understand it or it doesn't
   have the solution.
  
   On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:
   
http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437
   
-igor
   
   
On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:

 If it's something outside of Wicket it has nothing to do with my
 application because there isn't any line of a class of mine in the 
stack
 trace, such stack trace is:

 java.lang.NullPointerException
 at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java
 :390)
 at wicket.markup.MarkupParser.readAndParse(MarkupParser.java
 :196)
 at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
 at
 wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
 MarkupCache.java:354)
 at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
 at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java
 :106)
 at
 wicket.MarkupContainer.getAssociatedMarkupStream(
 MarkupContainer.java:827)
 at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
 at wicket.markup.html.WebPage.init(WebPage.java:120)
 at ...

 and, as I said, happens when I restart the application in a
 Tomcat server. In my local development environment this doesn't 
happen.
 Thanks,

   Luis Pablo


 On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:
 
  Problems like that should have been fixed for a while now, so
  it may
  be something outside of Wicket. But could you give us your
  complete
  stacktrace please?
 
  Eelco
 
  On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]
  wrote:
 I have an app developed with wicket 1.2.4 running on a
  Tomcat 5.5.20.
   Whenever I upload a new jar archive with changes in
  my  classes and I
   restart the application (not the hole server) I get a
  NullPointerException
   in the XmlPullParser that has nothing to do with my
  application classes. I
   saw something in the mailing list archives talking about
  leaving the HTML
   files outside the jar file, but that doesn't seem to be the
  right solution.
 Can any of you help me with this? Thanks in advance,
  
   Luis Pablo
  
  
  
-
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the
  chance to share your
   opinions on IT  business topics through brief surveys - and
  earn cash
  
  
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  
-
 
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance
  to share your
  opinions on IT  business topics through brief surveys - and
  earn cash
  
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 



 
-
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance
 to share your
 opinions on IT  business topics through brief surveys - and
 earn cash

 
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



   
   

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to
share your
opinions on IT  business topics through brief surveys - and earn
cash
   


Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Igor Vaynberg

i dont know. we are not sure what is causing it since it only affects a very
small set of our users and none of the core devs can reproduce it on their
setups. we did some work to what we think is a related issue (running out of
open file handles) so it might help or it might not.

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:


I'm using the latest release. Is this a fixed issue in the source files?

On 1/29/07, Igor Vaynberg [EMAIL PROTECTED]  wrote:

 try the code from the latest 1.2.x branch

 -igor


 On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]  wrote:
 
  I tried in both modes, and it makes no difference.
 
  On 1/29/07, Igor Vaynberg [EMAIL PROTECTED]  wrote:
  
   did you deploy your app in development or deployment mode?
  
   -igor
  
  
   On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
   
I saw that thread, but either I don't understand it or it doesn't
have the solution.
   
On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:

 http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437

 -igor


 On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:
 
  If it's something outside of Wicket it has nothing to do with
  my application because there isn't any line of a class of mine in 
the stack
  trace, such stack trace is:
 
  java.lang.NullPointerException
  at wicket.markup.parser.XmlPullParser.parse(XmlPullParser.java
  :390)
  at wicket.markup.MarkupParser.readAndParse(MarkupParser.java
  :196)
  at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java:279)
  at
  wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
  MarkupCache.java:354)
  at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
  at wicket.markup.MarkupCache.getMarkupStream(MarkupCache.java
  :106)
  at
  wicket.MarkupContainer.getAssociatedMarkupStream(
  MarkupContainer.java:827)
  at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
  at wicket.markup.html.WebPage.init(WebPage.java:120)
  at ...
 
  and, as I said, happens when I restart the application in a
  Tomcat server. In my local development environment this doesn't 
happen.
  Thanks,
 
Luis Pablo
 
 
  On 1/29/07, Eelco Hillenius [EMAIL PROTECTED] wrote:
  
   Problems like that should have been fixed for a while now,
   so it may
   be something outside of Wicket. But could you give us your
   complete
   stacktrace please?
  
   Eelco
  
   On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]
   wrote:
  I have an app developed with wicket 1.2.4 running on a
   Tomcat 5.5.20.
Whenever I upload a new jar archive with changes in
   my  classes and I
restart the application (not the hole server) I get a
   NullPointerException
in the XmlPullParser that has nothing to do with my
   application classes. I
saw something in the mailing list archives talking about
   leaving the HTML
files outside the jar file, but that doesn't seem to be
   the right solution.
  Can any of you help me with this? Thanks in advance,
   
Luis Pablo
   
   
   
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the
   chance to share your
opinions on IT  business topics through brief surveys -
   and earn cash
   
   
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
   
   
  
   
-
  
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net's Techsay panel and you'll get the
   chance to share your
   opinions on IT  business topics through brief surveys - and
   earn cash
   
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 
 
  
-
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance
  to share your
  opinions on IT  business topics through brief surveys - and
  earn cash
 
  
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
  

Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Luis Pablo Gallo

I can't reproduce it either. It happens on the hosting where we have our
client's app running. In my development environment I can't make this
happen, so I can't trace it. But this is really annoying and delays our
work, that's why we're trying to find its source and solution.
So I should try the latest sources? If there is no other option to try maybe
I'll do it.
thanks

Luis Pablo

On 1/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote:


i dont know. we are not sure what is causing it since it only affects a
very small set of our users and none of the core devs can reproduce it on
their setups. we did some work to what we think is a related issue (running
out of open file handles) so it might help or it might not.

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:

 I'm using the latest release. Is this a fixed issue in the source files?

 On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED]  wrote:
 
  try the code from the latest 1.2.x branch
 
  -igor
 
 
  On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]  wrote:
  
   I tried in both modes, and it makes no difference.
  
   On 1/29/07, Igor Vaynberg [EMAIL PROTECTED]  wrote:
   
did you deploy your app in development or deployment mode?
   
-igor
   
   
On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:

 I saw that thread, but either I don't understand it or it
 doesn't have the solution.

 On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:
 
 
  http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437
 
  -igor
 
 
  On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED]
  wrote:
  
   If it's something outside of Wicket it has nothing to do
   with my application because there isn't any line of a class of 
mine in the
   stack trace, such stack trace is:
  
   java.lang.NullPointerException
   at wicket.markup.parser.XmlPullParser.parse(
   XmlPullParser.java:390)
   at wicket.markup.MarkupParser.readAndParse(MarkupParser.java
   :196)
   at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java
   :279)
   at
   wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
   MarkupCache.java:354)
   at wicket.markup.MarkupCache.getMarkup(MarkupCache.java:198)
   at wicket.markup.MarkupCache.getMarkupStream(
   MarkupCache.java:106)
   at
   wicket.MarkupContainer.getAssociatedMarkupStream(
   MarkupContainer.java:827)
   at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
   at wicket.markup.html.WebPage.init(WebPage.java:120)
   at ...
  
   and, as I said, happens when I restart the application in a
   Tomcat server. In my local development environment this doesn't 
happen.
   Thanks,
  
 Luis Pablo
  
  
   On 1/29/07, Eelco Hillenius [EMAIL PROTECTED]
   wrote:
   
Problems like that should have been fixed for a while now,
so it may
be something outside of Wicket. But could you give us your
complete
stacktrace please?
   
Eelco
   
On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]
wrote:
   I have an app developed with wicket 1.2.4 running on a
Tomcat 5.5.20.
 Whenever I upload a new jar archive with changes in
my  classes and I
 restart the application (not the hole server) I get a
NullPointerException
 in the XmlPullParser that has nothing to do with my
application classes. I
 saw something in the mailing list archives talking about
leaving the HTML
 files outside the jar file, but that doesn't seem to be
the right solution.
   Can any of you help me with this? Thanks in advance,

 Luis Pablo



-
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the
chance to share your
 opinions on IT  business topics through brief surveys -
and earn cash


http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
   


   

-
   
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the
chance to share your
opinions on IT  business topics through brief surveys -
and earn cash

http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   
___
Wicket-user 

Re: [Wicket-user] Problem restarting application in Tomcat

2007-01-29 Thread Igor Vaynberg

looks like the npe was hiding the real exception, i just checked in a change
that should fix that. update from svn wicket-1.2.x branch and deploy that,
then look for the exception in the log and let us know what it is.

-igor


On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED] wrote:


I can't reproduce it either. It happens on the hosting where we have our
client's app running. In my development environment I can't make this
happen, so I can't trace it. But this is really annoying and delays our
work, that's why we're trying to find its source and solution.
So I should try the latest sources? If there is no other option to try
maybe I'll do it.
thanks

Luis Pablo

On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:

 i dont know. we are not sure what is causing it since it only affects a
 very small set of our users and none of the core devs can reproduce it on
 their setups. we did some work to what we think is a related issue (running
 out of open file handles) so it might help or it might not.

 -igor


 On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
 
  I'm using the latest release. Is this a fixed issue in the source
  files?
 
  On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED]  wrote:
  
   try the code from the latest 1.2.x branch
  
   -igor
  
  
   On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]  wrote:
   
I tried in both modes, and it makes no difference.
   
On 1/29/07, Igor Vaynberg [EMAIL PROTECTED]  wrote:

 did you deploy your app in development or deployment mode?

 -igor


 On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED] wrote:
 
  I saw that thread, but either I don't understand it or it
  doesn't have the solution.
 
  On 1/29/07, Igor Vaynberg  [EMAIL PROTECTED] wrote:
  
  
   http://www.nabble.com/Wicket-Exceptions-tf3013426.html#a8368437
  
   -igor
  
  
   On 1/29/07, Luis Pablo Gallo [EMAIL PROTECTED]
   wrote:
   
If it's something outside of Wicket it has nothing to do
with my application because there isn't any line of a class of 
mine in the
stack trace, such stack trace is:
   
java.lang.NullPointerException
at wicket.markup.parser.XmlPullParser.parse(
XmlPullParser.java:390)
at wicket.markup.MarkupParser.readAndParse(
MarkupParser.java:196)
at wicket.markup.MarkupCache.loadMarkup(MarkupCache.java
:279)
at
wicket.markup.MarkupCache.loadMarkupAndWatchForChanges(
MarkupCache.java:354)
at wicket.markup.MarkupCache.getMarkup(MarkupCache.java
:198)
at wicket.markup.MarkupCache.getMarkupStream(
MarkupCache.java:106)
at
wicket.MarkupContainer.getAssociatedMarkupStream(
MarkupContainer.java:827)
at wicket.markup.html.WebPage.commonInit(WebPage.java:235)
at wicket.markup.html.WebPage.init(WebPage.java:120)
at ...
   
and, as I said, happens when I restart the application in
a Tomcat server. In my local development environment this 
doesn't happen.
Thanks,
   
  Luis Pablo
   
   
On 1/29/07, Eelco Hillenius [EMAIL PROTECTED]
wrote:

 Problems like that should have been fixed for a while
 now, so it may
 be something outside of Wicket. But could you give us
 your complete
 stacktrace please?

 Eelco

 On 1/29/07, Luis Pablo Gallo  [EMAIL PROTECTED]
 wrote:
I have an app developed with wicket 1.2.4 running on
 a Tomcat 5.5.20.
  Whenever I upload a new jar archive with changes in
 my  classes and I
  restart the application (not the hole server) I get a
 NullPointerException
  in the XmlPullParser that has nothing to do with my
 application classes. I
  saw something in the mailing list archives talking
 about leaving the HTML
  files outside the jar file, but that doesn't seem to
 be the right solution.
Can any of you help me with this? Thanks in advance,
 
  Luis Pablo
 
 
 
-
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get
 the chance to share your
  opinions on IT  business topics through brief surveys
 - and earn cash
 
 
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user