Re: Weird exceptions. Has anyone seen any exceptions like these

2008-06-02 Thread atul singh
*This is happening on use of ajax tabs...and that too all of them wherever
they are in our application..
I remember this happening earlier when there were unclosed  tags:: look
at this mail
*http://www.mail-archive.com/users@wicket.apache.org/msg15126.html
*Is any similar things there I am not aware of?
*(Also if we want this exception ignored by shifting to 1.3.4--we probably
are trying to ignore what might be going wrong ...I am not so sure about a
change in wicket version we use at the moment, nor do we have bandwidth for
this)

On Mon, Jun 2, 2008 at 12:21 PM, Johan Compagner <[EMAIL PROTECTED]>
wrote:

> In 1.3.4 this error shouldnt happen, it is just ignored
>
> On 6/1/08, atul singh <[EMAIL PROTECTED]> wrote:
> > Hi,
> > As a result of code integration from various teams we have introduced
> > some change which is causing problems...
> > but the sad part is that we do not know what is happening--
> > I will loove to know if someone else has seen similar exceptions and
> > how they solved if they were able to::
> > Also what do these exceptions mean--i mean situation they might happen
> in??
> >
> > 1.
> > java.lang.IllegalStateException: No Page found for component
> > [MarkupContainer [Component id = panel, page = , path =
> >  at org.apache.wicket.Component.getPage(Component.java:1658)
> >  at
> >
> org.apache.wicket.ajax.AjaxRequestTarget.respondComponent(AjaxRequestTarget.java:689)
> >  at
> >
> org.apache.wicket.ajax.AjaxRequestTarget.respondComponents(AjaxRequestTarget.java:605)
> >  at
> >
> org.apache.wicket.ajax.AjaxRequestTarget.respond(AjaxRequestTarget.java:520)
> >  at
> >
> org.apache.wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:104)
> >  at
> >
> org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1172)
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: Weird exceptions. Has anyone seen any exceptions like these

2008-06-01 Thread Johan Compagner
In 1.3.4 this error shouldnt happen, it is just ignored

On 6/1/08, atul singh <[EMAIL PROTECTED]> wrote:
> Hi,
> As a result of code integration from various teams we have introduced
> some change which is causing problems...
> but the sad part is that we do not know what is happening--
> I will loove to know if someone else has seen similar exceptions and
> how they solved if they were able to::
> Also what do these exceptions mean--i mean situation they might happen in??
>
> 1.
> java.lang.IllegalStateException: No Page found for component
> [MarkupContainer [Component id = panel, page = , path =
>  at org.apache.wicket.Component.getPage(Component.java:1658)
>  at
> org.apache.wicket.ajax.AjaxRequestTarget.respondComponent(AjaxRequestTarget.java:689)
>  at
> org.apache.wicket.ajax.AjaxRequestTarget.respondComponents(AjaxRequestTarget.java:605)
>  at
> org.apache.wicket.ajax.AjaxRequestTarget.respond(AjaxRequestTarget.java:520)
>  at
> org.apache.wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:104)
>  at
> org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1172)
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Weird exceptions. Has anyone seen any exceptions like these

2008-06-01 Thread Timo Rantalaiho
On Sun, 01 Jun 2008, atul singh wrote:
> I will loove to know if someone else has seen similar exceptions and
> how they solved if they were able to::
> Also what do these exceptions mean--i mean situation they might happen in??
> 
> 1.
> java.lang.IllegalStateException: No Page found for component
> [MarkupContainer [Component id = panel, page = , path =
>  at org.apache.wicket.Component.getPage(Component.java:1658)
>  at 
> org.apache.wicket.ajax.AjaxRequestTarget.respondComponent(AjaxRequestTarget.java:689)

We have run into this in a situation where you add a component
to AjaxRequestTarget for repainting, even though the component 
gets removed from the current page.

This happens easily when your component is under a repeater
and the whole repeater gets repainted, and it then recreates 
its children. The old children and their descendants then 
become garbage and repainting them produces this exception.

Best wishes,
Timo

-- 
Timo Rantalaiho   
Reaktor Innovations Oyhttp://www.ri.fi/ >

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Weird exceptions. Has anyone seen any exceptions like these

2008-06-01 Thread atul singh
Thanks,
But i am sure, that is not happening ..I looked at all that code..
Any other suggestions/guesses??

On Mon, Jun 2, 2008 at 12:09 AM, Maurice Marrink <[EMAIL PROTECTED]> wrote:
> Are you by any chance replacing components? This could happen if you
> let the ajax render a component that has been removed from the page.
>
> Maurice
>
> On Sun, Jun 1, 2008 at 7:32 PM, atul singh <[EMAIL PROTECTED]> wrote:
>> Hi,
>> As a result of code integration from various teams we have introduced
>> some change which is causing problems...
>> but the sad part is that we do not know what is happening--
>> I will loove to know if someone else has seen similar exceptions and
>> how they solved if they were able to::
>> Also what do these exceptions mean--i mean situation they might happen in??
>>
>> 1.
>> java.lang.IllegalStateException: No Page found for component
>> [MarkupContainer [Component id = panel, page = , path =
>>  at org.apache.wicket.Component.getPage(Component.java:1658)
>> at 
>> org.apache.wicket.ajax.AjaxRequestTarget.respondComponent(AjaxRequestTarget.java:689)
>> at 
>> org.apache.wicket.ajax.AjaxRequestTarget.respondComponents(AjaxRequestTarget.java:605)
>> at 
>> org.apache.wicket.ajax.AjaxRequestTarget.respond(AjaxRequestTarget.java:520)
>> at 
>> org.apache.wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:104)
>> at 
>> org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1172)
>>
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Weird exceptions. Has anyone seen any exceptions like these

2008-06-01 Thread Maurice Marrink
Are you by any chance replacing components? This could happen if you
let the ajax render a component that has been removed from the page.

Maurice

On Sun, Jun 1, 2008 at 7:32 PM, atul singh <[EMAIL PROTECTED]> wrote:
> Hi,
> As a result of code integration from various teams we have introduced
> some change which is causing problems...
> but the sad part is that we do not know what is happening--
> I will loove to know if someone else has seen similar exceptions and
> how they solved if they were able to::
> Also what do these exceptions mean--i mean situation they might happen in??
>
> 1.
> java.lang.IllegalStateException: No Page found for component
> [MarkupContainer [Component id = panel, page = , path =
>  at org.apache.wicket.Component.getPage(Component.java:1658)
> at 
> org.apache.wicket.ajax.AjaxRequestTarget.respondComponent(AjaxRequestTarget.java:689)
> at 
> org.apache.wicket.ajax.AjaxRequestTarget.respondComponents(AjaxRequestTarget.java:605)
> at 
> org.apache.wicket.ajax.AjaxRequestTarget.respond(AjaxRequestTarget.java:520)
> at 
> org.apache.wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:104)
> at 
> org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1172)
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Weird exceptions. Has anyone seen any exceptions like these

2008-06-01 Thread atul singh
Hi,
As a result of code integration from various teams we have introduced
some change which is causing problems...
but the sad part is that we do not know what is happening--
I will loove to know if someone else has seen similar exceptions and
how they solved if they were able to::
Also what do these exceptions mean--i mean situation they might happen in??

1.
java.lang.IllegalStateException: No Page found for component
[MarkupContainer [Component id = panel, page = , path =
 at org.apache.wicket.Component.getPage(Component.java:1658)
 at 
org.apache.wicket.ajax.AjaxRequestTarget.respondComponent(AjaxRequestTarget.java:689)
 at 
org.apache.wicket.ajax.AjaxRequestTarget.respondComponents(AjaxRequestTarget.java:605)
 at 
org.apache.wicket.ajax.AjaxRequestTarget.respond(AjaxRequestTarget.java:520)
 at 
org.apache.wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:104)
 at 
org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1172)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]