• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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