This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
how to access secure web services method from a client java file. i used to create Client Jar with Apache Axis1_4
Thanks in advance
Kalai.
Lester Burnham
Rancher
Joined: Oct 14, 2008
Posts: 1337
posted
0
What does "secure" mean - SSL? Basic authentication? WS-Security authentication? Something else?
kalaiyarasan sivaprakasam
Greenhorn
Joined: Aug 17, 2009
Posts: 29
posted
0
yes, SSL only
thanks
Kalai.
Lester Burnham
Rancher
Joined: Oct 14, 2008
Posts: 1337
posted
0
Using SSL doesn't have much to do with web services per so, and more with properly setting up the client and server. The rough steps are: 1) SSL-enable the server, 2) install the server certificate in the client JRE, 3) use an HTTPS URL instead of an HTTP URL.
Note that SSL is outdated for encrypting web services, though. These day, the proper way to do that is to use WS-Security (which Axis' Rampart module implements).