Essential example of using Java Client Destop application for use in a two-way SSL-protected web service

I am looking for an example application for Java applications that uses a two-way secure SSL service. Any tutorials or examples would be great, especially if they are based on the Eclipse IDE.

Thanks.

+4
source share
2 answers

Firstly, if you are not familiar with SSL, (self-signed) certificates, keytool, key storage, trust storage, in short PKI, I would suggest starting with a fifteen-minute mutual authentication and key management Java secure HTTP client . These resources are simply awesome and should help you get started and understand what you need on the server side and client side (and why).

Then I suggest checking Mutual Authentication for Web Services: A Real-Time Example .

And for a specific JBoss setup, check out the SSLSetup page of the JBoss wiki (more precisely, authentication script # 4).

+5
source

I'm not sure what you are looking for real applications that communicate via SSL with a web service provider? SOAPui is right up your path, with the exception that it is a universal web service tester, not some domain-specific application.

And this is not an eclipse, although there is a SOAPui Eclipse plugin.

0
source

Source: https://habr.com/ru/post/1303477/


All Articles