SSL Support?

HTTPClient can wrap its communication via SSL. Nothing else built-in to Panda has this feature, though there are standalone Python libraries that can do it also.

If your server string you pass to ClientRepository.connect() is a URL whose scheme ends in “s”, e.g. “servers://myserver.com”, then ClientRepository will automatically use HTTPClient to establish an SSL connection. However, there’s nothing built into the ServerRepository class to accept an SSL connection, so you will need to use an external wrapping program to wrap your server inside SSL.

David