[Wicket-user] PageLink called request two times

2006-03-01 Thread R.A
, new CustomDataProvider(model)) { protected void populateItem(final Item item) { . On click the link to NextPage, DataView is called two times. So the program access database two times. And onBeginRequest is called two times too. Why? I use wicket-1.2-20060227

Re: [Wicket-user] PageLink called request two times

2006-03-01 Thread R.A
eLink code this, Link nextLink = new PageLink("nextLink", NextPage.class) { public void onClick() { setResponsePage(NextPage.class); } }.setAutoEnable(true); Then onBeginRequest called just one time. Thank you. R.A -- View this message in context: h

Re: [Wicket-user] PageLink called request two times

2006-03-02 Thread R.A
} } And I accessed Wicket Examples again, logs as follows. Entering on BeginRequest [06/03/02 19:22:46:625 JST] ae46607 SystemOut O Entering onBeginRequest onBeginRequest was called two times. Thank you. R.A -- View this message in context: http://www.nabble.com/PageLink-called-request-t

Re: [Wicket-user] PageLink called request two times

2006-03-02 Thread R.A
s out. Thanks a lot! R.A -- View this message in context: http://www.nabble.com/PageLink-called-request-two-times-t1205926.html#a3214470 Sent from the Wicket - User forum at Nabble.com. --- This SF.Net email is sponsored by xPML, a groundbre

Re: [Wicket-user] PageLink called request two times

2006-03-05 Thread R.A
time. Relate to the order which wicket-1.2-20060227-0200.jar is loaded? Thank you. R.A -- View this message in context: http://www.nabble.com/PageLink-called-request-two-times-t1205926.html#a3256132 Sent from the Wicket - User forum at Nabbl

Re: [Wicket-user] PageLink called request two times

2006-03-05 Thread R.A
Sorry, when import sources, this problem is same. doGet is called two times. -- View this message in context: http://www.nabble.com/PageLink-called-request-two-times-t1205926.html#a3256582 Sent from the Wicket - User forum at Nabble.com. ---

Re: [Wicket-user] PageLink called request two times

2006-03-06 Thread R.A
Hi Johan, I clicked "go to our private/ non bookmarkable page" link, "http://localhost:9080/WicketExamples1.2Web/compref;jsessionid=vMFTc_kuJIPUEGIZ44gT20X:-1?wicket:interface=:1:pageLink::ILinkListener"; (WicketExamples -> compref -> wicket.markup.html.link.PageLink -> go to our private/ non

Re: [Wicket-user] PageLink called request two times

2006-03-06 Thread R.A
Hi Johan, Using WebSphere BufferedResponse is null. Using Tomcat BufferedResponse is such as "[EMAIL PROTECTED]"; I set all cookies is disabled and use URL rewrite in WebSphere. After I clicked "go to our private/ non bookmarkable page"(http://localhost:9080/WicketExamples1.2Web/compref;jsession

Re: [Wicket-user] PageLink called request two times

2006-03-06 Thread R.A
Hi Johan, In the doGet method got I "JAmY5Yk15AOhPeObHM8OdkE" as session id. But WebSphere added number of cluster management, so jsessionid was "JAmY5Yk15AOhPeObHM8OdkE:-1". Is this cause of trouble? Thank you. R.A -- View this message in context: http://www.nabble

Re: [Wicket-user] PageLink called request two times

2006-03-06 Thread R.A
etExamples1.2Web/compref;jsessionid=JAmY5Yk15AOhPeObHM8OdkE:-1;jsessionid=JAmY5Yk15AOhPeObHM8OdkE:-1?wicket:interface=:2:: It seems that two session ids are exist, but second id was created by WebSphere based on first id. So in WebSphere are these two session ids same, I think. Thank you. R.A --

Re: [Wicket-user] PageLink called request two times

2006-03-06 Thread R.A
"/WicketExamples1.2Web/compref;jsessionid=dX1N0UQwv_iRRaU0FlTKbsF:-1?wicket:interface=:2::", but buffereId is "/WicketExamples1.2Web/compref?wicket:interface=:2::". In the map value is not contained, so return value BufferedHttpServletResponse is null. Thank you. R.A -- Vi

Re: [Wicket-user] PageLink called request two times

2006-03-06 Thread R.A
WebSphere's session id is, EPOC# + SessionKey + CloneID, and use HttpServletRequest#getRequestedSessionId to get this. When open WicketExamples -> compref -> wicket.markup.html.link.PageLink, in WicketServlet#doGet, getRequesetedSessionId's output is "X15KLwX-1G5IVRAF91idJcZ:-1" and sessionId

Re: [Wicket-user] PageLink called request two times

2006-03-07 Thread R.A
(); } This solution method is correct, is? It seems that WebSphere users have this problem, don't Wicket correspond? Thank you. R.A -- View this message in context: http://www.nabble.com/PageLink-called-request-two-times-t1205926.html#a3277379 Sent from th

Re: [Wicket-user] PageLink called request two times

2006-03-07 Thread R.A
Hi Johan, True. If you will fix it by only using the query part, I wait it in the pleasure. Thanks a lot!! Thank you. R.A -- View this message in context: http://www.nabble.com/PageLink-called-request-two-times-t1205926.html#a3277879 Sent from the Wicket - User forum at Nabble.com

[Wicket-user] IAuthorizationStrategy and TabbedPanel

2006-03-14 Thread R.A
when using TabbedPanel too. How do I do? I use wickt1.2-beta1. Thank you. R.A -- View this message in context: http://www.nabble.com/IAuthorizationStrategy-and-TabbedPanel-t1277505.html#a3393074 Sent from the Wicket - User forum at Nabble.com. --

Re: [Wicket-user] IAuthorizationStrategy and TabbedPanel

2006-03-14 Thread R.A
Hi Johan, I'm sorry for my poor English. I create tab panel page class based on WicketExample's TabbedPanelPage. First "first tab" is visible and TabPanel1 is active, then click "second tab", TabPanel2 will be active. Between TabPanel1 to TabPanel2, I want to

Re: [Wicket-user] IAuthorizationStrategy and TabbedPanel

2006-03-14 Thread R.A
to authenticate every click tab link. Thank you. R.A -- View this message in context: http://www.nabble.com/IAuthorizationStrategy-and-TabbedPanel-t1277505.html#a3394354 Sent from the Wicket - User forum at Nabble.com. --- This SF.Net

Re: [Wicket-user] IAuthorizationStrategy and TabbedPanel

2006-03-14 Thread R.A
determin whether "Component" argument of isActionAuthorized is tab or not? Thank you. R.A -- View this message in context: http://www.nabble.com/IAuthorizationStrategy-and-TabbedPanel-t1277505.html#a3395275 Sent from the Wicket - User forum at

Re: [Wicket-user] IAuthorizationStrategy and TabbedPanel

2006-03-15 Thread R.A
Hi Maurice, Okey, I successed authentication by using Component#getPath Action#getName in isActionAuthorized method. Thanks a lot!! -- View this message in context: http://www.nabble.com/IAuthorizationStrategy-and-TabbedPanel-t1277505.html#a3411746 Sent from the Wicket - User forum at Nabble.com

[Wicket-user] RadioGroup's validation

2006-03-22 Thread R.A
validation result in FormComponentFeedbackBorder. I tried using CustomValidator, but I don't know how I get the last RadioChoice's status. Let me know, please. Thank you, R.A -- View this message in context: http://www.nabble.com/RadioGroup%27s-validation-t1327838.html#a3544789 Sent from

Re: [Wicket-user] RadioGroup's validation

2006-03-22 Thread R.A
Hi Igor, I followed your advice to call textfield.error("message") in onSubmit method, and I succeeded. Thanks a lot!! Thank you, R.A -- View this message in context: http://www.nabble.com/RadioGroup%27s-validation-t1327838.html#a3544987 Sent from the Wicket - User forum at

[Wicket-user] error message in a panel

2006-03-28 Thread R.A
t;feedback")); } protected void onBeginRequest() { if (...) { error("error occured"); } } } Thank you. R.A -- View this message in context: http://www.nabble.com/error-message-in-a-panel-t1355119.html#a362

Re: [Wicket-user] error message in a panel

2006-03-28 Thread R.A
Hi Igor. I tried using getSession().error(), but compiled error occurred... I follow your advice and use the onSubmit method for setting error messages. Thanks a lot! R.A -- View this message in context: http://www.nabble.com/error-message-in-a-panel-t1355119.html#a3642064 Sent from the

Re: [Wicket-user] error message in a panel

2006-03-28 Thread R.A
Hi Igor. I see. Thank you for the information. Thank you. R.A -- View this message in context: http://www.nabble.com/error-message-in-a-panel-t1355119.html#a3642943 Sent from the Wicket - User forum at Nabble.com. --- This SF.Net email is

Re: [Wicket-user] PageLink called request two times

2006-04-02 Thread R.A
Response); // redirect responses are ignored for the request logger... return; } } } Thank you. R.A -- View this message in context: http://www.

[Wicket-user] panels addition to panels

2006-04-02 Thread R.A
Panel1 is succeeded, but access to the Panel2 is failed. The exception is, java.lang.IllegalStateException: No Page found for component [MarkupContainer [Component id = panel2, page = , path = panel2.TestPage$Panel1$Panel2]] Is panels addition to panels wrong? Thank you. R.A -- View this message in cont

Re: [Wicket-user] panels addition to panels

2006-04-03 Thread R.A
Hi Igor. I get the point. Thank you for your reply. R.A -- View this message in context: http://www.nabble.com/panels-addition-to-panels-t1384873.html#a3736730 Sent from the Wicket - User forum at Nabble.com. --- This SF.Net email is

Re: [Wicket-user] PageLink called request two times

2006-04-03 Thread R.A
and I accessed WicketExamples -> compref -> wicket.markup.html.link.PageLink -> go to our private/ non bookmarkable page. So it reappeared. This occured on both Tomcat and WebSphere. Please make sure that this. Thank you. R.A -- View this message in context: http://www.nabble.com/PageLink-

Re: [Wicket-user] PageLink called request two times

2006-04-04 Thread R.A
Hi Johan. This log was output when NonbookmarkablePage was opened. [06/04/04 17:13:31:875 JST] 16bd736 SystemOut O === doGet [06/04/04 17:13:31:875 JST] 16bd736 SystemOut O === sessionId: aUaEk1GTIg6WGjZE-Iiu1dE [06/04/04 17:13:31:875 JST] 16bd736 SystemOut O === queryString: wicke

[Wicket-user] Check disabled

2006-04-09 Thread R.A
} But as matching the condition, the Check is not "disabled". Can not Check be disabled? Regars, R.A -- View this message in context: http://www.nabble.com/Check-disabled-t1423057.html#a3836170 Sent from the Wicket - User forum at Nabble.com. ---

Re: [Wicket-user] Check disabled

2006-04-10 Thread R.A
check.isEnabled() is false, but all Checks is active in the html. Regars, R.A -- View this message in context: http://www.nabble.com/Check-disabled-t1423057.html#a3836979 Sent from the Wicket - User forum at Nabble.com. --- This SF.Net email is

Re: [Wicket-user] Check disabled

2006-04-10 Thread R.A
Hi Igor. I see, and I'm looking forward to your handling. Thank you for your reply. Regars, R.A -- View this message in context: http://www.nabble.com/Check-disabled-t1423057.html#a3852996 Sent from the Wicket - User forum at Nabbl

Re: [Wicket-user] Check disabled

2006-04-10 Thread R.A
Hi Igor. I checked it. Thanks a lot!! Regars, R.A -- View this message in context: http://www.nabble.com/Check-disabled-t1423057.html#a3855145 Sent from the Wicket - User forum at Nabble.com. --- This SF.Net email is sponsored by xPML, a

[Wicket-user] "*" is not output

2006-04-17 Thread R.A
Hi. I use Wicket 1.2-rc1. I use FormComponentFeedbackBorder, but when input error is occured, "*" is not output. How has meens been changed? -- View this message in context: http://www.nabble.com/%22*%22-is-not-output-t1465629.html#a3961346 Sent from the Wicket - User forum at Nabble.com. ---

Re: [Wicket-user] "*" is not output

2006-04-18 Thread R.A
feedback.add(loginId); html login id: If the login id textfield is not input, error will occure and "*" will be output beside textfield. But error message is output but "*" is not output. What wrong? Regars, R.A -- View this message in co

Re: [Wicket-user] "*" is not output

2006-04-18 Thread R.A
Hi Igor. I'm sorry I've not checked it. Thank you. Regars, R.A -- View this message in context: http://www.nabble.com/%22*%22-is-not-output-t1465629.html#a3981657 Sent from the Wicket - User forum at Nabble.com. --- This SF.Ne

[Wicket-user] ExternalLink problem

2006-04-27 Thread R.A
ings googlePopupSettings = new PopupSettings().setHeight(200).setWidth(200); } } public class TestPage extends Page { public TestPage { add(new TestLink("abc")); } } Opening TestPage, "test link" is not link, but text. What's wron

Re: [Wicket-user] ExternalLink problem

2006-04-27 Thread R.A
Hi Johan. The markup is, And the output is, test link Regards, R.A -- View this message in context: http://www.nabble.com/ExternalLink-problem-t1516651.html#a4118241 Sent from the Wicket - User forum at Nabble.com. --- Using Tomcat but

Re: [Wicket-user] ExternalLink problem

2006-04-27 Thread R.A
Sorry, " " Regards, R.A -- View this message in context: http://www.nabble.com/ExternalLink-problem-t1516651.html#a4118272 Sent from the Wicket - User forum at Nabble.com. --- Using Tomcat but need to do more? Need to support we

Re: [Wicket-user] ExternalLink problem

2006-04-27 Thread R.A
Hi Johan. I'm very sorry. I posted message from Nabble, I don't know why tags erase. I'll post again. markup is, -- View this message in context: http://www.nabble.com/ExternalLink-problem-t1516651.html#a4118400 Sent from the Wicket - User forum at Nabble.com. -

Re: [Wicket-user] ExternalLink problem

2006-04-27 Thread R.A
Hi Johan, I succeeded! Thank you very much!! Regards, R.A -- View this message in context: http://www.nabble.com/ExternalLink-problem-t1516651.html#a4118553 Sent from the Wicket - User forum at Nabble.com. --- Using Tomcat but need to do

[Wicket-user] about development/deployment mode setting

2006-05-11 Thread R.A
ionFactory factory [06/05/11 19:40:37:656 JST] 334e4db0 Application I wicket.Application You are in DEVELOPMENT mode [06/05/11 19:40:37:656 JST] 334e4db0 Application I wicket.Application You are in DEVELOPMENT mode Why? Is there any problem? Regards, R.A -- View this message in cont

Re: [Wicket-user] about development/deployment mode setting

2006-05-11 Thread R.A
Hi Johan. I set configuration in the web.xml, so work fine. Thanks very much! Regards, R.A -- View this message in context: http://www.nabble.com/about-development-deployment-mode-setting-t1599854.html#a4351178 Sent from the Wicket - User forum at Nabble.com

[Wicket-user] about setResponsePage

2006-06-06 Thread R.A
quot; is only in the mobile.LoginPage, so error occured. But I don't know why pc.LoginPage is calling. As a trial, I set "setResponsePage(mobile.LoginPage.class)", work fine. Need I set the package name when I use classes having same name? Regards, R.A -- View this message in context: http://w

Re: [Wicket-user] about setResponsePage

2006-06-06 Thread R.A
Hi Matej. This is true! I import pc.LoginPage. My basic mistake... Thank you! Regards, R.A -- View this message in context: http://www.nabble.com/about-setResponsePage-t1740743.html#a4730467 Sent from the Wicket - User forum at Nabble.com

[Wicket-user] RadioGroup and DataView

2006-06-19 Thread R.A
"book" object is null. When adding ListView (not DataView) on RadioGroup, work fine. What's wrong? I use Wicket 1.2. Regards, R.A -- View this message in context: http://www.nabble.com/RadioGroup-and-DataView-t1810187.html#a4933188 Sent from the Wicket - User forum at Nabble.com. __

Re: [Wicket-user] RadioGroup and DataView

2006-06-19 Thread R.A
Hi Igor. I see it now. I use AbstractReadOnlyModel instead of AbstractReadOnlyDetachableModel in MyDataProvider class, and work fine. Thank you very much!! Regards, R.A -- View this message in context: http://www.nabble.com/RadioGroup-and-DataView-t1810187.html#a4947720 Sent from the Wicket

[Wicket-user] about base path

2006-07-02 Thread R.A
me> <url-pattern>/pc/*</url-pattern> </servlet-mapping> I store image files at "WEB-INF/pc/images". If I set image tag in html file, img src="pc/images/abc.jpg", work fine. But I'd like to set image tag, img src="images/abc.jpg". Is i

Re: [Wicket-user] about base path

2006-07-02 Thread R.A
Hi Frank and Igor. Thanks for your replies. I had mistaken idea... I use base tag and move image directory from WEB-INF. Thank you! Regards, R.A -- View this message in context: http://www.nabble.com/about-base-path-tf1882484.html#a5147266 Sent from the Wicket - User forum at Nabble.com

Re: [Wicket-user] about base path

2006-07-03 Thread R.A
"path" in base tag? Regards, R.A -- View this message in context: http://www.nabble.com/about-base-path-tf1882484.html#a5147772 Sent from the Wicket - User forum at Nabble.com. Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with

Re: [Wicket-user] about base path

2006-07-03 Thread R.A
myapp" is context root. I set "http://localhost:9080/myapp/pc";(create dynamically) in base tag, so I'd like not to be added nothing img tag. What's wrong? Regards, R.A -- View this message in context: http://www.nabble.com/about-base-path-tf1882484.html#a5148315 Sent from the W

Re: [Wicket-user] about base path

2006-07-03 Thread R.A
myapp/pc";, this time. How do I get HttpServletRequest in webapplication class? I tried HttpServletRequest request = ((WebRequest)RequestCycle.get().getRequest()).getHttpServletRequest(), NullPointerException occured. Regards, R.A -- View this message in context: http://www.nabble.com/about-bas

Re: [Wicket-user] about base path

2006-07-03 Thread R.A
super.newWebRequest(request); } Thank you very much! Regards, R.A -- View this message in context: http://www.nabble.com/about-base-path-tf1882484.html#a5161096 Sent from the Wicket - User forum at Nabble.com. Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly

[Wicket-user] about TextField trim

2006-07-04 Thread R.A
Hi all. I know that Wicket trim spaces entered in TextField. It's convenient, but I'd not like to trim in some part of my application. Can I get spaces from entered value of TextField? I'd like to validate TextField with spaces. Regards, R.A -- View this message in

Re: [Wicket-user] about TextField trim

2006-07-04 Thread R.A
Hi Johan. I see! I override convertValue and succeed. Thank you very much! Regards, R.A -- View this message in context: http://www.nabble.com/about-TextField-trim-tf1889503.html#a5166767 Sent from the Wicket - User forum at Nabble.com. Using Tomcat but need to do more? Need to support web

[Wicket-user] jsessionid appear three times

2006-08-03 Thread R.A
fmSLWcZO-m:-1;jsessionid=jp89QLSYv3dWVfmSLWcZO-m:-1?wicket:interface=:1:: "jsessionid=" appear three times. Regards, R.A -- View this message in context: http://www.nabble.com/jsessionid-appear-three-times-tf2044481.html#a5629101 Sent from the Wicket - User

Re: [Wicket-user] jsessionid appear three times

2006-08-03 Thread R.A
Hi Johan. But when I use wicket-1.2, this problem is not occured. Regards, R.A -- View this message in context: http://www.nabble.com/jsessionid-appear-three-times-tf2044481.html#a5629503 Sent from the Wicket - User forum at Nabble.com

Re: [Wicket-user] jsessionid appear three times

2006-08-03 Thread R.A
Hi Gwyn. "test" is context root. When I access "http://localhost:9080/test/top";, this problem is occured, too. -- View this message in context: http://www.nabble.com/jsessionid-appear-three-times-tf2044481.html#a5629541 Sent from the Wicket - User forum at Nabble.com. ---

Re: [Wicket-user] jsessionid appear three times

2006-08-03 Thread R.A
, R.A -- View this message in context: http://www.nabble.com/jsessionid-appear-three-times-tf2044481.html#a5630431 Sent from the Wicket - User forum at Nabble.com. - Take Surveys. Earn Cash. Influence the Future of IT Join