[Lift] Re: Lift's servlet/filter chain when handling non-Lift resources

2009-11-14 Thread Vesa
Hi, Thanks for this addition, I just bumped into a similar problem and found solution immediately from here! - Vesa On 5 marras, 01:18, David Pollak feeder.of.the.be...@gmail.com wrote: What about: LiftRules.liftRequest.append {   case Req(other_stuff :: _, _, _) = false } If you've

[Lift] Re: Lift's servlet/filter chain when handling non-Lift resources

2009-11-04 Thread AndrewM
Hi, I went through some similar troubles when integrating an Axis2 based web service in my Lift app. Adding the following to Boot.scala seemed to get things working (for requests to /services/*): // allow requests for Axis2 to pass straight through the LiftFilter

[Lift] Re: Lift's servlet/filter chain when handling non-Lift resources

2009-11-04 Thread ben
Thanks for the reply Andew. That does indeed work, cheers. I googled and googled and googled, and then thought bx to it, I can get around this. Good waste of an afternoon ! My Google skills - 0 Liftweb group list - 1 ! --~--~-~--~~~---~--~~ You received this

[Lift] Re: Lift's servlet/filter chain when handling non-Lift resources

2009-11-04 Thread ben
Just a note to the committers if they read this : I did find it really hard to work out how to get this working, just couldn't find anything on google. I also looked at the LIftRules source code, and just couldn't see anything obvious. I just altered LiftRules.scala on my local version of

[Lift] Re: Lift's servlet/filter chain when handling non-Lift resources

2009-11-04 Thread David Pollak
What about: LiftRules.liftRequest.append { case Req(other_stuff :: _, _, _) = false } If you've got a bunch of different paths: LiftRules.liftRequest.append { case Req(other_stuff :: _, _, _) = false case Req(other_path :: _, _, _) = false case Req(api_stuff :: _, _, _) = false case