On Fri, Nov 29, 2013 at 12:27 AM, waqas ali <[email protected]> wrote:
> I want to know is client certificate authentication is possible in GAE. I > have an application that have to request client certificates to the user. I > already have created an application in tomcat server which perfectly > perform mutual authentication of client and server. I also want to know is > this possible that GAE cloud instance can run my tomcat service for client > certification. > Are you using the certificate to sign the HTTPS connection itself, or are you signing another connection layered on top of the HTTP communication? GAE internals handle the SSL authentication part, applications don't get access to the client's secure cert information. What you can try is running your code on a Compute Engine machine ( https://cloud.google.com/products/compute-engine/ ) and then passing through any connections that you approve through to App Engine. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
