Re: wicketstuff-rome and authentification.

2008-02-18 Thread Murat Yücel
My feed was a shared resource just like the wicketstuff-rome example. I have changed it to be a page, so now i can add wicket authentification. http://www.jroller.com/wireframe/entry/wicket_feedpage /Murat 2008/2/15, Maurice Marrink <[EMAIL PROTECTED]>: > > Why not use a filter? > Wicket uses the

Re: wicketstuff-rome and authentification.

2008-02-15 Thread Maurice Marrink
Why not use a filter? Wicket uses them too. I have absolutely no clue how wicketstuff-rome or rss for that matter works but it looks like they are using a regular wicket page. So the question is what do you want? i can think of the following solutions, but there are probably some more i haven't tho

Re: wicketstuff-rome and authentification.

2008-02-15 Thread Murat Yücel
Hi Maurice Can you point me in the right direction? What I need is the following. http://localhost:8080/rssfeed?username=admin&password=12345678 The username and password should be validated against the database and if it is correct the feed should be generated. I can of course do this with a fi

Re: wicketstuff-rome and authentification.

2008-02-14 Thread Nino Saturnino Martinez Vazquez Wael
It would be really cool to have such a feature.. Im, thinking on wicket-auth here.. Ryan Sonnek wrote: you can mount the wicket rss feed as a "bookmarkable url" and use a filter to ensure security. Not sure if wicket has the concept of "securing application resources" currently built in? On T

Re: wicketstuff-rome and authentification.

2008-02-14 Thread Maurice Marrink
For swarm 1.3.1 i am working on this. It allows you to use the same authorization / authentication mechanism as your wicket app. in effect the policy files. You can try it out by letting your pom get the latest 1.3-SNAPSHOT. Some feedback is welcome. Maurice On Thu, Feb 14, 2008 at 5:03 PM, Ryan

Re: wicketstuff-rome and authentification.

2008-02-14 Thread Ryan Sonnek
you can mount the wicket rss feed as a "bookmarkable url" and use a filter to ensure security. Not sure if wicket has the concept of "securing application resources" currently built in? On Thu, Feb 14, 2008 at 9:55 AM, Murat Yücel <[EMAIL PROTECTED]> wrote: > Hi All > > I have started using the

wicketstuff-rome and authentification.

2008-02-14 Thread Murat Yücel
Hi All I have started using the wicketstuff-rome project to generate rss feed. Before this was just done in a servlet. The servlet would check the parameters submitted. If they were valid then the rss feed would get generated. The parameters are username, password. Is it possible to add authentif