relay user's client certificate via cfhttp
My application requires client certificates at the root level. Some functions within my site use cfhttp to contact another server that also requires client certificates. Is there any way to pass the user's certificate on to the other server via cfhttp? The only solution I can find is to use a specific cert file that exists on my server's file system to send via cfhttp.
What I'm looking for is a way to do something like:
<cfhttp url="http://www.otherserver.com" clientcert="#cgi.cert_subject#">
...but clientcert is looking for a static file in pkcs format.
