• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Plesk RPC API example in ColdFusion

M

mattypython

Guest
Hi there, I'm trying to get the php/perl RPC API example working in ColdFusion and I keep getting an error of "Connection Failure", can someone see what the problem is?

PHP:
<cfset LOGIN = "admin">
<cfset PASSWD = "setup">

<cfxml variable="xmlSend">
<packet version="1.3.1.0">
	<server>
		<get>
			<gen_info/>
		</get>
	</server>
</packet>
</cfxml>

<cfhttp method="post" url="https://pl1.demo.sw-soft.com:8443/enterprise/control/agent.php" username="#LOGIN#" password="#PASSWD#">
	<cfhttpparam type="xml" name="REQUEST" value="#xmlSend#">
	<cfhttpparam type="header" name="HTTP_AUTH_LOGIN" value="#LOGIN#">
	<cfhttpparam type="header" name="HTTP_AUTH_PASSWD" value="#PASSWD#">
	<cfhttpparam type="header" name="HTTP_PRETTY_PRINT" value="TRUE">
	<cfhttpparam type="header" name="Content-Type" value="text/xml">
</cfhttp>

<html>
<head>
<title>Test</title>
</head>
<body>
FileContent: <cfoutput>#cfhttp.FileContent#</cfoutput>
</body>
</html>

Thanks in advance for your help.
 
Back
Top