Advertisement
Advertisement
| 07.03.2008 at 06:20AM PDT, ID: 23536686 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
#build up the web service URL, using the esPackages web service
$soapaddress=$http."://".$serverip.":".$esport."/esPackages.asmx?WSDL";
#start the soap stuff
$dnp=new soapclient($soapaddress,true);
$dnp->soap_defencoding='utf-8';
#authentication for DNP, this must be the account that user accounts are created under, or the master serveradmin account
$dnp->setCredentials($serverusername,$serverpassword);
#build the SOAP parameter array
$param=array("parentPackageId" => $parentPackageId,"username" => $username,"password" => $password,"roleId" => $roleid,"firstName" => $clientsdetails["firstname"],"lastName" => $clientsdetails["lastname"],"email" => $clientsdetails["email"],"htmlMail" => $htmlMail,"sendAccountLetter" => $sendAccountLetter,"createPackage" => true,"planId" => $planId,"sendPackageLetter" => $sendPackageLetter,"domainName" => $domain,"tempDomain" => $tempDomain,"createWebSite" => $website,"createFtpAccount" => $createFtpAccount,"ftpAccountName" => $username,"createMailAccount" => $createMailAccount);
#send request, using the CreateUserWizard method, easiest quickest way to create the user on the server
$result=$dnp->call('CreateUserWizard',array('parameters' => $param),'http://officepark/dotnetpanel/enterpriseserver','http://officepark/dotnetpanel/enterpriseserver/CreateUserWizard');
|