I have soap service under Apache with ssl, suds works greate without ssl.
I have client certificate (my.crt and user.p12 files).
How I need to configure suds client ot make it work with service over https?

without certs i see

urllib2.URLError: <urlopen error [Errno 1] _ssl.c:499: error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure>
link|improve this question

59% accept rate
1  
It looks like it's relying on urllib2, which doesn't support such options. Note that urllib2 doesn't even verify the server certificate (see documentation), which you'd really need to do if you're serious about using HTTPS. – Bruno Jun 8 '11 at 10:18
yep, but I can create my own transport based on other python library, which will use client certificate. What library you recomend instead of urllib2? – Andrew Jun 8 '11 at 10:30
2  
There was a discussion here: stackoverflow.com/questions/6167148/… and stackoverflow.com/questions/1087227/… – Bruno Jun 8 '11 at 11:34
feedback

2 Answers

up vote 6 down vote accepted

It sounds like you want to authenticate using a client certificate, not a server certificate as was stated in some of the comments. I had the same issue and was able to write a custom transport for SUDS. Here's the code that works for me.

You'll need your certificates in PEM format for this to work; OpenSSL can easily perform this conversion, though I don't remember the exact syntax.

import urllib2 as u2
from suds.client import Client
from suds.transport.http import HttpTransport, Reply, TransportError
import httplib

class HTTPSClientAuthHandler(u2.HTTPSHandler):  
    def __init__(self, key, cert):  
        u2.HTTPSHandler.__init__(self)  
        self.key = key  
        self.cert = cert  

    def https_open(self, req):  
        #Rather than pass in a reference to a connection class, we pass in  
        # a reference to a function which, for all intents and purposes,  
        # will behave as a constructor 
        return self.do_open(self.getConnection, req) 

    def getConnection(self, host, timeout=300):  
        return httplib.HTTPSConnection(host, key_file=self.key, cert_file=self.cert)  

class HTTPSClientCertTransport(HttpTransport):
    def __init__(self, key, cert, *args, **kwargs):
        HttpTransport.__init__(self, *args, **kwargs)
        self.key = key
        self.cert = cert

    def u2open(self, u2request):
        """
        Open a connection.
        @param u2request: A urllib2 request.
        @type u2request: urllib2.Requet.
        @return: The opened file-like urllib2 object.
        @rtype: fp
        """
        tm = self.options.timeout
        url = u2.build_opener(HTTPSClientAuthHandler(self.key, self.cert))  
        if self.u2ver() < 2.6:
            socket.setdefaulttimeout(tm)
            return url.open(u2request)
        else:
            return url.open(u2request, timeout=tm)

# These lines enable debug logging; remove them once everything works.
import logging
logging.basicConfig(level=logging.INFO)
logging.getLogger('suds.client').setLevel(logging.DEBUG)
logging.getLogger('suds.transport').setLevel(logging.DEBUG)

c = Client('https://YOUR_URL_HERE',
    transport = HTTPSClientCertTransport('YOUR_KEY_AND_CERT.pem', 'YOUR_KEY_AND_CERT.pem'))
print c
link|improve this answer
excellent answer. this would be a good example for using client certificates. needs to be there in the SUDS docs. :-) – Mahendra Sep 29 '11 at 8:23
1  
Please cite your sources when you take code from other sites. threepillarglobal.com/… – Bill the Lizard Oct 24 '11 at 18:42
"It sounds like you want to authenticate using a client certificate, not a server certificate as was stated in some of the comments.". This code doesn't authenticate the server: essentially, you're sending your client cert to something, but you haven't verified what that something was. None of this authenticates the server, which should be done first, whether you use client certs or not. – Bruno Jan 30 at 11:51
feedback

I'm running the mentioned code by @nitwit, and it seems to fail with "Connection reset". Looks like its half working, as I get further than with incorrect certificates (in that case I get 403 forbidden).

Additional clarification: I tested the WS with Firefox&Chrome and in both cases I get a legit WSDL, but when I try to feed the same certificate to wget and use it to retrieve the WSDL I get the same "connection reset" problem.

Are there any gotchas I should be aware regarding accessing SOAP WS with certificates from an app (vs. accessing with a browser)?


This is an update of the original answer:

  1. I figured out that I have a problem with headers and server caused all the Connection resets. I eventually gave up on using SUDS.
  2. I found a very very nice library - pysimplesoap: http://code.google.com/p/pysimplesoap/, which also had issues with certificates, but the patch was very simple and everything just works.

Bottom line:

I chose not to use SUDS anymore due to issues with certificates. I think that the best library (especially for a noob like me) for consuming SOAP services which require certificates is patched pysimplesoap. Sooner or later they will integrate the support for the certificates into the library, but until then - use my patch: http://code.google.com/p/pysimplesoap/issues/detail?id=45

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.