Hi,
We have a J2EE webapp deployed to JBoss. This webapp is used for authentication purposes.
Now we would like to have other webApps that are not written in java to communicate and authenticate against this webapp. The reason we want to do this is: Suppose we have a small webapp that does simple task for the user. This webapp could be implemented purely with the plain html stack plus a little bit of javascript, hence we would like to not introduce the complexity of j2ee into it.
Is there any good way of doing this both secured and efficiently?
More Info: The webapp used for authentication is a huge J2EE program with other functionalities. We'd like to slowly get rid of it, and part of this process involves moving some of its functionalities outside the stack.
At this phase, we are leaving the authentication module as is, and start with other parts of the program (hence why we don't want to bundle these small webapps with the main program and uses j2ee).