What's the difference between a monitor and a lock?
If a lock is simply an implementation of mutual exclusion, then is a monitor simply a way of making use of the waiting time inbetween method executions?
A good explanation would be really helpful thanks....
regards
...
Suppose you have a mutual SSL service, which in addition to the SSL, has application authentication. Thus, clients provide certificates (as well as servers), but the client request (e.g., REST request) also contains a username/password which the back-end application server authenticates with.
In terms of the "degree" of client authen...
Hi all,
I have a standalone Axis2 server running using org.apache.axis2.transport.SimpleAxis2Server
I would like to enable mutial SSL on this server. I have managed to get 1-way SSL working using my own selft signed certificates.
I have uncommented the SSLVerifyClient paramter, but this makes no difference. The server is running with ...