I having truoble getting the XMLRPC.Convert interface to work. CF thinks that it something it should handle and gives me errors about Convert not being a CF Function. I also tried to use it will with ASP and it kept telling me that “vtI4 is not defined.” I don’t have a lot of ASP experience so the problem may be mine. Here’s my sample:
<%@ Language=JScript %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>XMLRPC ASP</title>
</head>
<body>
<%
var rpc = Server.CreateObject ("XMLRPC.XMLRPCClient");
var cnv = Server.CreateObject ("XMLRPC.Convert");
var retval = rpc.Call("http://10.200.60.78:81/rpc2", "examples.getstatename", cnv ("5", vtI4));
%>
<p><%= retval %></p>
</body>
</html>
Any ideas?