I'm working on an app written using spring & axis web services, now I
want to add server side authorization to the app, but I dont want to
add a line of code at the first of every method, so I decided to use
spring aop, as you know service objects are created outside spring
container, I wanted to know is this possible to intercept an object
that is created outside spring container? (without using aspectj
compiler) I've heared it could be done in spring 2?
We are using spring 1.2.4, have you had compatibility issues with
spring 2?(As you know spring 2 has backward compatibility with 1.x
versions.
And the last question, do you know a better way to do server side
authorization ?