Tag Archives: HTTPS

XML-RPC over SSL


Let’s assume that we’ve got an XML-RPC server running @ https://localhost:8443/calculator/xmlrpc It can either add/subtract numbers. Here’s the server-side logic for it: Calculator.java Let’s write a simple XML-RPC client program that’ll connect to the server and get two numbers added. Okay, all set. Now, if we run this client program, we’ll get a lengthy exception: […]