views:

253

answers:

3

Does anyone have a recommendation about web service security architecture in Java (preferably under JBoss)? Any recommended reading?

I want to expose a fairly rich web service to the world but the data are sensitive and it requires authentication from the current client (Flex), accessed via RPC. I definitely do not want any server-side session state.

What's the best way to go about implementing security through web services in Java/JBoss and where can I read about it?

+1  A: 

For web services security in JBoss, I would start by reading 8.4 WS-Security of the JBossWS User Guide.

Eric Weilnau
+2  A: 
Alan