, October 10, 2003 3:35 PM
To: [EMAIL PROTECTED]
Subject: RE: Restrict access to SSL clients for a service
Parley,
Take this handler (see attached) and put it in the request flow of your
service. This handler will only allow requests from a secure channel (SSL).
Sanjesh
-Original Message
:34 AM
To: '[EMAIL PROTECTED]'
Subject: Restrict access to SSL clients for a service
Hi List,
If I have Axis running on Tomcat, which has 2 liistening ports (unsecure
and
SSL), when I deploy a new service, can I deploy it so that the service
will
only acknowledge requests over a SSL connec
I was looking at the Axis API documentation and maybe this would help you:
// In the service implementation...
String transportName =
org.apache.axis.MessageContext.getCurrentContext().getTransportName();
I haven't tried it but I assume the transport name could be used to
determine if the conne
Hi List,
If I have Axis running on Tomcat, which has 2 liistening ports (unsecure and
SSL), when I deploy a new service, can I deploy it so that the service will
only acknowledge requests over a SSL connection or is there some snippet of
code I can put in the service itself to check that the reque