Redirections and Reverse-Proxy

2009-09-28 Thread Stéphane Jeanjean
Hello, I'm using Wicket in a backend which is behind a reverse-proxy. I understand that Wicket does some redirections even if it's not's explicity requested by my code. (perhaps, here, it depends of some strategies, but I don't know them) When a redirection is sent by the back-end the

Re: Redirections and Reverse-Proxy

2009-09-28 Thread Stéphane Jeanjean
I don't know, that's a part of my question. Nothing about RPhost is configured in my BEhost. Igor Vaynberg a écrit : how does wicket know about RPhost when it issues the 302? -igor On Mon, Sep 28, 2009 at 2:10 AM, Stéphane Jeanjean stephane.jeanj...@softeam.com wrote: Hello, I'm using

Re: Redirections and Reverse-Proxy

2009-09-28 Thread Stéphane Jeanjean
the host in location header comes from. Or perhaps I could override the sendRedirect method() as described here : http://knowledgefolders.com/akc/servlet/DisplayServlet?url=DisplayNoteMPURLreportId=1711ownerUserId=satya Stéphane Jeanjean a écrit : I don't know, that's a part of my question

RE : Redirections and Reverse-Proxy

2009-09-28 Thread Stéphane Jeanjean
://cwiki.apache.org/WICKET/wicket-behind-a-front-end-proxy.html -- Forwarded message -- From: Stéphane Jeanjean stephane.jeanj...@softeam.com Date: 2009/9/28 Subject: Re: Redirections and Reverse-Proxy To: users@wicket.apache.org I'm not sure it's a related to wicket. I think it's

Page load after an action

2010-01-26 Thread Stéphane Jeanjean
Hello, My page displays a list of items, for each of them, an icon is available to delete it. The action is managed in a Link.onClick() method. When I click on the link, the page is refreshed but the item is always in my list, I have to do refresh again manually the page to have a list

Re: Page load after an action

2010-01-26 Thread Stéphane Jeanjean
is deleted. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jan 26, 2010 at 8:37 AM, Stéphane Jeanjean stephane.jeanj...@softeam.com wrote: Hello, My page displays a list of items, for each of them, an icon is available to delete it. The action is managed in a Link.onClick() method

Re: Page load after an action

2010-01-26 Thread Stéphane Jeanjean
the 2nd refresh! a lot with folks using 2nd level caches and not seeing immediate persistence of those changes. On Tue, Jan 26, 2010 at 7:57 AM, Stéphane Jeanjean stephane.jeanj...@softeam.com wrote: Please find my code just below : public class NewsListPage { protected static transient

Re: Page load after an action

2010-01-26 Thread Stéphane Jeanjean
info about detachable models. http://cwiki.apache.org/WICKET/detachable-models.html On Tue, Jan 26, 2010 at 1:35 PM, Stéphane Jeanjean stephane.jeanj...@softeam.com wrote: Hi, I don't use Hibernate. My persistence layer uses JDBC. What is strange when I click the delete link, it's the logs

Re: Page load after an action

2010-01-26 Thread Stéphane Jeanjean
at 2:01 PM, Stéphane Jeanjean stephane.jeanj...@softeam.com wrote: The behaviour is the same with the following code :( public void onClick() { // TODO : check the refresh issue getNewsDao().delete(item.getModelObject

Catching arrays in page parameters

2010-01-28 Thread Stéphane Jeanjean
Hi, Do you know how to catch this kind of URL parameters ? linksOrder?listItem[]=1listItem[]=2listItem[]=3 When I try : String[] linkIds = parameters.getStringArray(listItem); No value in my array When I try : String[] linkIds = parameters.getStringArray(listItem[]); Only the