Re: Bigger sites running on wicket?

2011-07-21 Thread Horacio Natyural
we have used wicket extensively in several banking applications . both retail 
and internal apps. we have very large amounts of transactions. mostly using 1.4 
version.

On Jul 22, 2011, at 1:24 AM, dryajov  wrote:

> 1.4 
> 
> --
> View this message in context: 
> http://apache-wicket.1842946.n4.nabble.com/Bigger-sites-running-on-wicket-tp2197500p3684371.html
> Sent 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
> 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



How To Catch Network Disconnection In Ajax Buttons

2012-05-04 Thread Horacio Natyural
Hi,

How do we catch network disconnection ?

For example, I'm submitting using an indicatingajaxbutton, when the
network is disconnected, the loading indicator disappears and the
button is available again. Is there anyway that I can catch network
disconnections in indicatingajaxbutton or any ajax button for that
matter.

I would like to post an alert warning to the client that he/she has
been disconnected from the server.

Is there anyway that I could insert something into this method?

this is in wicket-ajax.js

failure: function(message) {
if (message != null)
Wicket.Log.error("Wicket.Ajax.Call.failure: Error while
parsing response: " + message);
this.request.done();
this.failureHandler();
   Wicket.Ajax.invokePostCallHandlers();
   Wicket.Ajax.invokeFailureHandlers();
}

Thanks!
Carlo

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Page Is Not Found In Page Map After Some Time.

2011-07-05 Thread Horacio Natyural
Hi,

we ofen get this error after performing back several times in an application.
It happens occassionally, does wicket's page map store have a
limitation on the number of times you can store the page?


here's the code in our back button.
we store the page id and version  and use that to track the pages.
after a lot of backs in an application, the page disappears from the
page map causing a nullpointerexception.

Is there anything that I could do to prevent this? what is the limit
on the number of pages that a pagemap could store?

@Override
public void onClick() {
if(clazz != null) {
setResponsePage(clazz);
}else if(pageIDVersion != null && webPage == null) {
setResponsePage(getPage().getPageMap().get(pageIDVersion.getId(),
pageIDVersion.getVersion()));  //SXIBackButton.java:67

} else if(webPage != null && pageIDVersion == null) {
setResponsePage(webPage);
}
}

org.apache.wicket.WicketRuntimeException: Method onLinkClicked of
interface org.apache.wicket.markup.html.link.ILinkListener targeted at
component [MarkupContainer [Component id = backButton]] threw an
exception
at 
org.apache.wicket.RequestListenerInterface.invoke(RequestListenerInterface.java:193)
at 
org.apache.wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents(ListenerInterfaceRequestTarget.java:73)
at 
org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents(AbstractRequestCycleProcessor.java:92)
at 
org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1250)
at org.apache.wicket.RequestCycle.step(RequestCycle.java:1329)
at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1428)
at org.apache.wicket.RequestCycle.request(RequestCycle.java:545)
at org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:468)
at org.apache.wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:138)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1098)
at 
com.hello.world.web.filters.TranslatorFilter.doFilter(TranslatorFilter.java:30)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1089)
at 
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
at 
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1089)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:365)
at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
at org.mortbay.jetty.Server.handle(Server.java:295)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:503)
at 
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:827)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:511)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:210)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:379)
at 
org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:226)
at 
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:442)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.GeneratedMethodAccessor415.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.apache.wicket.RequestListenerInterface.invoke(RequestListenerInterface.java:182)
... 31 more
Caused by: java.lang.IllegalArgumentException: Argument page must be not null
at 
org.apache.wicket.request.target.component.PageRequestTarget.(PageRequestTarget.java:43)
at org.apache.wicket.RequestCycle.setResponsePage(RequestCycle.java:768)
at org.apache.wicket.Component.setResponsePage(Component.java:3166)
at 
com.hello.world..base.web.components.form.button.HelloBackButton.onClick(HelloBackButton.java:67)
at org.apache.wicket.markup.html.link.Link.onLinkClicked(Link.java:224)
... 35 more

Thanks
Horacio

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Page Is Not Found In Page Map After Some Time.

2011-07-05 Thread Horacio Natyural
hi,

how do we change the limit for this?

THanks a lot

2011/7/6 Robert Dahlström :
> Not a complete reply but I think the default limit is 99 versions. This can
> be configured.
>
> Regards
> /Robert
>
> On 07/06/2011 08:44 AM, Horacio Natyural wrote:
>>
>> Hi,
>>
>> we ofen get this error after performing back several times in an
>> application.
>> It happens occassionally, does wicket's page map store have a
>> limitation on the number of times you can store the page?
>>
>>
>> here's the code in our back button.
>> we store the page id and version  and use that to track the pages.
>> after a lot of backs in an application, the page disappears from the
>> page map causing a nullpointerexception.
>>
>> Is there anything that I could do to prevent this? what is the limit
>> on the number of pages that a pagemap could store?
>>
>> @Override
>> public void onClick() {
>> if(clazz != null) {
>> setResponsePage(clazz);
>> }else if(pageIDVersion != null&&  webPage == null) {
>> setResponsePage(getPage().getPageMap().get(pageIDVersion.getId(),
>> pageIDVersion.getVersion()));  //SXIBackButton.java:67
>>
>> } else if(webPage != null&&  pageIDVersion == null) {
>> setResponsePage(webPage);
>> }
>> }
>>
>> org.apache.wicket.WicketRuntimeException: Method onLinkClicked of
>> interface org.apache.wicket.markup.html.link.ILinkListener targeted at
>> component [MarkupContainer [Component id = backButton]] threw an
>> exception
>> at
>> org.apache.wicket.RequestListenerInterface.invoke(RequestListenerInterface.java:193)
>> at
>> org.apache.wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents(ListenerInterfaceRequestTarget.java:73)
>> at
>> org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents(AbstractRequestCycleProcessor.java:92)
>> at
>> org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1250)
>> at org.apache.wicket.RequestCycle.step(RequestCycle.java:1329)
>> at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1428)
>> at org.apache.wicket.RequestCycle.request(RequestCycle.java:545)
>> at
>> org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:468)
>> at
>> org.apache.wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:138)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
>> at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
>> at
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1098)
>> at
>> com.hello.world.web.filters.TranslatorFilter.doFilter(TranslatorFilter.java:30)
>> at
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1089)
>> at
>> org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
>> at
>> org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
>> at
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1089)
>> at
>> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:365)
>> at
>> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>> at
>> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
>> at
>> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)
>> at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
>> at
>> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
>> at org.mortbay.jetty.Server.handle(Server.java:295)
>> at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:503)
>> at
>> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:827)
>> at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:511)
>> at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:210)
>> at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:379)
>> at
>> org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:226)
>> at
>> org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:442)
>> Caused by: java.lang.reflect.InvocationTargetException
>> at sun.reflect.GeneratedMethodAccessor415.invoke(Unknown Source)
>> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
>> at java.lang.r

Re: Page Is Not Found In Page Map After Some Time.

2011-07-05 Thread Horacio Natyural
yep,

its because of this
setResponsePage(getPage().getPageMap().get(pageIDVersion.getId(),
pageIDVersion.getVersion()));

getPage().getPageMap().get(pageIDVersion.getId(),
pageIDVersion.getVersion()) -- this returns a null page after some time.

On Wed, Jul 6, 2011 at 2:53 PM, Martin Grigorov  wrote:
> Hi,
>
> On Wed, Jul 6, 2011 at 8:44 AM, Horacio Natyural
>  wrote:
>> Hi,
>>
>> we ofen get this error after performing back several times in an application.
>> It happens occassionally, does wicket's page map store have a
>> limitation on the number of times you can store the page?
>>
>>
>> here's the code in our back button.
>> we store the page id and version  and use that to track the pages.
>> after a lot of backs in an application, the page disappears from the
>> page map causing a nullpointerexception.
>>
>> Is there anything that I could do to prevent this? what is the limit
>> on the number of pages that a pagemap could store?
>>
>> @Override
>> public void onClick() {
>> if(clazz != null) {
>> setResponsePage(clazz);
>> }else if(pageIDVersion != null && webPage == null) {
>> setResponsePage(getPage().getPageMap().get(pageIDVersion.getId(),
>> pageIDVersion.getVersion()));  //SXIBackButton.java:67
>>
>> } else if(webPage != null && pageIDVersion == null) {
>> setResponsePage(webPage);
>> }
>> }
>>
>> org.apache.wicket.WicketRuntimeException: Method onLinkClicked of
>> interface org.apache.wicket.markup.html.link.ILinkListener targeted at
>> component [MarkupContainer [Component id = backButton]] threw an
>> exception
>> at 
>> org.apache.wicket.RequestListenerInterface.invoke(RequestListenerInterface.java:193)
>> at 
>> org.apache.wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents(ListenerInterfaceRequestTarget.java:73)
>> at 
>> org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents(AbstractRequestCycleProcessor.java:92)
>> at 
>> org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1250)
>> at org.apache.wicket.RequestCycle.step(RequestCycle.java:1329)
>> at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1428)
>> at org.apache.wicket.RequestCycle.request(RequestCycle.java:545)
>> at org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:468)
>> at 
>> org.apache.wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:138)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
>> at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
>> at 
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1098)
>> at 
>> com.hello.world.web.filters.TranslatorFilter.doFilter(TranslatorFilter.java:30)
>> at 
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1089)
>> at 
>> org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
>> at 
>> org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
>> at 
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1089)
>> at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:365)
>> at 
>> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>> at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
>> at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)
>> at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
>> at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
>> at org.mortbay.jetty.Server.handle(Server.java:295)
>> at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:503)
>> at 
>> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:827)
>> at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:511)
>> at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:210)
>> at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:379)
>> at 
>> org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:226)
>> at 
>> org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:442)
>> Caused by: java.lang.reflect.InvocationTargetException
>> at sun.reflect.GeneratedMethodAccessor415.invoke(Unknown Source)
>> at sun.reflect.DelegatingMethodAc

Re: Page Is Not Found In Page Map After Some Time.

2011-07-06 Thread Horacio Natyural
all i can see is set maxpagemaps which I think is different
maybe in a different setting?
i'm also trying to look for it.

On Wed, Jul 6, 2011 at 3:06 PM, Martin Grigorov  wrote:
> See org.apache.wicket.settings.ISessionSettings
>
> On Wed, Jul 6, 2011 at 8:58 AM, Horacio Natyural
>  wrote:
>> yep,
>>
>> its because of this
>> setResponsePage(getPage().getPageMap().get(pageIDVersion.getId(),
>> pageIDVersion.getVersion()));
>>
>> getPage().getPageMap().get(pageIDVersion.getId(),
>> pageIDVersion.getVersion()) -- this returns a null page after some time.
>>
>> On Wed, Jul 6, 2011 at 2:53 PM, Martin Grigorov  wrote:
>>> Hi,
>>>
>>> On Wed, Jul 6, 2011 at 8:44 AM, Horacio Natyural
>>>  wrote:
>>>> Hi,
>>>>
>>>> we ofen get this error after performing back several times in an 
>>>> application.
>>>> It happens occassionally, does wicket's page map store have a
>>>> limitation on the number of times you can store the page?
>>>>
>>>>
>>>> here's the code in our back button.
>>>> we store the page id and version  and use that to track the pages.
>>>> after a lot of backs in an application, the page disappears from the
>>>> page map causing a nullpointerexception.
>>>>
>>>> Is there anything that I could do to prevent this? what is the limit
>>>> on the number of pages that a pagemap could store?
>>>>
>>>> @Override
>>>> public void onClick() {
>>>> if(clazz != null) {
>>>> setResponsePage(clazz);
>>>> }else if(pageIDVersion != null && webPage == null) {
>>>> setResponsePage(getPage().getPageMap().get(pageIDVersion.getId(),
>>>> pageIDVersion.getVersion()));  //SXIBackButton.java:67
>>>>
>>>> } else if(webPage != null && pageIDVersion == null) {
>>>> setResponsePage(webPage);
>>>> }
>>>> }
>>>>
>>>> org.apache.wicket.WicketRuntimeException: Method onLinkClicked of
>>>> interface org.apache.wicket.markup.html.link.ILinkListener targeted at
>>>> component [MarkupContainer [Component id = backButton]] threw an
>>>> exception
>>>> at 
>>>> org.apache.wicket.RequestListenerInterface.invoke(RequestListenerInterface.java:193)
>>>> at 
>>>> org.apache.wicket.request.target.component.listener.ListenerInterfaceRequestTarget.processEvents(ListenerInterfaceRequestTarget.java:73)
>>>> at 
>>>> org.apache.wicket.request.AbstractRequestCycleProcessor.processEvents(AbstractRequestCycleProcessor.java:92)
>>>> at 
>>>> org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1250)
>>>> at org.apache.wicket.RequestCycle.step(RequestCycle.java:1329)
>>>> at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1428)
>>>> at org.apache.wicket.RequestCycle.request(RequestCycle.java:545)
>>>> at 
>>>> org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:468)
>>>> at 
>>>> org.apache.wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:138)
>>>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
>>>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
>>>> at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
>>>> at 
>>>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1098)
>>>> at 
>>>> com.hello.world.web.filters.TranslatorFilter.doFilter(TranslatorFilter.java:30)
>>>> at 
>>>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1089)
>>>> at 
>>>> org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
>>>> at 
>>>> org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
>>>> at 
>>>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1089)
>>>> at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:365)
>>>> at 
>>>> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>>>> at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
>>>> at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)
>>>> at org.mortbay.jetty.webapp.WebAppCo

Wicket Encrypted URL Redirects To A Css Image

2011-07-06 Thread Horacio Natyural
Hi,

I'm having this really weird problem and it is intermettent.
It seems that when I click a URL wich uses an AjaxFallbackLink and
encrypted URL. I am redirected to a css image.
My page becomes a png. This is very intermettent though, anyone
experienced this before?

Instead of getting my desired page, I am redirected to a css image
which is a PNG.

I'm using wicket 1.4.3 btw,

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-06 Thread Horacio Natyural
lol
sorry about that

anyway here's what happened,

The link I accessed turned into a css image instead.

Here's what it looks like in Firefox

Encrypted URL

index(PNG Image,256x240 pixels)

https://ip_addr:port/contextroot/index?x=23423562302982lj;lkjsf73jf;2lkjf;2l3kjf;l2k3fj;lkjf76

and then the image appears.

although the link is supposed to be a link for a page.

On Wed, Jul 6, 2011 at 11:22 PM, Igor Vaynberg  wrote:
> it is almost impossible to help you when you are so many versions behind...
>
> -igor
>
> On Wed, Jul 6, 2011 at 7:17 AM, Horacio Natyural
>  wrote:
>> Hi,
>>
>> I'm having this really weird problem and it is intermettent.
>> It seems that when I click a URL wich uses an AjaxFallbackLink and
>> encrypted URL. I am redirected to a css image.
>> My page becomes a png. This is very intermettent though, anyone
>> experienced this before?
>>
>> Instead of getting my desired page, I am redirected to a css image
>> which is a PNG.
>>
>> I'm using wicket 1.4.3 btw,
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-06 Thread Horacio Natyural
btw, i just made up the crypted url of course.
index is supposed to a wicket page.
i also noticed that the image that it downloads is referenced in a css
file in the application so it is a resource

was there any bug of this nature reported before? i'm trying to find
one but i can't seem to.

On Wed, Jul 6, 2011 at 11:31 PM, Horacio Natyural
 wrote:
> lol
> sorry about that
>
> anyway here's what happened,
>
> The link I accessed turned into a css image instead.
>
> Here's what it looks like in Firefox
>
> Encrypted URL
>
> index(PNG Image,256x240 pixels)
>
> https://ip_addr:port/contextroot/index?x=23423562302982lj;lkjsf73jf;2lkjf;2l3kjf;l2k3fj;lkjf76
>
> and then the image appears.
>
> although the link is supposed to be a link for a page.
>
> On Wed, Jul 6, 2011 at 11:22 PM, Igor Vaynberg  
> wrote:
>> it is almost impossible to help you when you are so many versions behind...
>>
>> -igor
>>
>> On Wed, Jul 6, 2011 at 7:17 AM, Horacio Natyural
>>  wrote:
>>> Hi,
>>>
>>> I'm having this really weird problem and it is intermettent.
>>> It seems that when I click a URL wich uses an AjaxFallbackLink and
>>> encrypted URL. I am redirected to a css image.
>>> My page becomes a png. This is very intermettent though, anyone
>>> experienced this before?
>>>
>>> Instead of getting my desired page, I am redirected to a css image
>>> which is a PNG.
>>>
>>> I'm using wicket 1.4.3 btw,
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-06 Thread Horacio Natyural
hi,

thanks! i also noticed that it seems to happen on an SSL site rather
than on a non ssl site.

Thanks!
Horacio

On Thu, Jul 7, 2011 at 12:37 AM, Martin Grigorov  wrote:
> https://issues.apache.org/jira/browse/WICKET-3514 is similar
> but there the problem was that images in .css were broken, i.e. they
> are relative to the .css, but since the .css path is encoded the
> resolved path for the image was invalid
>
> On Wed, Jul 6, 2011 at 6:01 PM, Igor Vaynberg  wrote:
>> doesnt ring a bell.
>>
>> -igor
>>
>> On Wed, Jul 6, 2011 at 8:32 AM, Horacio Natyural
>>  wrote:
>>> btw, i just made up the crypted url of course.
>>> index is supposed to a wicket page.
>>> i also noticed that the image that it downloads is referenced in a css
>>> file in the application so it is a resource
>>>
>>> was there any bug of this nature reported before? i'm trying to find
>>> one but i can't seem to.
>>>
>>> On Wed, Jul 6, 2011 at 11:31 PM, Horacio Natyural
>>>  wrote:
>>>> lol
>>>> sorry about that
>>>>
>>>> anyway here's what happened,
>>>>
>>>> The link I accessed turned into a css image instead.
>>>>
>>>> Here's what it looks like in Firefox
>>>>
>>>> Encrypted URL
>>>>
>>>> index(PNG Image,256x240 pixels)
>>>>
>>>> https://ip_addr:port/contextroot/index?x=23423562302982lj;lkjsf73jf;2lkjf;2l3kjf;l2k3fj;lkjf76
>>>>
>>>> and then the image appears.
>>>>
>>>> although the link is supposed to be a link for a page.
>>>>
>>>> On Wed, Jul 6, 2011 at 11:22 PM, Igor Vaynberg  
>>>> wrote:
>>>>> it is almost impossible to help you when you are so many versions 
>>>>> behind...
>>>>>
>>>>> -igor
>>>>>
>>>>> On Wed, Jul 6, 2011 at 7:17 AM, Horacio Natyural
>>>>>  wrote:
>>>>>> Hi,
>>>>>>
>>>>>> I'm having this really weird problem and it is intermettent.
>>>>>> It seems that when I click a URL wich uses an AjaxFallbackLink and
>>>>>> encrypted URL. I am redirected to a css image.
>>>>>> My page becomes a png. This is very intermettent though, anyone
>>>>>> experienced this before?
>>>>>>
>>>>>> Instead of getting my desired page, I am redirected to a css image
>>>>>> which is a PNG.
>>>>>>
>>>>>> I'm using wicket 1.4.3 btw,
>>>>>>
>>>>>> -
>>>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>>>
>>>>>>
>>>>>
>>>>> -
>>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>>
>>>>>
>>>>
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
>
>
> --
> Martin Grigorov
> jWeekend
> Training, Consulting, Development
> http://jWeekend.com
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-06 Thread Horacio Natyural
hi,

i've found that we have several components implementing Imarkupcacheprovider,
however, the id return is null


public String getCacheKey(MarkupContainer container, Class containerClass) {
return null;
}

we ahve several components doing this.
is this a possible cause as to why the wrong component was rendered ?

thanks
horacio
On Thu, Jul 7, 2011 at 7:30 AM, Horacio Natyural
 wrote:
> hi,
>
> thanks! i also noticed that it seems to happen on an SSL site rather
> than on a non ssl site.
>
> Thanks!
> Horacio
>
> On Thu, Jul 7, 2011 at 12:37 AM, Martin Grigorov  wrote:
>> https://issues.apache.org/jira/browse/WICKET-3514 is similar
>> but there the problem was that images in .css were broken, i.e. they
>> are relative to the .css, but since the .css path is encoded the
>> resolved path for the image was invalid
>>
>> On Wed, Jul 6, 2011 at 6:01 PM, Igor Vaynberg  
>> wrote:
>>> doesnt ring a bell.
>>>
>>> -igor
>>>
>>> On Wed, Jul 6, 2011 at 8:32 AM, Horacio Natyural
>>>  wrote:
>>>> btw, i just made up the crypted url of course.
>>>> index is supposed to a wicket page.
>>>> i also noticed that the image that it downloads is referenced in a css
>>>> file in the application so it is a resource
>>>>
>>>> was there any bug of this nature reported before? i'm trying to find
>>>> one but i can't seem to.
>>>>
>>>> On Wed, Jul 6, 2011 at 11:31 PM, Horacio Natyural
>>>>  wrote:
>>>>> lol
>>>>> sorry about that
>>>>>
>>>>> anyway here's what happened,
>>>>>
>>>>> The link I accessed turned into a css image instead.
>>>>>
>>>>> Here's what it looks like in Firefox
>>>>>
>>>>> Encrypted URL
>>>>>
>>>>> index(PNG Image,256x240 pixels)
>>>>>
>>>>> https://ip_addr:port/contextroot/index?x=23423562302982lj;lkjsf73jf;2lkjf;2l3kjf;l2k3fj;lkjf76
>>>>>
>>>>> and then the image appears.
>>>>>
>>>>> although the link is supposed to be a link for a page.
>>>>>
>>>>> On Wed, Jul 6, 2011 at 11:22 PM, Igor Vaynberg  
>>>>> wrote:
>>>>>> it is almost impossible to help you when you are so many versions 
>>>>>> behind...
>>>>>>
>>>>>> -igor
>>>>>>
>>>>>> On Wed, Jul 6, 2011 at 7:17 AM, Horacio Natyural
>>>>>>  wrote:
>>>>>>> Hi,
>>>>>>>
>>>>>>> I'm having this really weird problem and it is intermettent.
>>>>>>> It seems that when I click a URL wich uses an AjaxFallbackLink and
>>>>>>> encrypted URL. I am redirected to a css image.
>>>>>>> My page becomes a png. This is very intermettent though, anyone
>>>>>>> experienced this before?
>>>>>>>
>>>>>>> Instead of getting my desired page, I am redirected to a css image
>>>>>>> which is a PNG.
>>>>>>>
>>>>>>> I'm using wicket 1.4.3 btw,
>>>>>>>
>>>>>>> -
>>>>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>>>>
>>>>>>>
>>>>>>
>>>>>> -
>>>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>>>
>>>>>>
>>>>>
>>>>
>>>> -
>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>
>>>>
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>>
>>
>> --
>> Martin Grigorov
>> jWeekend
>> Training, Consulting, Development
>> http://jWeekend.com
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Wicket Disk Page Store Location

2011-07-07 Thread Horacio Natyural
Hi,

where does Wicket store its disk page store?
is it in java.io.tmpdir?

if i use glassfish, where will it be placed?
i can't seem to locate it?

this is where wicket stores serialized pages right?


help!

Thanks
Horacio

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-07 Thread Horacio Natyural
Is this related?

ever since we placed this tag thats when the error occurs



also another instance is when i accesesed the home page, the css file
appeared instead.

thanks

On Thursday, July 7, 2011, Horacio Natyural  wrote:
> hi,
>
> i've found that we have several components implementing Imarkupcacheprovider,
> however, the id return is null
>
>
> public String getCacheKey(MarkupContainer container, Class containerClass) 
> {
>                         return null;
>                 }
>
> we ahve several components doing this.
> is this a possible cause as to why the wrong component was rendered ?
>
> thanks
> horacio
> On Thu, Jul 7, 2011 at 7:30 AM, Horacio Natyural
>  wrote:
>> hi,
>>
>> thanks! i also noticed that it seems to happen on an SSL site rather
>> than on a non ssl site.
>>
>> Thanks!
>> Horacio
>>
>> On Thu, Jul 7, 2011 at 12:37 AM, Martin Grigorov  
>> wrote:
>>> https://issues.apache.org/jira/browse/WICKET-3514 is similar
>>> but there the problem was that images in .css were broken, i.e. they
>>> are relative to the .css, but since the .css path is encoded the
>>> resolved path for the image was invalid
>>>
>>> On Wed, Jul 6, 2011 at 6:01 PM, Igor Vaynberg  
>>> wrote:
>>>> doesnt ring a bell.
>>>>
>>>> -igor
>>>>
>>>> On Wed, Jul 6, 2011 at 8:32 AM, Horacio Natyural
>>>>  wrote:
>>>>> btw, i just made up the crypted url of course.
>>>>> index is supposed to a wicket page.
>>>>> i also noticed that the image that it downloads is referenced in a css
>>>>> file in the application so it is a resource
>>>>>
>>>>> was there any bug of this nature reported before? i'm trying to find
>>>>> one but i can't seem to.
>>>>>
>>>>> On Wed, Jul 6, 2011 at 11:31 PM, Horacio Natyural
>>>>>  wrote:
>>>>>> lol
>>>>>> sorry about that
>>>>>>
>>>>>> anyway here's what happened,
>>>>>>
>>>>>> The link I accessed turned into a css image instead.
>>>>>>
>>>>>> Here's what it looks like in Firefox
>>>>>>
>>>>>> Encrypted URL
>>>>>>
>>>>>> index(PNG Image,256x240 pixels)
>>>>>>
>>>>>> https://ip_addr:port/contextroot/index?x=23423562302982lj;lkjsf73jf;2lkjf;2l3kjf;l2k3fj;lkjf76
>>>>>>
>>>>>> and then the image appears.
>>>>>>
>>>>>> although the link is supposed to be a link for a page.
>>>>>>
>>>>>> On Wed, Jul 6, 2011 at 11:22 PM, Igor Vaynberg  
>>>>>> wrote:
>>>>>>> it is almost impossible to help you when you are so many versions 
>>>>>>> behind...
>>>>>>>
>>>>>>> -igor
>>>>>>>
>>>>>>> On Wed, Jul 6, 2011 at 7:17 AM, Horacio Natyural
>>>>>>>  wrote:
>>>>>>>> Hi,
>>>>>>>>
>>>>>>>> I'm having this really weird problem and it is intermettent.
>>>>>>>> It seems that when I click a URL wich uses an AjaxFallbackLink and
>>>>>>>> encrypted URL. I am redirected to a css image.
>>>>>>>> My page becomes a png. This is very intermettent though, anyone
>>>>>>>> experienced this before?
>>>>>>>>
>>>>>>>> Instead of getting my desired page, I am redirected to a css image
>>>>>>>> which is a PNG.
>>>>>>>>
>>>>>>>> I'm using wicket 1.4.3 btw,
>>>>>>>>
>>>>>>>> -
>>>>>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>>>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>> 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-07 Thread Horacio Natyural
im geting unable to decrypt url text in mu server logs dont know if they 
are relates though?

any ideas ? 

why am i getting redirected to my resource files ?

tnx

On Jul 7, 2011, at 6:45 PM, Martin Grigorov  wrote:

> Attach a debugger to WicketFilter#doFilter() and see what kind of
> requests come from the client.
> If it is crypted then it's interesting what is the decrypted value for it.
> 
> On Thu, Jul 7, 2011 at 12:16 PM, Horacio Natyural
>  wrote:
>> Is this related?
>> 
>> ever since we placed this tag thats when the error occurs
>> 
>> 
>> 
>> also another instance is when i accesesed the home page, the css file
>> appeared instead.
>> 
>> thanks
>> 
>> On Thursday, July 7, 2011, Horacio Natyural  
>> wrote:
>>> hi,
>>> 
>>> i've found that we have several components implementing 
>>> Imarkupcacheprovider,
>>> however, the id return is null
>>> 
>>> 
>>> public String getCacheKey(MarkupContainer container, Class 
>>> containerClass) {
>>> return null;
>>>     }
>>> 
>>> we ahve several components doing this.
>>> is this a possible cause as to why the wrong component was rendered ?
>>> 
>>> thanks
>>> horacio
>>> On Thu, Jul 7, 2011 at 7:30 AM, Horacio Natyural
>>>  wrote:
>>>> hi,
>>>> 
>>>> thanks! i also noticed that it seems to happen on an SSL site rather
>>>> than on a non ssl site.
>>>> 
>>>> Thanks!
>>>> Horacio
>>>> 
>>>> On Thu, Jul 7, 2011 at 12:37 AM, Martin Grigorov  
>>>> wrote:
>>>>> https://issues.apache.org/jira/browse/WICKET-3514 is similar
>>>>> but there the problem was that images in .css were broken, i.e. they
>>>>> are relative to the .css, but since the .css path is encoded the
>>>>> resolved path for the image was invalid
>>>>> 
>>>>> On Wed, Jul 6, 2011 at 6:01 PM, Igor Vaynberg  
>>>>> wrote:
>>>>>> doesnt ring a bell.
>>>>>> 
>>>>>> -igor
>>>>>> 
>>>>>> On Wed, Jul 6, 2011 at 8:32 AM, Horacio Natyural
>>>>>>  wrote:
>>>>>>> btw, i just made up the crypted url of course.
>>>>>>> index is supposed to a wicket page.
>>>>>>> i also noticed that the image that it downloads is referenced in a css
>>>>>>> file in the application so it is a resource
>>>>>>> 
>>>>>>> was there any bug of this nature reported before? i'm trying to find
>>>>>>> one but i can't seem to.
>>>>>>> 
>>>>>>> On Wed, Jul 6, 2011 at 11:31 PM, Horacio Natyural
>>>>>>>  wrote:
>>>>>>>> lol
>>>>>>>> sorry about that
>>>>>>>> 
>>>>>>>> anyway here's what happened,
>>>>>>>> 
>>>>>>>> The link I accessed turned into a css image instead.
>>>>>>>> 
>>>>>>>> Here's what it looks like in Firefox
>>>>>>>> 
>>>>>>>> Encrypted URL
>>>>>>>> 
>>>>>>>> index(PNG Image,256x240 pixels)
>>>>>>>> 
>>>>>>>> https://ip_addr:port/contextroot/index?x=23423562302982lj;lkjsf73jf;2lkjf;2l3kjf;l2k3fj;lkjf76
>>>>>>>> 
>>>>>>>> and then the image appears.
>>>>>>>> 
>>>>>>>> although the link is supposed to be a link for a page.
>>>>>>>> 
>>>>>>>> On Wed, Jul 6, 2011 at 11:22 PM, Igor Vaynberg 
>>>>>>>>  wrote:
>>>>>>>>> it is almost impossible to help you when you are so many versions 
>>>>>>>>> behind...
>>>>>>>>> 
>>>>>>>>> -igor
>>>>>>>>> 
>>>>>>>>> On Wed, Jul 6, 2011 at 7:17 AM, Horacio Natyural
>>>>>>>>>  wrote:
>>>>>>>>>> Hi,
>>>>>>>>>> 
>>>>>>>>>> I'm having this really weird problem and it is intermettent.
>>>>>>>>>> It seems that when I click a URL wich uses an AjaxFallbackLink and
>>>>>>>>>> encrypted URL. I am redirected to a css image.
>>>>>>>>>> My page becomes a png. This is very intermettent though, anyone
>>>>>>>>>> experienced this before?
>>>>>>>>>> 
>>>>>>>>>> Instead of getting my desired page, I am redirected to a css image
>>>>>>>>>> which is a PNG.
>>>>>>>>>> 
>>>>>>>>>> I'm using wicket 1.4.3 btw,
>>>>>>>>>> 
>>>>>>>>>> -
>>>>>>>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>>>>>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>> 
>> 
> 
> 
> 
> -- 
> Martin Grigorov
> jWeekend
> Training, Consulting, Development
> http://jWeekend.com
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-07 Thread Horacio Natyural
oh ,

and to add to it,
this only happens on an SSL site, it doesn't happen on non http sites.

what's weird is, i don't get an error but i'm redirected to an image
or a css file.

On Thu, Jul 7, 2011 at 9:08 PM, Horacio Natyural
 wrote:
> im geting unable to decrypt url text in mu server logs dont know if they 
> are relates though?
>
> any ideas ?
>
> why am i getting redirected to my resource files ?
>
> tnx
>
> On Jul 7, 2011, at 6:45 PM, Martin Grigorov  wrote:
>
>> Attach a debugger to WicketFilter#doFilter() and see what kind of
>> requests come from the client.
>> If it is crypted then it's interesting what is the decrypted value for it.
>>
>> On Thu, Jul 7, 2011 at 12:16 PM, Horacio Natyural
>>  wrote:
>>> Is this related?
>>>
>>> ever since we placed this tag thats when the error occurs
>>>
>>> 
>>>
>>> also another instance is when i accesesed the home page, the css file
>>> appeared instead.
>>>
>>> thanks
>>>
>>> On Thursday, July 7, 2011, Horacio Natyural  
>>> wrote:
>>>> hi,
>>>>
>>>> i've found that we have several components implementing 
>>>> Imarkupcacheprovider,
>>>> however, the id return is null
>>>>
>>>>
>>>> public String getCacheKey(MarkupContainer container, Class 
>>>> containerClass) {
>>>>                         return null;
>>>>                 }
>>>>
>>>> we ahve several components doing this.
>>>> is this a possible cause as to why the wrong component was rendered ?
>>>>
>>>> thanks
>>>> horacio
>>>> On Thu, Jul 7, 2011 at 7:30 AM, Horacio Natyural
>>>>  wrote:
>>>>> hi,
>>>>>
>>>>> thanks! i also noticed that it seems to happen on an SSL site rather
>>>>> than on a non ssl site.
>>>>>
>>>>> Thanks!
>>>>> Horacio
>>>>>
>>>>> On Thu, Jul 7, 2011 at 12:37 AM, Martin Grigorov  
>>>>> wrote:
>>>>>> https://issues.apache.org/jira/browse/WICKET-3514 is similar
>>>>>> but there the problem was that images in .css were broken, i.e. they
>>>>>> are relative to the .css, but since the .css path is encoded the
>>>>>> resolved path for the image was invalid
>>>>>>
>>>>>> On Wed, Jul 6, 2011 at 6:01 PM, Igor Vaynberg  
>>>>>> wrote:
>>>>>>> doesnt ring a bell.
>>>>>>>
>>>>>>> -igor
>>>>>>>
>>>>>>> On Wed, Jul 6, 2011 at 8:32 AM, Horacio Natyural
>>>>>>>  wrote:
>>>>>>>> btw, i just made up the crypted url of course.
>>>>>>>> index is supposed to a wicket page.
>>>>>>>> i also noticed that the image that it downloads is referenced in a css
>>>>>>>> file in the application so it is a resource
>>>>>>>>
>>>>>>>> was there any bug of this nature reported before? i'm trying to find
>>>>>>>> one but i can't seem to.
>>>>>>>>
>>>>>>>> On Wed, Jul 6, 2011 at 11:31 PM, Horacio Natyural
>>>>>>>>  wrote:
>>>>>>>>> lol
>>>>>>>>> sorry about that
>>>>>>>>>
>>>>>>>>> anyway here's what happened,
>>>>>>>>>
>>>>>>>>> The link I accessed turned into a css image instead.
>>>>>>>>>
>>>>>>>>> Here's what it looks like in Firefox
>>>>>>>>>
>>>>>>>>> Encrypted URL
>>>>>>>>>
>>>>>>>>> index(PNG Image,256x240 pixels)
>>>>>>>>>
>>>>>>>>> https://ip_addr:port/contextroot/index?x=23423562302982lj;lkjsf73jf;2lkjf;2l3kjf;l2k3fj;lkjf76
>>>>>>>>>
>>>>>>>>> and then the image appears.
>>>>>>>>>
>>>>>>>>> although the link is supposed to be a link for a page.
>>>>>>>>>
>>>>>>>>> On Wed, Jul 6, 2011 at 11:22 PM, Igor Vaynberg 
>>>>>>>>>  wrote:
>>>&

Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-07 Thread Horacio Natyural
here are some of the logs

rlWebRequestCodingStrategy - Invalid URL:
main?x=KHsKMhrrd-D04mkpqd*xsmCmGwRvNVoUPmz4BBdww8DLo4rNdEHOs25kQrwCz-EEu7JIh1GOXL7GXVhqHfJi1g,
exception type: org.apache.wicket.WicketRuntimeException, exception
message:Unable to decrypt the text '({
2�w���i)�߱�`�o5Z>l�p��ˣ��tAγndB�����H�Q�\��]Xj�'


rlWebRequestCodingStrategy - Invalid URL:
index?x=VW*oMOXmPA45gt7EO0OOeRiN8uhyKItwgoWqwWlZ*lR8ZeIsSmwzQbUDlRP3tVdzdGh8Pip3ADKeTYmyhTpchGgpRzZ3zk9VXNgd*gsOzXSO82y0IFHnIMMwLOxki2efPPU7e1vM*Wo,
exception type: org.apache.wicket.WicketRuntimeException, exception
message:Unable to decrypt the text
'Uo�0��<9���;C�y���r(�p����iY�T|e�,Jl3A����Wsth|>*w

On Thu, Jul 7, 2011 at 9:53 PM, Horacio Natyural
 wrote:
> oh ,
>
> and to add to it,
> this only happens on an SSL site, it doesn't happen on non http sites.
>
> what's weird is, i don't get an error but i'm redirected to an image
> or a css file.
>
> On Thu, Jul 7, 2011 at 9:08 PM, Horacio Natyural
>  wrote:
>> im geting unable to decrypt url text in mu server logs dont know if they 
>> are relates though?
>>
>> any ideas ?
>>
>> why am i getting redirected to my resource files ?
>>
>> tnx
>>
>> On Jul 7, 2011, at 6:45 PM, Martin Grigorov  wrote:
>>
>>> Attach a debugger to WicketFilter#doFilter() and see what kind of
>>> requests come from the client.
>>> If it is crypted then it's interesting what is the decrypted value for it.
>>>
>>> On Thu, Jul 7, 2011 at 12:16 PM, Horacio Natyural
>>>  wrote:
>>>> Is this related?
>>>>
>>>> ever since we placed this tag thats when the error occurs
>>>>
>>>> 
>>>>
>>>> also another instance is when i accesesed the home page, the css file
>>>> appeared instead.
>>>>
>>>> thanks
>>>>
>>>> On Thursday, July 7, 2011, Horacio Natyural  
>>>> wrote:
>>>>> hi,
>>>>>
>>>>> i've found that we have several components implementing 
>>>>> Imarkupcacheprovider,
>>>>> however, the id return is null
>>>>>
>>>>>
>>>>> public String getCacheKey(MarkupContainer container, Class 
>>>>> containerClass) {
>>>>>                         return null;
>>>>>                 }
>>>>>
>>>>> we ahve several components doing this.
>>>>> is this a possible cause as to why the wrong component was rendered ?
>>>>>
>>>>> thanks
>>>>> horacio
>>>>> On Thu, Jul 7, 2011 at 7:30 AM, Horacio Natyural
>>>>>  wrote:
>>>>>> hi,
>>>>>>
>>>>>> thanks! i also noticed that it seems to happen on an SSL site rather
>>>>>> than on a non ssl site.
>>>>>>
>>>>>> Thanks!
>>>>>> Horacio
>>>>>>
>>>>>> On Thu, Jul 7, 2011 at 12:37 AM, Martin Grigorov  
>>>>>> wrote:
>>>>>>> https://issues.apache.org/jira/browse/WICKET-3514 is similar
>>>>>>> but there the problem was that images in .css were broken, i.e. they
>>>>>>> are relative to the .css, but since the .css path is encoded the
>>>>>>> resolved path for the image was invalid
>>>>>>>
>>>>>>> On Wed, Jul 6, 2011 at 6:01 PM, Igor Vaynberg  
>>>>>>> wrote:
>>>>>>>> doesnt ring a bell.
>>>>>>>>
>>>>>>>> -igor
>>>>>>>>
>>>>>>>> On Wed, Jul 6, 2011 at 8:32 AM, Horacio Natyural
>>>>>>>>  wrote:
>>>>>>>>> btw, i just made up the crypted url of course.
>>>>>>>>> index is supposed to a wicket page.
>>>>>>>>> i also noticed that the image that it downloads is referenced in a css
>>>>>>>>> file in the application so it is a resource
>>>>>>>>>
>>>>>>>>> was there any bug of this nature reported before? i'm trying to find
>>>>>>>>> one but i can't seem to.
>>>>>>>>>
>>>>>>>>> On Wed, Jul 6, 2011 at 11:31 PM, Horacio Natyural
>>>>>>>>>  wr

Getting Redirected To A Resource Reference (Image, CSS) On Invalid URL

2011-07-07 Thread Horacio Natyural
Hi,

anyone ever encountered this kind of error?
i'm getting another page whenever I get this error. It's very
intermettent and I'm not sure what's causing it.
it only seems to happen on an SSL instance. Are those SSL characters?

rlWebRequestCodingStrategy - Invalid URL:
main?x=KHsKMhrrd-D04mkpqd*xsmCmGwRvNVoUPmz4BBdww8DLo4rNdEHOs25kQrwCz-EEu7JIh1GOXL7GXVhqHfJi1g,
exception type: org.apache.wicket.WicketRuntimeException, exception
message:Unable to decrypt the text '({
2�w���i)�߱�`�o5Z>l�p��ˣ��tAγndB�����H�Q�\��]Xj�'


rlWebRequestCodingStrategy - Invalid URL:
index?x=VW*oMOXmPA45gt7EO0OOeRiN8uhyKItwgoWqwWlZ*lR8ZeIsSmwzQbUDlRP3tVdzdGh8Pip3ADKeTYmyhTpchGgpRzZ3zk9VXNgd*gsOzXSO82y0IFHnIMMwLOxki2efPPU7e1vM*Wo,
exception type: org.apache.wicket.WicketRuntimeException, exception
message:Unable to decrypt the text
'Uo�0��<9���;C�y���r(�p����iY�T|e�,Jl3A����Wsth|>*w

Thanks

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



UrlCompressingWebCodingStrategy

2011-07-07 Thread Horacio Natyural
Hi,

How do I replace the word 'wicket' that appears in
UrlCompressingWebCodingStrategy?



Thanks!
Carlo

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UrlCompressingWebCodingStrategy

2011-07-07 Thread Horacio Natyural
it seems that wicket is hard coded in the code...
is there anyway that this could be replaced?

are there any other webcodingstrategies other than urlcompressing and
encryptedurlstrategy?

Thanks

On Thu, Jul 7, 2011 at 10:36 PM, Horacio Natyural
 wrote:
> Hi,
>
> How do I replace the word 'wicket' that appears in
> UrlCompressingWebCodingStrategy?
>
>
>
> Thanks!
> Carlo
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: UrlCompressingWebCodingStrategy

2011-07-07 Thread Horacio Natyural
i just removed encryption from cryptedurlcodingstrategy instead...
seems to remove the wicket word

Thanks

On Thu, Jul 7, 2011 at 11:11 PM, Martin Grigorov  wrote:
> In 1.4 this is not possible.
> In 1.5 it was possible in the early RCs but now this parameter is not
> even needed.
>
> On Thu, Jul 7, 2011 at 5:09 PM, Horacio Natyural
>  wrote:
>> it seems that wicket is hard coded in the code...
>> is there anyway that this could be replaced?
>>
>> are there any other webcodingstrategies other than urlcompressing and
>> encryptedurlstrategy?
>>
>> Thanks
>>
>> On Thu, Jul 7, 2011 at 10:36 PM, Horacio Natyural
>>  wrote:
>>> Hi,
>>>
>>> How do I replace the word 'wicket' that appears in
>>> UrlCompressingWebCodingStrategy?
>>>
>>>
>>>
>>> Thanks!
>>> Carlo
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
>
>
> --
> Martin Grigorov
> jWeekend
> Training, Consulting, Development
> http://jWeekend.com
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Encrypted URL Redirects To A Css Image

2011-07-08 Thread Horacio Natyural
Hi,

i've noticed that it seems to happen after login. I've used the
Session.replaceSession command on logging in?
Do you think that there is a relation to this?

Thanks

On Thu, Jul 7, 2011 at 10:04 PM, Horacio Natyural <
horacio.natyu...@gmail.com> wrote:

> here are some of the logs
>
> rlWebRequestCodingStrategy - Invalid URL:
>
> main?x=KHsKMhrrd-D04mkpqd*xsmCmGwRvNVoUPmz4BBdww8DLo4rNdEHOs25kQrwCz-EEu7JIh1GOXL7GXVhqHfJi1g,
> exception type: org.apache.wicket.WicketRuntimeException, exception
> message:Unable to decrypt the text '({
> 2 �w���i)�߱�`�  o5Z >l�  p��ˣ��tAγndB� ��
> ��H�Q�\��]Xj �'
>
>
> rlWebRequestCodingStrategy - Invalid URL:
>
> index?x=VW*oMOXmPA45gt7EO0OOeRiN8uhyKItwgoWqwWlZ*lR8ZeIsSmwzQbUDlRP3tVdzdGh8Pip3ADKeTYmyhTpchGgpRzZ3zk9VXNgd*gsOzXSO82y0IFHnIMMwLOxki2efPPU7e1vM*Wo,
> exception type: org.apache.wicket.WicketRuntimeException, exception
> message:Unable to decrypt the text
> 'Uo�0��< 9���;C�y
> ���r(�p����iY�T|e�,Jl3A� � ��Wsth|>*w
>
> On Thu, Jul 7, 2011 at 9:53 PM, Horacio Natyural
>  wrote:
> > oh ,
> >
> > and to add to it,
> > this only happens on an SSL site, it doesn't happen on non http
> sites.
> >
> > what's weird is, i don't get an error but i'm redirected to an image
> > or a css file.
> >
> > On Thu, Jul 7, 2011 at 9:08 PM, Horacio Natyural
> >  wrote:
> >> im geting unable to decrypt url text in mu server logs dont know if
> they are relates though?
> >>
> >> any ideas ?
> >>
> >> why am i getting redirected to my resource files ?
> >>
> >> tnx
> >>
> >> On Jul 7, 2011, at 6:45 PM, Martin Grigorov 
> wrote:
> >>
> >>> Attach a debugger to WicketFilter#doFilter() and see what kind of
> >>> requests come from the client.
> >>> If it is crypted then it's interesting what is the decrypted value for
> it.
> >>>
> >>> On Thu, Jul 7, 2011 at 12:16 PM, Horacio Natyural
> >>>  wrote:
> >>>> Is this related?
> >>>>
> >>>> ever since we placed this tag thats when the error occurs
> >>>>
> >>>> 
> >>>>
> >>>> also another instance is when i accesesed the home page, the css file
> >>>> appeared instead.
> >>>>
> >>>> thanks
> >>>>
> >>>> On Thursday, July 7, 2011, Horacio Natyural <
> horacio.natyu...@gmail.com> wrote:
> >>>>> hi,
> >>>>>
> >>>>> i've found that we have several components implementing
> Imarkupcacheprovider,
> >>>>> however, the id return is null
> >>>>>
> >>>>>
> >>>>> public String getCacheKey(MarkupContainer container, Class
> containerClass) {
> >>>>> return null;
> >>>>> }
> >>>>>
> >>>>> we ahve several components doing this.
> >>>>> is this a possible cause as to why the wrong component was rendered ?
> >>>>>
> >>>>> thanks
> >>>>> horacio
> >>>>> On Thu, Jul 7, 2011 at 7:30 AM, Horacio Natyural
> >>>>>  wrote:
> >>>>>> hi,
> >>>>>>
> >>>>>> thanks! i also noticed that it seems to happen on an SSL site rather
> >>>>>> than on a non ssl site.
> >>>>>>
> >>>>>> Thanks!
> >>>>>> Horacio
> >>>>>>
> >>>>>> On Thu, Jul 7, 2011 at 12:37 AM, Martin Grigorov <
> mgrigo...@apache.org> wrote:
> >>>>>>> https://issues.apache.org/jira/browse/WICKET-3514 is similar
> >>>>>>> but there the problem was that images in .css were broken, i.e.
> they
> >>>>>>> are relative to the .css, but since the .css path is encoded the
> >>>>>>> resolved path for the image was invalid
> >>>>>>>
> >>>>>>> On Wed, Jul 6, 2011 at 6:01 PM, Igor Vaynberg <
> igor.vaynb...@gmail.com> wrote:
> >>>>>>>> doesnt ring a bell.
> >>>>>>>>
> >>>>>>>> -igor
> >>>>>>>>
> >>>>>>>> On Wed, Jul 6, 2011 

Prevent Double Submit When Holding Enter Button

2011-07-09 Thread Horacio Natyural
Hi,

Is there a way that I can prevent a double submit when I'm holding the
enter button?
I'm using a normal Button component.

I can't seem to prevent it from submitting the form twice..

Thanks
Carlo

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Prevent Double Submit When Holding Enter Button

2011-07-09 Thread Horacio Natyural
btw,

this happens when I hold the Enter button without releasing it..


Thanks

On Sat, Jul 9, 2011 at 5:31 PM, Horacio Natyural
 wrote:
> Hi,
>
> Is there a way that I can prevent a double submit when I'm holding the
> enter button?
> I'm using a normal Button component.
>
> I can't seem to prevent it from submitting the form twice..
>
> Thanks
> Carlo
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Prevent Double Submit When Holding Enter Button

2011-07-09 Thread Horacio Natyural
nope,
i'm submitting via normal Button component

On Sat, Jul 9, 2011 at 5:55 PM, Josh Kamau  wrote:
> Are you submitting via ajax?
>
> On Sat, Jul 9, 2011 at 12:39 PM, Horacio Natyural <
> horacio.natyu...@gmail.com> wrote:
>
>> btw,
>>
>> this happens when I hold the Enter button without releasing it..
>>
>>
>> Thanks
>>
>> On Sat, Jul 9, 2011 at 5:31 PM, Horacio Natyural
>>  wrote:
>> > Hi,
>> >
>> > Is there a way that I can prevent a double submit when I'm holding the
>> > enter button?
>> > I'm using a normal Button component.
>> >
>> > I can't seem to prevent it from submitting the form twice..
>> >
>> > Thanks
>> > Carlo
>> >
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Getting A Random Localized Resource (CSS Image) Instead Of Page

2011-07-11 Thread Horacio Natyural
Hi,

What does this log statement mean?

Tried to retrieve a localized string for a component that has not yet
been added to the page. This can sometimes lead to an invalid or no
localized resource returned

I see it in almost all of our pages and it's saying that i can
sometimes lead to an invalid or no localized resource returned?
Is this the reason why I'm suddenly getting a different image instead
of the one that I'm looking for?

I'm getting a css image instead of a page and this happens very randomly.
Really need help on this.

THanks A Lot!
Horacio

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting A Random Localized Resource (CSS Image) Instead Of Page

2011-07-11 Thread Horacio Natyural
What are the implications of this error message?

Thanks

On Mon, Jul 11, 2011 at 5:26 PM, Horacio Natyural
 wrote:
> Hi,
>
> What does this log statement mean?
>
> Tried to retrieve a localized string for a component that has not yet
> been added to the page. This can sometimes lead to an invalid or no
> localized resource returned
>
> I see it in almost all of our pages and it's saying that i can
> sometimes lead to an invalid or no localized resource returned?
> Is this the reason why I'm suddenly getting a different image instead
> of the one that I'm looking for?
>
> I'm getting a css image instead of a page and this happens very randomly.
> Really need help on this.
>
> THanks A Lot!
> Horacio
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting A Random Localized Resource (CSS Image) Instead Of Page

2011-07-11 Thread Horacio Natyural
thanks for the info..

martin,

someone used

getRequestCycle().setRedirect(true);

Thanks for all the help


On Mon, Jul 11, 2011 at 6:05 PM, Wilhelmsen Tor Iver  wrote:
> From: Horacio Natyural [mailto:horacio.natyu...@gmail.com]
>> What are the implications of this error message?
>
> Wicket will ignore any overriding (on the Page level) of the property, only 
> the component's own (and the Application's?) properties files will be used.
>
> E.g. if FooComponent.properties has
> fie=Some default
>
> and FooPage.properties has
> myfoocomponent.fie=Another value
>
> then calling getString("fie") in the constructor will return "Some default" 
> because there is no FooPage in the hierarchy yet.
>
> - Tor Iver
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting A Random Localized Resource (CSS Image) Instead Of Page

2011-07-11 Thread Horacio Natyural
does it have any effect?

On Mon, Jul 11, 2011 at 7:45 PM, Horacio Natyural
 wrote:
> thanks for the info..
>
> martin,
>
> someone used
>
> getRequestCycle().setRedirect(true);
>
> Thanks for all the help
>
>
> On Mon, Jul 11, 2011 at 6:05 PM, Wilhelmsen Tor Iver  
> wrote:
>> From: Horacio Natyural [mailto:horacio.natyu...@gmail.com]
>>> What are the implications of this error message?
>>
>> Wicket will ignore any overriding (on the Page level) of the property, only 
>> the component's own (and the Application's?) properties files will be used.
>>
>> E.g. if FooComponent.properties has
>> fie=Some default
>>
>> and FooPage.properties has
>> myfoocomponent.fie=Another value
>>
>> then calling getString("fie") in the constructor will return "Some default" 
>> because there is no FooPage in the hierarchy yet.
>>
>> - Tor Iver
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting A Random Localized Resource (CSS Image) Instead Of Page

2011-07-11 Thread Horacio Natyural
btw,

before the error occurrs,
there would be instances in which the server would not reply
here's an example scenario.

  a. Was able to login ppoerly
b. Updated a client info (changed the
alternate email address)
c. Clicked the Transfer link, inputted  the
necessary information and clicked the Submit button, nothing
   d. Clicked again the submit button,
nothing happend again.
5. Clicked the Refresh button

The CSS image then appears
there awere also instances in which the link was clicked, did not
reply. then after clicking again, the css image appeared again.

any ideas?




On Mon, Jul 11, 2011 at 8:41 PM, Horacio Natyural
 wrote:
> does it have any effect?
>
> On Mon, Jul 11, 2011 at 7:45 PM, Horacio Natyural
>  wrote:
>> thanks for the info..
>>
>> martin,
>>
>> someone used
>>
>> getRequestCycle().setRedirect(true);
>>
>> Thanks for all the help
>>
>>
>> On Mon, Jul 11, 2011 at 6:05 PM, Wilhelmsen Tor Iver  
>> wrote:
>>> From: Horacio Natyural [mailto:horacio.natyu...@gmail.com]
>>>> What are the implications of this error message?
>>>
>>> Wicket will ignore any overriding (on the Page level) of the property, only 
>>> the component's own (and the Application's?) properties files will be used.
>>>
>>> E.g. if FooComponent.properties has
>>> fie=Some default
>>>
>>> and FooPage.properties has
>>> myfoocomponent.fie=Another value
>>>
>>> then calling getString("fie") in the constructor will return "Some default" 
>>> because there is no FooPage in the hierarchy yet.
>>>
>>> - Tor Iver
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting A Random Localized Resource (CSS Image) Instead Of Page

2011-07-11 Thread Horacio Natyural
is this sort of related to wicket-2204 ?
i've seen this issue in the tracker

On Mon, Jul 11, 2011 at 9:41 PM, Horacio Natyural
 wrote:
> btw,
>
> before the error occurrs,
> there would be instances in which the server would not reply
> here's an example scenario.
>
>  a. Was able to login ppoerly
>                        b. Updated a client info (changed the
> alternate email address)
>                        c. Clicked the Transfer link, inputted  the
> necessary information and clicked the Submit button, nothing
>                                   d. Clicked again the submit button,
> nothing happend again.
>                        5. Clicked the Refresh button
>
> The CSS image then appears
> there awere also instances in which the link was clicked, did not
> reply. then after clicking again, the css image appeared again.
>
> any ideas?
>
>
>
>
> On Mon, Jul 11, 2011 at 8:41 PM, Horacio Natyural
>  wrote:
>> does it have any effect?
>>
>> On Mon, Jul 11, 2011 at 7:45 PM, Horacio Natyural
>>  wrote:
>>> thanks for the info..
>>>
>>> martin,
>>>
>>> someone used
>>>
>>> getRequestCycle().setRedirect(true);
>>>
>>> Thanks for all the help
>>>
>>>
>>> On Mon, Jul 11, 2011 at 6:05 PM, Wilhelmsen Tor Iver  
>>> wrote:
>>>> From: Horacio Natyural [mailto:horacio.natyu...@gmail.com]
>>>>> What are the implications of this error message?
>>>>
>>>> Wicket will ignore any overriding (on the Page level) of the property, 
>>>> only the component's own (and the Application's?) properties files will be 
>>>> used.
>>>>
>>>> E.g. if FooComponent.properties has
>>>> fie=Some default
>>>>
>>>> and FooPage.properties has
>>>> myfoocomponent.fie=Another value
>>>>
>>>> then calling getString("fie") in the constructor will return "Some 
>>>> default" because there is no FooPage in the hierarchy yet.
>>>>
>>>> - Tor Iver
>>>>
>>>> -
>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>
>>>>
>>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting A Random Localized Resource (CSS Image) Instead Of Page

2011-07-13 Thread Horacio Natyural
hi,

i think glassfish is the one causing it.
There seems to be a problem with glassfish 3.0.1's https listener.
it seems to be mixing up request. i don't know if anyone got this type
of request before but look at this html page.

The HTML pages contain the actual http request? Glassfish seems to be
mixing it up. We also tried on https port and we were able to get a
css image. It's really really weird my html page contains
an actual http response.

-
  New
Interest Rates
  Initial Depo

  
  Invs


  Gover/a>
  Trust An
  https://192.168.1.145:44461/project/?x=I2gGyFH0AD2-feEGa5Nud*otos3v-S1Ed6lrgZKocB9lt8gGDx7t*Mu5zvgldZt7lLMr9mC1rOIrW808ClydEZGaicqpoxIaM2gLcCLsB4zs3NVtR0VyGQ
Content-Type: text/html;charset=ISO-8Content-Language: en-US
Content-Length: 302
Date: Wed, 13 Jul 2011 11:04:32 GMT


Document moved
Document moved
This document has moved https://192.168.1.145:44461/bo/?x=I2gGyFH0AD2-feEGa5Nud*otos3v-S1Ed6lrgZKocB9lt8gGDx7t*Mu5zvgldZt7lLMr9mC1rOIrW808ClydEZGaicqpoxIaM2gLcCLsB4zs3NVtR0VyGQ";>here.





On Tue, Jul 12, 2011 at 12:23 AM, Horacio Natyural
 wrote:
> is this sort of related to wicket-2204 ?
> i've seen this issue in the tracker
>
> On Mon, Jul 11, 2011 at 9:41 PM, Horacio Natyural
>  wrote:
>> btw,
>>
>> before the error occurrs,
>> there would be instances in which the server would not reply
>> here's an example scenario.
>>
>>  a. Was able to login ppoerly
>>                        b. Updated a client info (changed the
>> alternate email address)
>>                        c. Clicked the Transfer link, inputted  the
>> necessary information and clicked the Submit button, nothing
>>                                   d. Clicked again the submit button,
>> nothing happend again.
>>                        5. Clicked the Refresh button
>>
>> The CSS image then appears
>> there awere also instances in which the link was clicked, did not
>> reply. then after clicking again, the css image appeared again.
>>
>> any ideas?
>>
>>
>>
>>
>> On Mon, Jul 11, 2011 at 8:41 PM, Horacio Natyural
>>  wrote:
>>> does it have any effect?
>>>
>>> On Mon, Jul 11, 2011 at 7:45 PM, Horacio Natyural
>>>  wrote:
>>>> thanks for the info..
>>>>
>>>> martin,
>>>>
>>>> someone used
>>>>
>>>> getRequestCycle().setRedirect(true);
>>>>
>>>> Thanks for all the help
>>>>
>>>>
>>>> On Mon, Jul 11, 2011 at 6:05 PM, Wilhelmsen Tor Iver  
>>>> wrote:
>>>>> From: Horacio Natyural [mailto:horacio.natyu...@gmail.com]
>>>>>> What are the implications of this error message?
>>>>>
>>>>> Wicket will ignore any overriding (on the Page level) of the property, 
>>>>> only the component's own (and the Application's?) properties files will 
>>>>> be used.
>>>>>
>>>>> E.g. if FooComponent.properties has
>>>>> fie=Some default
>>>>>
>>>>> and FooPage.properties has
>>>>> myfoocomponent.fie=Another value
>>>>>
>>>>> then calling getString("fie") in the constructor will return "Some 
>>>>> default" because there is no FooPage in the hierarchy yet.
>>>>>
>>>>> - Tor Iver
>>>>>
>>>>> -
>>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>>
>>>>>
>>>>
>>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Getting A Random Localized Resource (CSS Image) Instead Of Page

2011-07-13 Thread Horacio Natyural
btw,
it doesn't seem to occur on glassfish's http port.
That's what's really weird..

I can replicate it by moving fast from one link to another.

On Wed, Jul 13, 2011 at 6:52 PM, Horacio Natyural
 wrote:
> hi,
>
> i think glassfish is the one causing it.
> There seems to be a problem with glassfish 3.0.1's https listener.
> it seems to be mixing up request. i don't know if anyone got this type
> of request before but look at this html page.
>
> The HTML pages contain the actual http request? Glassfish seems to be
> mixing it up. We also tried on https port and we were able to get a
> css image. It's really really weird my html page contains
> an actual http response.
>
> -
>      New
> Interest Rates
>                       target="_blank">Initial Depo
>                    
>                  
>                   target="_blank">Invs
>
>                    
>                       target="_blank">Gover/a>
>                       target="_blank">Trust An
>                       href="*PHTTP/1.1 302 Moved Temporarily
> X-Powered-By: Servlet/3.0
> Server: GlassFish Server Open Source Edition 3.0.1
> Location: 
> https://192.168.1.145:44461/project/?x=I2gGyFH0AD2-feEGa5Nud*otos3v-S1Ed6lrgZKocB9lt8gGDx7t*Mu5zvgldZt7lLMr9mC1rOIrW808ClydEZGaicqpoxIaM2gLcCLsB4zs3NVtR0VyGQ
> Content-Type: text/html;charset=ISO-8Content-Language: en-US
> Content-Length: 302
> Date: Wed, 13 Jul 2011 11:04:32 GMT
>
> 
> Document moved
> Document moved
> This document has moved  href="https://192.168.1.145:44461/bo/?x=I2gGyFH0AD2-feEGa5Nud*otos3v-S1Ed6lrgZKocB9lt8gGDx7t*Mu5zvgldZt7lLMr9mC1rOIrW808ClydEZGaicqpoxIaM2gLcCLsB4zs3NVtR0VyGQ";>here.
> 
> 
>
> ------------
>
> On Tue, Jul 12, 2011 at 12:23 AM, Horacio Natyural
>  wrote:
>> is this sort of related to wicket-2204 ?
>> i've seen this issue in the tracker
>>
>> On Mon, Jul 11, 2011 at 9:41 PM, Horacio Natyural
>>  wrote:
>>> btw,
>>>
>>> before the error occurrs,
>>> there would be instances in which the server would not reply
>>> here's an example scenario.
>>>
>>>  a. Was able to login ppoerly
>>>                        b. Updated a client info (changed the
>>> alternate email address)
>>>                        c. Clicked the Transfer link, inputted  the
>>> necessary information and clicked the Submit button, nothing
>>>                                   d. Clicked again the submit button,
>>> nothing happend again.
>>>                        5. Clicked the Refresh button
>>>
>>> The CSS image then appears
>>> there awere also instances in which the link was clicked, did not
>>> reply. then after clicking again, the css image appeared again.
>>>
>>> any ideas?
>>>
>>>
>>>
>>>
>>> On Mon, Jul 11, 2011 at 8:41 PM, Horacio Natyural
>>>  wrote:
>>>> does it have any effect?
>>>>
>>>> On Mon, Jul 11, 2011 at 7:45 PM, Horacio Natyural
>>>>  wrote:
>>>>> thanks for the info..
>>>>>
>>>>> martin,
>>>>>
>>>>> someone used
>>>>>
>>>>> getRequestCycle().setRedirect(true);
>>>>>
>>>>> Thanks for all the help
>>>>>
>>>>>
>>>>> On Mon, Jul 11, 2011 at 6:05 PM, Wilhelmsen Tor Iver  
>>>>> wrote:
>>>>>> From: Horacio Natyural [mailto:horacio.natyu...@gmail.com]
>>>>>>> What are the implications of this error message?
>>>>>>
>>>>>> Wicket will ignore any overriding (on the Page level) of the property, 
>>>>>> only the component's own (and the Application's?) properties files will 
>>>>>> be used.
>>>>>>
>>>>>> E.g. if FooComponent.properties has
>>>>>> fie=Some default
>>>>>>
>>>>>> and FooPage.properties has
>>>>>> myfoocomponent.fie=Another value
>>>>>>
>>>>>> then calling getString("fie") in the constructor will return "Some 
>>>>>> default" because there is no FooPage in the hierarchy yet.
>>>>>>
>>>>>> - Tor Iver
>>>>>>
>>>>>> -
>>>>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>>>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org