Re: [Wicket-user] localhost/wicketApp works fine, PC_NAME/wicketApp throws page expire.

2007-07-20 Thread Sean Sullivan
Which web browser? Which version of wicket? Which app server? On 7/20/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hi has anyone has had this problem before? I have a page and everything works fine. but when I click on a link at the home page only works (goes to the page)

Re: [Wicket-user] 401 HTTP authentication?

2007-07-06 Thread Sean Sullivan
Have you tried: import org.apache.wicket.protocol.http.servlet.*; throw new AbortWithWebErrorCodeException(401) // or maybe: throw new AbortWithHttpStatusException(401, false) On 7/3/07, Maurice Marrink [EMAIL PROTECTED] wrote: I did some digging in the code and found the following:

[Wicket-user] Wicket ModalWindow, MaskType and opacity

2007-07-03 Thread Sean Sullivan
Hello, I am using a Wicket 1.3.0 SNAPSHOT from the trunk. In the ModalWindow class, there are two masks available: MaskType.TRANSPARENT MaskType.SEMI-TRANSPARENT (10% opacity) Is there a way for me to have finer control of the degree of opacity? I'd love to be able to control it

[Wicket-user] Wicket get together at O'Reilly Open Source convention? (Portland Oregon USA)

2007-06-29 Thread Sean Sullivan
The O'Reilly open source convention is happening July 23-27 in Portland Oregon (USA): http://conferences.oreillynet.com/os2007/ Are there any Wicket people coming to Portland for OSCON? I could organize an informal gathering or (perhaps) an official birds-of-feather session:

Re: [Wicket-user] Dynamic Menus?

2007-06-28 Thread Sean Sullivan
You are right. The link is broken: http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-extensions-menubar/ It appears that the code is now located here: http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/branches/wicket-2-DISCONTINUED/wicket-extensions-menubar/

Re: [Wicket-user] wicket 1.3 and tomcat 5.5 filterStart severe error?

2007-06-27 Thread Sean Sullivan
I encountered that error recently when I was running Tomcat 5.5.17 with Eclipse WebTools 1.5.4 I was unable to determine the root cause of the error. Sean On 6/27/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi I am trying to start the quickstart project on tomcat and

Re: [Wicket-user] Dynamic Menus?

2007-06-26 Thread Sean Sullivan
Doug: You should look at this code: http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-extensions-menubar/ The code uses Wicket 2.x and Java 5 Generics. Since Wicket 2 has been abandoned, this component/code needs to be rewritten for Wicket 1.3 I've got commit access

[Wicket-user] Can I add a WebPage to a WebPage?

2007-06-19 Thread Sean Sullivan
Since WebPage extends from Component, Is it possible to add a WebPage to another WebPage? // Pseudo code: public class FooPage extends WebPage { // implementation ommitted } public class BarPage extends WebPage { public BarPage() { add(new FooPage()); } } Cheers, Sean

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-06-15 Thread Sean Sullivan
I was unable to get my Wicket 1.3 application to run in Websphere 6.0.2.13 After upgrading from Websphere 6.0.2.13 to Websphere 6.0.2.17, my Wicket 1.3application is running perfectly. Wicket 1.3 users should avoid Websphere 6.0.2.13... Sean On 5/24/07, Sean Sullivan [EMAIL PROTECTED] wrote

[Wicket-user] WicketTester class in Wicket 1.3

2007-06-14 Thread Sean Sullivan
I'm using the WicketTester class from Wicket 1.3 trunk. WicketTester provides these methods: public Page startPage(Class c) public Page startPage(Page p) public void assertRenderedPage(Class expectedRenderedPageClass) I was wondering if there should also be a method with this signature:

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-25 Thread Sean Sullivan
a Websphere specific bug. The WAR runs fine in Apache Tomcat 5.5.17 Sean On 5/24/07, Johan Compagner [EMAIL PROTECTED] wrote: make that home/ On 5/24/07, Sean Sullivan [EMAIL PROTECTED] wrote: I have an index.jsp file in the root of the WAR: jsp:forward page=/home / On 5/24/07, Johan

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-25 Thread Sean Sullivan
Question: Is Wicket setting the 302 response code for these HTTP requests? I am seeing the 302 status code in all responses. (302 == SC_MOVED_TEMPORARILY) Sean On 5/25/07, Sean Sullivan [EMAIL PROTECTED] wrote: Ok, I made the change to home/ but I'm still having the same problem. I

Re: [Wicket-user] Autocomplete - selecting (higlighting) first option by default.

2007-05-25 Thread Sean Sullivan
IMHO, it would be nice if Java programmers could control this behavior with a Java API. On 5/25/07, Dipu [EMAIL PROTECTED] wrote: At the moment with Wicket's auto complete list we need to scroll down to select an option from the Autocomplete list. It would be nice to have the first item

[Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-24 Thread Sean Sullivan
Hello, Is anybody using Wicket 1.3 beta 1 in a Websphere 6.x environment? I am running Websphere 6.0.2.13 and I'm having some trouble with my application. It appears that the WicketFilter is calling sendRedirect repeatedly. I am unable to view any of the pages in my application because the

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-24 Thread Sean Sullivan
Johan, My web context root is /wicketdemo and my application homepage is mounted as /home Here's what I see when I access the site from the command line (wget): wget -S http://dev.foobar.com/wicketdemo --08:08:47-- http://dev.foobar.com/wicketdemo = `wicketdemo' Resolving

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-24 Thread Sean Sullivan
I have an index.jsp file in the root of the WAR: jsp:forward page=/home / On 5/24/07, Johan Compagner [EMAIL PROTECTED] wrote: it seems that the home mount somehow does a redirect again to /home but then wicket again to /home/ so the question is who does that /home ? On 5/24/07, Sean

Re: [Wicket-user] Wicket 1.3 and WicketPortletServlet

2007-02-18 Thread Sean Sullivan
; } }; } }; } that does look simple johan On 2/16/07, Sean Sullivan [EMAIL PROTECTED] wrote: Are there any plans to convert the WicketPortletServlet to a filter in the wicket-1.x branch? http://svn.apache.org/viewvc/incubator/wicket/branches

[Wicket-user] Wicket 1.3 and WicketPortletServlet

2007-02-16 Thread Sean Sullivan
Are there any plans to convert the WicketPortletServlet to a filter in the wicket-1.x branch? http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/portlet/ - Take

Re: [Wicket-user] How can I have difference HomePage for difference role?

2007-02-08 Thread Sean Sullivan
Jonathan, How can I implement this using a security strategy? Do I need to implement my own strategy or does the wicket-auth-roles package take care of this automatically? Sean On 2/8/07, Jonathan Locke [EMAIL PROTECTED] wrote: if your home page is similar for different roles, you might

[Wicket-user] Size of the HTML response page

2007-02-05 Thread Sean Sullivan
I am building a web application with Wicket 1.3 and I want to be able determine the number of bytes in the HTML response. I know that I can inspect document.fileSize on the client, but what I'm looking for is to have access to this information on the server. Does Wicket's RequestCycle or

Re: [Wicket-user] Not sure how to use DatePicker component

2007-02-01 Thread Sean Sullivan
In my application, I implemented a custom IConverterFactory class and I extended Wicket's DateConverter class. Here's what I did for my Intranet application: * import* wicket.util.convert.IConverterFactory; * import* wicket.util.convert.IConverter; * import* wicket.util.convert.Converter; *

[Wicket-user] HTTP session expiration and Wicket pages

2007-01-31 Thread Sean Sullivan
I'm building an Intranet web application that will run in Websphere. In a nutshell, this is my situation: - Websphere has a 30 minute timeout for inactive sessions - users open their browser in the morning and expect to be able to use the application on and off during the day - users may

Re: [Wicket-user] HTTP session expiration and Wicket pages

2007-01-31 Thread Sean Sullivan
we are implementing the means to go near zero serverside state. However, we will again try to make it as easy as possible to go from full serverside state to minimal serverside state. * * source: http://www.theserverside.com/news/thread.tss?thread_id=34725* ** Regards, Sean * * On 1/31/07, Sean

Re: [Wicket-user] HTTP session expiration and Wicket pages

2007-01-31 Thread Sean Sullivan
PROTECTED] wrote: yes, 1.3 has support for stateless pages and stateless forms. but notice that by doing this you give up a lot of what makes wicket wicket -igor On 1/31/07, Sean Sullivan [EMAIL PROTECTED] wrote: Hello again, Will it be possible to have zero serverside state in Wicket 1.3

Re: [Wicket-user] Right-click context menu

2007-01-31 Thread Sean Sullivan
Yahoo UI has a nice context menu: http://developer.yahoo.com/yui/menu/#contextmenu http://developer.yahoo.com/yui/examples/menu/contextmenu.html It should be possible to wrap this menu as a Wicket component. Sean On 1/31/07, Bruce Fraser [EMAIL PROTECTED] wrote: Hi, Does anyone know

Re: [Wicket-user] Problem with cached HeaderContributor after upgrade from 1.2.3 to 1.2.4

2007-01-25 Thread Sean Sullivan
See: http://www.mail-archive.com/wicket-dev@incubator.apache.org/msg01808.html http://issues.apache.org/jira/browse/WICKET-188?page=all On 1/25/07, Ryan [EMAIL PROTECTED] wrote: I have been using a custom HeadearContributor to add css dynamically to each page. This setup was working great

[Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-23 Thread Sean Sullivan
Does Wicket 1.x have the ability to perform client-side form validation? I'm looking for something similar to Tapestry's client-side validation feature: http://tapestry.apache.org/tapestry4.1/usersguide/clientside-validation.html Cheers, Sean

Re: [Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-23 Thread Sean Sullivan
Tapestry does a very good job with client-side form validation. Perhaps there is code in the Tapestry repository that could be using in Wicket? BTW, these are the things that I like about form validation in Tapestry 4.1 1) client-side form validation 2) CSS class for invalid fields

Re: [Wicket-user] Excel to Table Example in Wicket

2006-08-30 Thread Sean Sullivan
I wrote a similar example using Jakarta POI and Wicket's AjaxTabbedPanel http://oscon2006.sourceforge.net/images/screenshot-excel-component.png http://oscon2006.sourceforge.net/xref/oscon2006/web/DisplayExcelPage.html http://oscon2006.sourceforge.net/xref/oscon2006/web/FileUploadPage.html

Re: [Wicket-user] Missing 1.2.x in Ibiblio Maven repository

2006-07-31 Thread Sean Sullivan
Look in the Maven 2 repository: http://www.ibiblio.org/maven2/wicket/wicket/ Jon Steelman wrote: Why aren't Wicket 1.2.0 1.2.1 in the Ibiblio Maven repository? Will you be putting it there? Thanks, Jon - Take

[Wicket-user] RadioChoice, default selection

2006-07-05 Thread Sean Sullivan
I am using the RadioChoice class in Wicket 1.2 import wicket.markup.html.form.*; RadioChoice radio = new RadioChoice(choice); ListString choices = new ArrayListString(); choices.add(a); choices.add(b); choices.add(c); radio.setModel(new

Re: [Wicket-user] RadioChoice, default selection

2006-07-05 Thread Sean Sullivan
Thanks. I changed my implementation: radio.setModel(new Model(a)); This is a whole lot simpler than the CompoundPropertyModel approach that I was using. (BTW, my form has only input field: the radio choice) Sean Levy, Jeremy wrote: You could just set the option in your model.