![]() |
![]() |
![]() |
Using SSL for XML-RPC I am opening a server for xml-rpc from multiple known servers. The server has a couple of APIs exposed that users can access through XML-RPC.
Rhinestone Cowboy
you probably SHOULD use SSL for added security.
christopher baus (www.baus.net)
Considering that you currently have NO security (base64 isn't encryption!) anything you add will help.
Chris Tavares
As the last poster said, using base64 is just fooling yourself. I wouldn't even bother with it, as it provides 0 security.
christopher baus (www.baus.net)
Take a look at the security layer that was added to the Atom API. It doesn't require SSL and it provides a nice extension to the standard HTTP authentication mechanism.
Jeff Watkins
You should NOT be sending passwords (cleartext or base64) over the wire! I better solution is a challenge/response message digest (which is already part of HTTP/1.1).
runtime
|