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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=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.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to