Developing a secure WS client to use Axis2 web service with the Rampart WS security module?

I have an Axis2 webservice secured with Rampart. I want to develop secure clients for it, preferably JAX-WS. I've tried many tutorials, but they are so closed that they are related to each other, for example including the Axis2 client side libraries. The client should be sufficiently independent of the WS service infrastructure as the service can be used with .NET clients or even PHP clients.

Thanks in advance...

+1


source to share


1 answer


As I understand it, you would like to be able to pipe the policy defined for your Rampart secure web service into your JAX-WS client.

It should be doable. As you say, the idea is to be able to execute various client and server technologies, standardized around WSDL ...

We're just just getting into it - so I don't have the knowledge for you.

But I would think that you could copy the policy information for your wall on the server in the services.xml file and put it in your client.



This seemed to be quite useful:

https://metro.dev.java.net/guide/

Sections 12 and 18 in particular.

+1


source







All Articles