Hi Rene, Some answers...
* What experience do you have regarding performance of wicket applications? We're still in development, but so far performance hasn't been an issue. * Is there a way to cluster wicket applications? Yes. Same way you would cluster any webapp. Wicket also has a number of different clustering strategies available. * Does wicket use any proprietary, non-standard technologies? Wicket core depends on various OSS libraries, all commercial friendly (ASL compatible). * How does wicket care about session hijacking or sql injection? Session hijacking - not an expert on this, but if I understand correctly, this is mostly a JavaScript concern, so just be careful when you write/use Javascript components. SQL Injection - In general, Wicket's architecture makes it harder for these kinds of attacks because state is kept on the server side (as opposed to URL parameters). That being said, this really has more to do with the persistence layer that you use. So long as you shy away from assembling your own SQL query strings you should be OK. * Is there an easy way to implement SSO? Internal SSO between webapps is possible via the Servlet container, provided all webapps run in the same container. If that doesn't apply to you, you should be able to write a custom authorization strategy for Wicket. * Can I integrate wicket applications into any content management system? Depends on what you want to do here. That being said, there are several native Wicket CMS systems under development. René Samselnig wrote: > > Hi people, > > currently I'm evaluating wicket as the future framework in our company. I > already found a lot of information but still there is some missing. I hope > you can help me out answering these questions. > > * What experience do you have regarding performance of wicket > applications? > * Is there a way to cluster wicket applications? > * Does wicket use any proprietary, non-standard technologies? > * How does wicket care about session hijacking or sql injection? > * Is there an easy way to implement SSO? > * Can I integrate wicket applications into any content management system? > > If you have an answer to any of these questions don't hesitate to ignore > the others - any input is welcome! > > Thanks in advance, > René > -- View this message in context: http://www.nabble.com/Evaluating-Wicket-tp15306535p15309004.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
