Re: spring application in sling

2010-09-06 Thread Felix Meschberger
Hi, Not having tested it, but you might want to consider the Pax Web project [1]. The have both an OSGi HttpService implementation and an extender based on Jetty 6. Regards Felix [1] http://wiki.ops4j.org/display/paxweb/Pax+Web On 03.09.2010 17:03, Victor Taranenko wrote: > I think native sprin

Re: spring application in sling

2010-09-03 Thread Justin Edelson
I checked their Tomcat bundle and you're right. I stand corrected. That's IMHO bizarre. You could probably create some weird hybrid between the Felix Jetty HttpService bundle and Spring's Jetty bundle. Last year, I wrote an implementation of Spring's web extender which sits on top of HttpService,

Re: spring application in sling

2010-09-03 Thread Victor Taranenko
I think native spring dm web extender not imlements OSGi HttpService interface, so it is not good for a sling framework. 2010/9/3 Justin Edelson > If you wanted to use Spring DM's web extender, you could simply remove > the Felix HttpService implementation and replace it with one of the > implem

Re: spring application in sling

2010-09-03 Thread Ruben Reusser
thanks for all the help - I was hoping to do a bit more, for example use sling for the view of the application and spring to do the rest. Seems a bit more complex than I hoped, maybe a conversion of the app into sling is the better approach here. I'll keep you guys posted on what I end up with

Re: spring application in sling

2010-09-03 Thread Justin Edelson
If you wanted to use Spring DM's web extender, you could simply remove the Felix HttpService implementation and replace it with one of the implementations from SpringDM. I have not done this myself, but I believe it would work. Justin On 9/2/10 11:59 PM, Victor Taranenko wrote: > Hi Ruben. > Abo

Re: spring application in sling

2010-09-03 Thread Bertrand Delacretaz
Hi, On Fri, Sep 3, 2010 at 1:31 AM, Ruben Reusser wrote: > ...I'd like to run a spring application within sling - > before I set out and try it, I thought I check here on the list to see if > somebody already tried this or not. Any pointers would be appreciated See also http://dev.day.com/co

Re: spring application in sling

2010-09-02 Thread Victor Taranenko
Hi Ruben. About few weeks ago I've successfuly integrated spring application with Sling framework through Spring Dynamic Modules. If you want use only spring framework core libraries, i think that there are should no any problems. But if you want to user Spring-MVC inside Sling you need to do some

Re: spring application in sling

2010-09-02 Thread Ian Boston
Hi, I think it rather depends on what is in the Spring Application, and which version of Spring. If its a late version of Spring and already works with OSGi then there is no reason why it should not work with Sling, which uses Felix as its OSGi container. However, If it hasn't worked in OSGi a

spring application in sling

2010-09-02 Thread Ruben Reusser
hi there, got an odd question - I'd like to run a spring application within sling - before I set out and try it, I thought I check here on the list to see if somebody already tried this or not. Any pointers would be appreciated. Thanks Ruben