Hello, I am trying to run a web service into SSL to simulate how a store might connect to a bank for a credit card transaction. I can get the web service to operate from port 80 localhost to port 80 localhost, and from SSL localhost (port 443) to port 80 localhost, but when I try to send data into SSL, I get no data back. I am using a PHP web service and 'utils.php' as a library. My intention is to get a working connection, and then fill it in with the necessary queries to make the credit card piece work. Think of this as a proof of concept or a 'Hello World' at the moment. the client app <?php include("utils.php"); $host = "localhost"; $uri = "/server.php"; $result = xu_rpc_http_concise( array( 'method' => "uptime", 'host' => $host, 'uri' => $uri, 'port' => 443 ) ); print "The uptime on " . $host . " is " . $result; ?> The server app: <?php function uptime_func($method_name, $params, $app_data) { return time()." insecure"; } $xmlrpc_server = xmlrpc_server_create(); xmlrpc_server_register_method($xmlrpc_server, "uptime", "uptime_func"); header('Content-Type: text/xml'); $request_xml = $HTTP_RAW_POST_DATA; $response = xmlrpc_server_call_method($xmlrpc_server, $request_xml, ''); print $response; xmlrpc_server_destroy($xmlrpc_server); ?> Thanks! -Steve