PHP- Kodu:
<%
const SALES="https://89.19.16.18:8443/enterprise/control/agent.php"
SOAP1 = "<?xml version=""1.0"" encoding=""utf-8""?>" &_
"<packet version=""1.4.0.0"">" &_
"<client>" &_
"<add>" &_
"<gen_info>" &_
"<cname>LogicSoft Ltd.</cname>" &_
"<pname>Stephen Lowell</pname>" &_
"<login>stevelow</login>" &_
"<passwd>steve78</passwd>" &_
"<status>0</status>" &_
"<phone>416 907 9944</phone>" &_
"<fax>928 752 3905</fax>" &_
"<email>host@logicsoft.net</email>" &_
"<address>105 Brisbane Road, Unit 2</address>" &_
"<city>Toronto</city>" &_
"<state/>" &_
"<pcode/>" &_
"<country>CA</country>" &_
"</gen_info>" &_
"<limits>" &_
"<disk_space>100000</disk_space>" &_
"<max_dom>50</max_dom>" &_
"<max_subdom>250</max_subdom>" &_
"<max_webapps>30</max_webapps>" &_
"<max_traffic>50000</max_traffic>" &_
"<max_db>200</max_db>" &_
"<mysql_dbase_space>50000</mysql_dbase_space>" &_
"<max_shared_ssl_links>50</max_shared_ssl_links>" &_
"<expiration>1134616208</expiration>" &_
"</limits>" &_
"<permissions>" &_
"<create_domains>true</create_domains>" &_
"<manage_phosting>true</manage_phosting>" &_
"<manage_quota>false</manage_quota>" &_
"<manage_subdomains>true </manage_subdomains>" &_
"<change_limits>true</change_limits>" &_
"<manage_dns>true</manage_dns>" &_
"<manage_log>true</manage_log>" &_
"<manage_anonftp>true</manage_anonftp>" &_
"<manage_webapps>true</manage_webapps>" &_
"<manage_sh_access>true</manage_sh_access>" &_
"<manage_maillists>true</manage_maillists>" &_
"<make_dumps>true</make_dumps>" &_
"<remote_access_interface>true</remote_access_interface>" &_
"<cp_access>true</cp_access>" &_
"<manage_domain_aliases>true </manage_domain_aliases>" &_
"</permissions>" &_
"</add>" &_
"</client>" &_
"</packet>"
reponse.write XMLGonder(SOAP1, SALES)
function XMLGonder(xml, action)
Set oXMLHTTP = CreateObject("MSXML2.XMLHTTP")
oXMLHTTP.Open "POST" , "https://89.19.16.18:8443/enterprise/control/agent.php" , true
oXMLHTTP.SetRequestHeader "CURLOPT_SSL_VERIFYHOST",0
oXMLHTTP.SetRequestHeader "CURLOPT_SSL_VERIFYPEER",false
oXMLHTTP.SetRequestHeader "CURLOPT_RETURNTRANSFER",true
oXMLHTTP.SetRequestHeader "Host" , "10.58.83.1:8443"
oXMLHTTP.SetRequestHeader "Accept" , "*/*"
oXMLHTTP.SetRequestHeader "HTTP_AUTH_LOGIN" , "admin"
oXMLHTTP.SetRequestHeader "HTTP_AUTH_PASSWD" , "159753"
oXMLHTTP.SetRequestHeader "Pragma" , "no-cache"
oXMLHTTP.SetRequestHeader "Content-Type" , "text/xml; charset=utf-8"
oXMLHTTP.setRequestHeader "CURLOPT_URL" , action
oXMLHTTP.setRequestHeader "Content-Lenght", "1398"
oXMLHTTP.sEnd xml
XMLGonder = oXMLHTTP.responseText
End function
%>