[Wicket-user] jsessionid appear three times

2006-08-03 Thread R.A
;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 forum at Nabble.com

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.

[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 context: http

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

Re: [Wicket-user] about base path

2006-07-03 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
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 pre-integrated technology

Re: [Wicket-user] about base path

2006-07-03 Thread R.A
/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 Wicket - User forum at Nabble.com. Using Tomcat but need to do more

Re: [Wicket-user] about base path

2006-07-03 Thread R.A
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-base-path-tf1882484.html#a5149488 Sent from

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 base path

2006-07-02 Thread R.A
/*lt;/url-patterngt; lt;/servlet-mappinggt; 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 it possible to set base path, /pc, in wicket java source? Regards, R.A -- View

[Wicket-user] RadioGroup and DataView

2006-06-19 Thread R.A
) 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. ___ Wicket-user mailing list Wicket

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 setResponsePage

2006-06-06 Thread R.A
, 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://www.nabble.com/about-setResponsePage

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

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] ExternalLink problem

2006-04-27 Thread R.A
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 wrong? Regards, R.A -- View this message in context: http

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

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 web services

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, lt;a wicket:id=helpLinkgt;lt;/agt; -- View this message in context: http://www.nabble.com/ExternalLink-problem-t1516651.html#a4118400 Sent from the Wicket - User forum at

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

Re: [Wicket-user] * is not output

2006-04-18 Thread R.A
div wicket:id=feedback login id: input wicket:id=loginId type=text/ /div 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

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.Net email

[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] Check disabled

2006-04-10 Thread R.A
, 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 sponsored by xPML

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 Nabble.com

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

[Wicket-user] Check disabled

2006-04-09 Thread R.A
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. --- This SF.Net

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:

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

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

2006-04-03 Thread R.A
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-called-request-two

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

2006-04-02 Thread R.A
for the request logger... return; } } } Thank you. R.A -- View this message in context: http://www.nabble.com/PageLink-called-request-two-times-t1205926.html#a3719486 Sent from

[Wicket-user] panels addition to panels

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

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

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

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 Nabble.com

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

[Wicket-user] IAuthorizationStrategy and TabbedPanel

2006-03-14 Thread R.A
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 authenticate. Thank you. R.A -- View

Re: [Wicket-user] IAuthorizationStrategy and TabbedPanel

2006-03-14 Thread R.A
. 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 email is sponsored by xPML, a groundbreaking scripting

Re: [Wicket-user] IAuthorizationStrategy and TabbedPanel

2006-03-14 Thread R.A
to 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 Nabble.com

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

2006-03-07 Thread R.A
, 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 the Wicket - User forum at Nabble.com

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

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, 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.com/PageLink-called-request

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

2006-03-06 Thread R.A
:-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 -- View this message in context: http://www.nabble.com

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

2006-03-06 Thread R.A
;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 -- View this message in context: http://www.nabble.com/PageLink

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 is

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

2006-03-05 Thread R.A
. 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 Nabble.com

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-02 Thread R.A
: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-two-times-t1205926.html#a3199970 Sent from the Wicket - User forum at Nabble.com

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

2006-03-02 Thread R.A
. 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 groundbreaking

[Wicket-user] PageLink called request two times

2006-03-01 Thread R.A
)) { 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-0200. Thank you. R.A -- View

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

2006-03-01 Thread R.A
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: http://www.nabble.com/PageLink