RE: Restrict access to SSL clients for a service

2003-10-11 Thread thomas . cherel
, 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

RE: Restrict access to SSL clients for a service

2003-10-10 Thread Sanjesh Pathak
: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

Re: Restrict access to SSL clients for a service

2003-10-10 Thread Andre Charbonneau
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

Restrict access to SSL clients for a service

2003-10-10 Thread PARLEY,THUNDER (HP-MountainView,ex1)
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