Currently I am using Axis 1.3 for Webservices. I too need information about Webservice security with Apache Axis. Help me if you have solved the ways of implementing security.
Security has 2 parts Authentication & Authorization. There are different ways of doing Authentication, but the most simple & secure way is to enable SSL for Axis servlet. For Authorization you can use Handlers. Handlers are like servlet filter. You can read the SOAP message before it is reached to ultimate endpoint and apply Authorization rules.
Amutha Ramesh
Greenhorn
Joined: Oct 04, 2006
Posts: 6
posted
0
Thankyou Rajneesh and Ashkrit for your useful information regarding security with Axis.
So
For Authentication - enabling SSL for Axis servlet For Authorization - To use Handlers.
Since I am new to Axis I wish to know what would be the differnce between these two.
For Authorization do we need to use the classes from the below package
org.apache.axis.handlers
Could you please explain me little more.
With Regards, Amutha
Ashkrit Sharma
Greenhorn
Joined: Oct 05, 2006
Posts: 7
posted
0
You can get some sample implementation from samples/handler folder of axis 1.4 installation. Yopu will get fair idea about that .