Problem with Android and ajax?

2011-08-25 Thread PALMER, THOMAS C (ATTCORP)
We have a problem with a mobile site on an Android. Basically, we're updating select options via ajax with one option that should be selected after the update completes. On an iPhone this works fine and the selected option shows in the list as selected. On Android we get nothing in the dropdo

Re: quickstart with 1.5 build

2011-08-08 Thread Kaz C
aha, thanks. worked. On Mon, Aug 8, 2011 at 12:29 AM, Martin Grigorov wrote: > try just http://localhost:8080 > > On Mon, Aug 8, 2011 at 9:38 AM, Kaz C wrote: > > I'm trying to get going with quickstart on a 1.5 build off of trunk. > After > > svn co, and mv

quickstart with 1.5 build

2011-08-07 Thread Kaz C
it also seemed to start up jetty fine. However, when I try to access http://localhost:8080/myproject15 I get *HTTP ERROR 404 *Problem accessing /myproject15. Reason:* *Not Found have I missed a step in the setup, or is there anything else I can look into to find possible cause of this issue?

1.5 - wicket module build question

2011-08-07 Thread Kaz C
I checked out Wicket (all modules) from trunk and executed mvn install. Build was successful. So, if I check my local maven repository and look under .m2/repository/org/apache/wicket/wicket/1.5-SNAPSHOT shouldn't I see a wicket-1.5-SNAPSHOT.jar ? Currently this is what I see: $ ls maven-metadata-l

RE: trouble implementing 'mutually required' validator

2011-03-27 Thread PALMER, THOMAS C (ATTCORP)
uired' validator Try abstractformvalidator ** Martin 2011/3/26 PALMER, THOMAS C (ATTCORP) : > I've got a case (in Wicket 1.4.14) where I want to implement a 'mutually > required' validator on a FormComponent that contains a set of child form > fields.  If all are empty, it'

trouble implementing 'mutually required' validator

2011-03-26 Thread PALMER, THOMAS C (ATTCORP)
I've got a case (in Wicket 1.4.14) where I want to implement a 'mutually required' validator on a FormComponent that contains a set of child form fields. If all are empty, it's valid. But if any child has a value then all become required. My implementation (with the IValidator added to the pa

RE: Preventing session creation on abort?

2011-02-28 Thread PALMER, THOMAS C (ATTCORP)
. On Mon, Feb 28, 2011 at 1:50 PM, PALMER, THOMAS C (ATTCORP) wrote: > I've got a case where I want to abort request processing and redirect > before my session is constructed (since it's fairly expensive). I can > trigger the abort and redirect via my RequestCycle.onBegin

Preventing session creation on abort?

2011-02-28 Thread PALMER, THOMAS C (ATTCORP)
I've got a case where I want to abort request processing and redirect before my session is constructed (since it's fairly expensive). I can trigger the abort and redirect via my RequestCycle.onBeginRequest() impl by throwing a RedirectToUrlException. However, the abort processing in RequestCycle

A quick start application with multiple pages and navigation

2011-02-25 Thread Asankha C. Perera
Hi I am looking for a quick start Wicket example, that shows bread crumb navigation and a few pages.. Can someone point me to an example, or another open source project I could use as a reference thanks asankha -- Asankha C. Perera AdroitLogic, http://adroitlogic.org http

The component(s) below failed to render (BasePage components are not rendering)

2011-01-24 Thread Teddy C
Using the Wicket Phonebook as a base, I am having problem dispalyng the EditContactPage. To the BasePage I add user and role and a Session to save the login user and role. The listContactPage wich extends the BasePage works fine. The EditContactPage which also extends the Basepage, is mot able to

RE: Help with Wicket Adoption Numbers

2010-01-12 Thread Loritsch, Berin C.
which is why > the old saying goes "nobody ever got fired for buying IBM." same seems to > go for struts. an idiotic technology choice, but you won't get fired for > making the same idiotic choice everyone else is making. > > > Loritsch, Berin C. wrote: > >

Google analytics on home page slowing down access

2010-01-08 Thread Loritsch, Berin C.
Just an FYI, the call to google-analytics on the Wicket home page is causing the site to crawl as I have to wait for the connection to time out before I see anything (at least 30s). That is because the call is in the header, and it should be placed at the bottom of the section to avoid this probl

RE: Wicket session not threadsafe?

2010-01-08 Thread Loritsch, Berin C.
environment in true sense of teh word. As hardly 3-4 people test it and we never got into that situation. For live however there are 500+ users using it everyday. "no-cache" entry? I am bit sketchy on this one. Can you give an example? Thanks for ur help. Loritsch, Berin C. wrote: >

RE: Wicket session not threadsafe?

2010-01-08 Thread Loritsch, Berin C.
The session object is bound to the HttpSession, so it is as safe as Tomcat or whatever servlet container is running your application. Here are some things to consider that have bit me in the butt, and have nothing to do with your local setup: * Is that happening locally in your test environment

RE: Help with Wicket Adoption Numbers

2010-01-08 Thread Loritsch, Berin C.
"But why choose an inferior technology just because of its adoption numbers?" The pointy haired bosses that do this believe in their heart of hearts that if you choose the same technology everyone else is using that they can turn thinking developers for mindless drones. It has more to do with avo

RE: DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-08 Thread Loritsch, Berin C.
It's bookmarked pages that avoid new page creation isn't it? -Original Message- From: Matej Knopp [mailto:matej.kn...@gmail.com] Sent: Thursday, January 07, 2010 3:55 PM To: users@wicket.apache.org Subject: Re: DiskPageStore file increasing to max size by only refreshing a HomePage SetVe

RE: Tag Oriented Development

2009-12-29 Thread Loritsch, Berin C.
The good thing about standards is that there are so many to choose from. .Net is a standard, Java is a standard, PERL is a standard, JavaScript is a standard. As are CSS, HTML, etc. As we all know, just because something is a standard does not mean that it is good, fits the problem, or is impl

RE: Modal Popups and Forms

2009-12-29 Thread Loritsch, Berin C.
AJAX and forms highlight some issues with HTML forms in general. Unless you have declared a brand new form for your modal popup, and are absolutely sure that you are submitting that new form, you will be submitting the original form that was on the base page. Keep in mind that to the browser, the

RE: onSubmit() not entered (IE6 and IE7)

2009-12-16 Thread Loritsch, Berin C.
r 16, 2009 10:39 AM To: users@wicket.apache.org Subject: Re: onSubmit() not entered (IE6 and IE7) On Wed, December 16, 2009, Loritsch, Berin C. wrote: > When Javascript stops working on IE, no further Javascript calls will > work. Just to make sure you haven't run into this problem,

RE: onSubmit() not entered (IE6 and IE7)

2009-12-16 Thread Loritsch, Berin C.
>From a strict HTML perspective, the less you have in your form the better the page performs. From a few observations in debugging AJAX functionality that doesn't work on past projects (not Wicket related), you have to make sure that no Javascript exceptions are thrown at all. Basically, IE will t

RE: Modal Window Problems On Internet Explorer.

2009-12-15 Thread Loritsch, Berin C.
ur lovely java framewor >> "Wickets" >> is becoming oldfashion... >> >> Thank you very much guys!! >> >> >> bgooren wrote: >> > >> > I don't have this problem with the Modal Window, so my guess is that >> you >&g

Wicket Test Harness and HTTP objects

2009-12-08 Thread Loritsch, Berin C.
I discovered as I implemented the SessionListener to clean up user record locks that the WicketTester object does not behave as expected in regards to the HttpSession objects. I expected to have my MockHttpSession already configured with the application session object bound in the specified locati

RE: Session stealing with wicket-auth-roles

2009-12-02 Thread Loritsch, Berin C.
I too would like to know the Wicket answer. The problem is that JSESSIONID is how the Servlet container differentiates the session with the user. It's part of the spec since the beginning. Because it is well known and certain browsers (Firefox, representing over a third of browser clients) make

RE: It may be basic, but... Globally setting date styles for the application?

2009-12-01 Thread Loritsch, Berin C.
Angénieux Associé Clinigrid 5, avenue Mozart 75016 Paris, France +336 60 21 09 18 aangeni...@clinigrid.com Le 1 déc. 2009 à 18:57, "Loritsch, Berin C." a écrit : > It appears that the newConverterLocator() route is about right, but I > have a slight issue between the Hibernate

RE: It may be basic, but... Globally setting date styles for the application?

2009-12-01 Thread Loritsch, Berin C.
ssage- From: Loritsch, Berin C. [mailto:berin.lorit...@gd-ais.com] Sent: Tuesday, December 01, 2009 11:54 AM To: users@wicket.apache.org Subject: It may be basic, but... Globally setting date styles for the application? It may seem rather basic, but I'm looking for a reasonably simple way

It may be basic, but... Globally setting date styles for the application?

2009-12-01 Thread Loritsch, Berin C.
It may seem rather basic, but I'm looking for a reasonably simple way to globally set how the application displays dates. On rails, it was as simple as setting that information in the l10n/i18n resource files. I've been googling and trying to find the answer in the "Wicket in Action" book, but it

RE: onclick auto-added to

2009-11-30 Thread Loritsch, Berin C.
Using Wicket 1.4.3. Since things are working right now without the tag, I'm going to leave it like that. -Original Message- From: bgooren [mailto:b...@iswd.nl] Sent: Thursday, November 26, 2009 6:26 AM To: users@wicket.apache.org Subject: RE: onclick auto-added to

SessionListeners and Wicket?

2009-11-25 Thread Loritsch, Berin C.
I have a requirement to have a queue of items that need work with a pool of people working on them. I need to lock the record while someone is working on it. Once the item is processed it will be removed permanently from the list. Occasionally users open an item and then close it. That part I'v

RE: onclick auto-added to

2009-11-25 Thread Loritsch, Berin C.
ComponentInstantiationListener. Bas Loritsch, Berin C. wrote: > > I have my HTML header links for CSS and JavaScript surrounded in a > <wicket:link/> block so that it can resolve the context name, etc. > Problem is that it causes unexpected and peculiar behavior: > >

onclick auto-added to

2009-11-24 Thread Loritsch, Berin C.
I have my HTML header links for CSS and JavaScript surrounded in a block so that it can resolve the context name, etc. Problem is that it causes unexpected and peculiar behavior: Becomes Which is invalid markup, much less causing errors for me. How do I get rid of the onclick attrib

RE: Adding markup to ListView containing tag?

2009-11-24 Thread Loritsch, Berin C.
enderondomreadyjavascript("$(".fancyitem.whatever_jquery_thing_you_want"); } } -igor On Mon, Nov 23, 2009 at 2:41 PM, Loritsch, Berin C. wrote: > What I would like is to be able to have markup like this: > > >  fancy markup here >  fancy markup here > > > Along

RE: Can @SpringBeans be optional?

2009-11-24 Thread Loritsch, Berin C.
t's a "design pattern" called the "Null Object" pattern. On Mon, Nov 23, 2009 at 12:38 PM, Loritsch, Berin C. wrote: > Technically speaking from the Dependency Injection koolaid doctrine, the > best way to solve the problem is to have a "null" implementa

Adding markup to ListView containing tag?

2009-11-23 Thread Loritsch, Berin C.
What I would like is to be able to have markup like this: fancy markup here fancy markup here Along with this, to provide javascript effects on hover/focus for the individual items in the list. The problem is that I can't do this with Wicket easily. I basically get markup like this: fanc

RE: Can @SpringBeans be optional?

2009-11-23 Thread Loritsch, Berin C.
Technically speaking from the Dependency Injection koolaid doctrine, the best way to solve the problem is to have a "null" implementation of your service that does nothing. The code you are writing doesn't have to have complex if/else logic as it's able to assume the service is always there. The

Validating markup on non bookmarkable pages?

2009-11-20 Thread Loritsch, Berin C.
I'm using the TotalValidator plugin combined with a local basic validator installation. It's a great tool to keep me honest with the accessibility and standards compliant code. However certain pages that aren't linked with a BookmarkableLink can't be validated with the tool. I end up getting an e

RE: Generating standards compliant responses

2009-11-20 Thread Loritsch, Berin C.
, November 20, 2009, Loritsch, Berin C. wrote: > I've set up in my SiteTemplate base class a call to set the content type > for the response, however it is not making it to the browser.  Any > ideas?  When I inspect the request headers and run the site validator > against my page t

Generating standards compliant responses

2009-11-20 Thread Loritsch, Berin C.
I've set up in my SiteTemplate base class a call to set the content type for the response, however it is not making it to the browser. Any ideas? When I inspect the request headers and run the site validator against my page the server content type is set to "text/html" even though I've told it ot

RE: Resolving image locations

2009-11-20 Thread Loritsch, Berin C.
Never mind. The problem was using Image instead of ContextImage. I guess that's the danger of relying on type-ahead to suggest the right thing. -Original Message- From: Loritsch, Berin C. [mailto:berin.lorit...@gd-ais.com] Sent: Friday, November 20, 2009 1:23 PM To:

Resolving image locations

2009-11-20 Thread Loritsch, Berin C.
I'm using the Wicket Image object, and I'm having a hard time ensuring that it resolves properly. I have a base class to set up the UI template for the site, including the logo image. I added a new page in a child package, and as a result the Image declared in the base class is resolving relative

Posting A Form To NonWicket

2009-11-20 Thread Balaji C
I've a wicket form with input elements. I would like to post this form to a non-wicket url. Is it possible to post this form from submit event of wicket button? I google and couldn't find any clear solution. Any help is appreciated. If any other alternative, please let me know. Thanks.

RE: wicket + jdbc template app

2009-11-19 Thread Loritsch, Berin C.
DBCP and C3P0 are implementations of the pooled DataSource interface, so all you have to do is bind them to JNDI. Tomcat and other Servlet container vendors have instructions on how to do this. Inside your code, you access it through the JNDI API which looks up the pooled datasource. Do be sure

RE: Spring/Wicket/Hibernate testing driving me banana nuts

2009-11-18 Thread Loritsch, Berin C.
native for that filter in your test code. Eelco On Tue, Nov 17, 2009 at 4:26 PM, Loritsch, Berin C. wrote: > Hmm, OK attachments are stripped here.  Having gone back up through the stack > trace, WicketTester extends BaseWicketTester which then extends > MockWebApplication.  Essentiall

RE: Spring/Wicket/Hibernate testing driving me banana nuts

2009-11-17 Thread Loritsch, Berin C.
al Message- From: Loritsch, Berin C. [mailto:berin.lorit...@gd-ais.com] Sent: Tuesday, November 17, 2009 4:15 PM To: users@wicket.apache.org Subject: RE: Spring/Wicket/Hibernate testing driving me banana nuts I've got the part that injects a Spring WebApplicationContext into the Wicke

RE: Spring/Wicket/Hibernate testing driving me banana nuts

2009-11-17 Thread Loritsch, Berin C.
ests. this application does not install the SpringComponentInjector and so @SpringBean has no effect. you should either give wickettester an instance of your actual application class, or create a mock one that installs springcomponentinjector. -igor On Tue, Nov 17, 2009 at 1:00 PM, Loritsch, Berin

Spring/Wicket/Hibernate testing driving me banana nuts

2009-11-17 Thread Loritsch, Berin C.
<> I initially had a setup that worked with both a Web context and a JUnit context. The problem was the amount of hand coding and adjusting of the Spring context the approach needed. I finally got the Spring's transaction interceptor working with the auto-wiring (the key is using an interface).

RE: Wicket + Spring + Hibernate - Wicket-In-Action

2009-11-17 Thread Loritsch, Berin C.
I'm not sure the purpose of the interceptor, but until you have a need to extend and use it, you can use the org.hibernate.EmptyInterceptor class instead of creating your own. I have had no problems with using that class. -Original Message- From: Jeffrey Schneller [mailto:jeffrey.schnel..

SpringWicketTester code (tested with Wicket 1.4 and spring-wicket)

2009-11-12 Thread Loritsch, Berin C.
import javax.servlet.ServletContext; import org.apache.wicket.protocol.http.MockServletContext; import org.apache.wicket.protocol.http.WebApplication; import org.apache.wicket.util.tester.WicketTester; import org.springframework.web.context.WebApplicationContext; import org.springframework.web.con

RE: Wicket Spring API docs?

2009-11-12 Thread Loritsch, Berin C.
It's fairly small. I can include it in an email. If I throw it on the wiki where would be the best place? -Original Message- From: Pierre Goupil [mailto:goupilpie...@gmail.com] Sent: Thursday, November 12, 2009 4:02 PM To: users@wicket.apache.org Subject: Re: Wicket Spring API docs? H

RE: Wicket Spring API docs?

2009-11-12 Thread Loritsch, Berin C.
com] Sent: Thursday, November 12, 2009 3:42 PM To: users@wicket.apache.org Subject: Re: Wicket Spring API docs? your IDE is much better at browsing and searching for classes then a javadoc online :) -igor On Thu, Nov 12, 2009 at 12:38 PM, Loritsch, Berin C. wrote: > I did, but that doesn'

RE: Wicket Spring API docs?

2009-11-12 Thread Loritsch, Berin C.
rsday, November 12, 2009 3:16 PM To: users@wicket.apache.org Subject: Re: Wicket Spring API docs? dont you use "attach sources" in your IDE? -igor On Thu, Nov 12, 2009 at 12:09 PM, Loritsch, Berin C. wrote: > Where can I find the wicket-spring module API docs?  It's not clear t

Wicket Spring API docs?

2009-11-12 Thread Loritsch, Berin C.
Where can I find the wicket-spring module API docs? It's not clear to me from the website.

FeedbackPanel custom title "Please fix the following:"

2009-05-16 Thread Paul C
Any recommendations on adding a title or header for error messages? For example, I need the string "Please fix the following:" to be above the error messages in the . Do I need to extend the FeedbackPanel to add a title? Thanks for any suggestions!

RadioGroup and nested ListView

2009-04-23 Thread c c
Hi all, I am new at this so please be gentle. I would like to use a RadioGroup to select one "element" among a list of elements organized in groups. I have two nested ListView, the outer looping over the groups, the inner one looping over the elements of each group. Each element of the inner listv

Re: Why are we top-posting...

2009-03-20 Thread C. Bergström
A: Because it messes up the order in which people normally read text. Q: Why is it such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? - To unsubscribe, e-mail: users-unsubscr...@wicket.a

Re: GSoC ideas for 09

2009-02-26 Thread C. Bergström
Martijn Dashorst wrote: Martijn Thanks Martijn.. You've shown me what a good catalyst and community leader you finally are.. It's not about my bidding.. I push for gsoc.. my points are valid.. others have brought up other good points.. and yet when I push in general you make it personal. :

Re: GSoC ideas for 09

2009-02-26 Thread C. Bergström
btw.. are any of the core devs interested or willing to mentor? Once again it seems a lame excuse to say you're too busy or the various other things when this could both give the project good pr and possibly add more people who contribute to the framework.

Re: GSoC ideas for 09

2009-02-25 Thread C. Bergström
Peter Thomas wrote: On Wed, Feb 25, 2009 at 1:26 AM, "C. Bergström" wrote: Hi Everyone! A year ago I bugged dashorst about why Wicket didn't participate in the 08 GSoC.. This year I've been brainstorming on ideas and want to see what others think could be useful

GSoC ideas for 09

2009-02-25 Thread C. Bergström
Hi Everyone! A year ago I bugged dashorst about why Wicket didn't participate in the 08 GSoC.. This year I've been brainstorming on ideas and want to see what others think could be useful projects for Wicket. Thanks ./Christopher

How to Show Error Of Page In Deployment MOde

2009-02-24 Thread carlo c
hi everyone, I know that this might sound a little strange. but i need to be able to show the error of the system even during deployment mode. I have to show them the stacktrace. The Thing that's preventing us from using development mode is that the application always gets an outofmemoryerror

Re: Wicket and Javascript framework integration

2008-12-23 Thread T C
I understand all integrations may be different but has anyone posted a "recipe" for how to create an integration jQuery, i.e., what is required for creating a behavior? Thanks, /tc From: Jeremy Thomerson To: users@wicket.apache.org Cc: fredy.wij...@gmail.c

Re: Comet and Wicket

2008-05-06 Thread C. Bergström
Johan Compagner wrote: They are busy making it a standaard in the next servlet spec Jetty 7 will use servlet spec 3.0 (which is still in draft) Anyone feeling daring can test it. http://docs.codehaus.org/display/JETTY/Downloading+Jetty ./C

Re: RTFM messages

2008-05-01 Thread C.
of how passionate Wicket devs are about quality not only in code but documentation. Tact sold separately ./C > > [1] http://www.catb.org/~esr/faqs/smart-questions.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Using a static image map

2008-04-14 Thread Martijn C. Vos
Cristina wrote: > Hello, > > I've defined a simple HTML image map from a business process diagram: > > > > > href="Module01.html" title="Subprocess 1" /> > href="Module02.html" title="Subprocess 2" /> > href="Module03.html"

RE: Changing Wickets default styles

2008-04-02 Thread Martijn C. Vos
Nino Saturnino Martinez Vazquez Wael wrote: > Eeek TDC(yousee), which robs me of a montly fee for television! > > This might not be the rigth forum to ask CSS questions and is > sort of offtopic. But usually when something works in IE and > doesnt in firefox it means that IE breaks standard > comp

Re: how to resolve jsessionid for the first time in the url

2008-03-27 Thread C.
l the cookie is set it has to put it on the URL... (From what I've observed from tomcat.. ) On the other hand I think other app containers do a redirect to test this and so it's a bit more transparent.) ymmv so deploy under

Re: Wicket in Action - 1.4 pending release

2008-03-22 Thread C.
n imagine it would be a huge > effort to update it :( You must want Martijn or Eelco to really hurt you huh? ;) I just want to congratulate them on all the hard work thus far... ./C - To unsubscribe, e-mail: [EMAIL PROTEC

Re: Our new and shiny Wicket site!

2008-02-27 Thread C.
hink this sort of enthusiasm is great, but a wiki page 'sites using wicket' has been created for this reason. I didn't read the site, but [1] is especially slow. I'd definitely profile that page and make sure you're both using caching and that your cache is tuned p

Re: ant-based example project?

2008-02-22 Thread C.
you *really* want to use ant.. iirc mvn ant:ant Good luck ./C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: annotated class

2008-02-14 Thread C S
Here's another example of what to put in WEB-INF/web.xml contextConfigLocation classpath:applicationContext.xml classpath:applicationContext-acegi-security.xml Then put your appCon

Re: Problem on undeploy

2008-02-14 Thread C S
Have you tried the antiLocking options (antiJARLocking and antiResourceLocking)? http://tomcat.apache.org/tomcat-5.5-doc/config/context.html I haven't but they seem to speak to your problem with the left over jars. -- View this message in context: http://www.nabble.com/Problem-on-undeploy-t

Re: Block second click

2008-02-11 Thread C.
Haven't read the entire thread, but based on a best guess.. Would this be helpful in some way? http://blogs.webtide.com/gregw/2006/10/18/116112750.html Throttling filter http://jetty.mortbay.org/xref/org/mortbay/servlet/ThrottlingFilter.html

Re: wicket-tools-extjs

2008-02-06 Thread C.
27;m pretty new to wicket so please comment on the design with any > suggestions of how I could improve it. Also if there is anyone who is > interested in helping out I would love to have the support. Hi What's up with your site using PHP and hosting a Wicket project! :

Re: Any Example or doucument of Rich Edit, such as YUI,FCK

2008-01-25 Thread C S
Have you looked at the wicket stuff project for TinyMCE? The example code has all the documentation you should need. Mead-2 wrote: > > Hello All, > Any Example or doucument of Rich Edit, such as YUI,FCK > How to integration with wicket? > There is so little doc about that's > thanks to pro

Re: Security violations and "ERROR: filterStart" with Tomcat deployment on Debian Etch

2008-01-21 Thread C.
On Mon, 2008-01-21 at 12:28 +0100, Johan Compagner wrote: > Completely not working is a great security fix yes... > If that distro is still in 5.5 mode then i question there updates Here's the wishlist item for why there isn't currently 6.x in deb etch http://bugs.debian.org/cgi-bin/bugreport.cg

Re: Security violations and "ERROR: filterStart" with Tomcat deployment on Debian Etch

2008-01-21 Thread C.
his original email and wonder why deb is still on 5.5.20-2etch1 when the apache site lists 5.5.25 as current I have no idea. ./C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Security violations and "ERROR: filterStart" with Tomcat deployment on Debian Etch

2008-01-21 Thread C.
On Mon, 2008-01-21 at 11:52 +0100, Johan Compagner wrote: > Take then the latest 6 > 5 is getting pretty old I know from first hand experience with a couple Linux distros are still on 5 as it's 'stable'. More to the point is that they probably can't support slotted upgrades where half of the com

Re: Security violations and "ERROR: filterStart" with Tomcat deployment on Debian Etch

2008-01-21 Thread C.
> > Any ideas on how to better configure Tomcat? Not at the moment. The best I can offer is give me about a week and I'll see if I can get deb etch installed in vmware and have a look. Good luck, ./C ---

Re: Wicket blog software

2008-01-17 Thread C.
On Thu, 2008-01-17 at 17:38 +0100, Maurice Marrink wrote: > On Jan 17, 2008 5:12 PM, Nick Heudecker <[EMAIL PROTECTED]> wrote: > > This is something I've wanted to write as well. I have a collection of > > features I want it to support including: > > > >- Support for multiple roles (editor,

Re: Wicket blog software

2008-01-17 Thread C.
nd the source.. That floating around anywhere? Thanks ./C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Wicket blog software

2008-01-17 Thread C.
On Thu, 2008-01-17 at 16:49 +0100, Johan Compagner wrote: > Start writing one! :) I wouldn't even know what I need.. Login. with TinyMCE.. which ends up on a repeater spitting out some content.. template it.. cache it and add an RSS feed.. I'd be more apt to go hunting and port a UI and other s

Wicket blog software

2008-01-17 Thread C.
Anyone started or have some blog software they have donated or are willing to? I'd like to start blogging again, but I'd rather host my own blog, which should of course be Wicket based. Failing this I'm open to recommendations about something to port over

RE: Type safe roles for AUTH-ROLES?

2008-01-14 Thread C.
quot; authorization > strategy? http://wicketstuff.org/confluence/display/STUFFWIKI/Wicket-Security +Examples Sources are available here.. https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-security-examples maybe this is more in the ballpark of what yo

WAS: Shout more about security advantages of Wicket? (hdiv, modsecurity, WAFs.. )

2008-01-14 Thread C.
to validate input and provide feedback to the user. Just some random thoughts which I hope to expand on more in the future. I'm curious if anyone has tried to get Wicket to play nicely with hdiv or what servlet security filtering/alerting options are available. Cheers, ./C [1] htt

Re: Ajax enabled radiogroup

2008-01-14 Thread C.
); I've yet to look at all the post, but why do I feel there should be an enum floating around.. ./C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: London Wicket Event - Schedule/Bigger Room

2008-01-12 Thread C.
Sign-up link so those interested have it handy. http://jweekend.co.uk/dev/LWUGReg - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: DiskPageStore improvements for 1.3.1

2008-01-12 Thread C.
On Sat, 2008-01-12 at 14:12 +0100, Matej Knopp wrote: > On Jan 12, 2008 1:04 PM, C. Bergström <[EMAIL PROTECTED]> wrote: > > > > > > On Thu, 2008-01-10 at 13:35 +0100, Matej Knopp wrote: > > > > > > Ideally, NodeB ought to "catch up" when it

Re: DiskPageStore improvements for 1.3.1

2008-01-12 Thread C.
transparent clustering support to wicket will be a multi-phased roll-out. Stable single node under duress two node cluster N node.. and then increase by a factor of 10 working out bottlenecks as we go.. Focusing on just the two-no

Re: DiskPageStore improvements for 1.3.1

2008-01-10 Thread C.
r own network > connection, node discovery, blah blah blah. loses a bit of appeal. > > -igor > > I'm intending to stir the pot a bit, but why are we kicking this further? Igor is absolutely right.. For something simple, currently in the linux kernel try dr

Re: JMeter load testing and Ajax - is it possible

2008-01-08 Thread C.
bsequent steps, but I don't need this > now, maybe later. If you come up with some interesting numbers which may be reproducible you should certainly blog or post your results. I've been on a similar tangent lately. Success, ./C ---

Re: JMeter load testing and Ajax - is it possible

2008-01-08 Thread C.
nchmarking [1] you can find the code here [2] and maybe with some hacking get it to do what you want. imho this has to be less painful than anything involving jmeter. (netbeans coincidentally has some built-in jmeter support, but doubt that will help this case as well.) Sorry I can't be mor

Re: wicketstuff.org is down

2007-12-31 Thread C.
cket? Wicket is a web framework.. Before I jump too far I do have to assume though that part of the infra is under Apache control? Thanks ./C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: OutOfMemoryError: Java heap space - AppendingStringBuffer

2007-12-30 Thread C.
f it's straight forward enough can you make a quickstart reproducing this? I'm doing some performance profiling of wicket (cpu/memory) and it or may not be a use case to expose places we can optimize. Cheers, ./C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Serialized pages location on the disk ?

2007-11-30 Thread C.
ea. Well. the really quick and cheap way to get around this. (for a 2 node cluster) DRBD http://www.drbd.org/ You want to scale out past that and the changes required become a bit more interesting. Thanks everyone for a great event.. ./C

Re: Amsterdam Meetup: request for proposals

2007-11-20 Thread C.
s subscribed so I'll send you both an email off list so you two can coordinate times maybe? Thanks ./C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Finalizing details for Amsterdam, Netherlands Wicket Meetup Event Nov 30th

2007-11-20 Thread C.
Location: Amsterdam, Felix Meritis building (www.felixmeritis.nl) Next meetup: Friday November 30 I've been loosely following this since the beginning and it's getting closer to that time we all need to start scheduling this with work.. So some general questions about finalizing the details.. Ple

Re: Wicket meetup (the netherlands) ideas

2007-11-06 Thread C.
ime. Not sure how interested people will be in this, but ping me #wicket / #terracotta or email in case you have ideas or would like your app as part of the demo.. (no promises) ./C - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Apache Wicket 1.3.0-beta4 released!

2007-10-12 Thread C. Bergström
the mirrors pick this up as it's still a missing artifact [1] at this point.. [1] http://repo1.maven.org/maven2/org/apache/wicket/wicket/ ./C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Wicket, IDEA and Winstone...

2007-09-27 Thread C. Bergström
Martijn Dashorst wrote: > Priceless! The best reason [1] why one would ever create a servlet > container: to embarrass your friend. > > Martijn > > [1] http://winstone.sourceforge.net/#whyCalled > > ha ha hahahahahah.. that's too funny.. With friends like that.. who needs Winstone ;) -

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-16 Thread C. Bergström
tablish dates.. Getting a link from the news/buzz/appropriate page to the event may help give it even more exposure.. Last quick idea and then I'll shut up.. /introduction.html has an abstract (list?) of reasons why you should use Wicket.. Well.. it's missing one of

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-13 Thread C. Bergström
kers/attendees in the future. I think even if I don't the full benefit just going to be part of the community is interesting. It's great to see a core little community forming. Greetz ./C - To unsubscribe, e-ma

  1   2   >