0

API を使用して cpanel から xml フィードを取得しようとしています。xml フィードを取得するための承認を渡すために、いくつかの方法 (以下を参照) を試しました。

私のブラウザでは、次の方法でフィードを取得できます。

http://user:pass@domain.com:2086/xml-api/listaccts?

サーバーからのフィードの例:

<listaccts>
<acct>
<disklimit>2500M</disklimit>
<diskused>56M</diskused>
<domain>domain.com</domain>
<email>dot@domain.com</email>
<ip>xx.xx.xx.xx</ip>
<max_defer_fail_percentage>unlimited</max_defer_fail_percentage>
<max_email_per_hour>unlimited</max_email_per_hour>
<maxaddons>*unknown*</maxaddons>
<maxftp>5</maxftp>
<maxlst>*unknown*</maxlst>
<maxparked>*unknown*</maxparked>
<maxpop>25</maxpop>
<maxsql>1</maxsql>
<maxsub>5</maxsub>
<min_defer_fail_to_trigger_protection>5</min_defer_fail_to_trigger_protection>
<owner>root</owner>
<partition>home</partition>
<plan>Basic</plan>
<shell>/usr/local/cpanel/bin/noshell</shell>
<startdate>13 Feb 17 07:05</startdate>
<suspended>0</suspended>
<suspendreason>not suspended</suspendreason>
<suspendtime/>
<theme>x3</theme>
<unix_startdate>1361109935</unix_startdate>
<user>xxxxxxxx</user>
</acct>
</listaccts>

私のアプリケーションスクリプト:

<s:HTTPService id="clientList" method="GET" resultFormat="e4x"/>

スクリプト内:

[Bindable]
private var clientInfo:Object = new Object();

private function clients(event:Event):void{

            clientList.url = 'http://' +loginUsername.text
            clientList.url += ':' + loginPassword.text
            clientList.url += '@' + loginServer.text;
            clientList.url += ':2086/xml-api/listaccts?';

            clientList.addEventListener("result", clientResult); 
            clientList.addEventListener("fault", clientFault); 
            clientList.send();

            CursorManager.setBusyCursor();

        }

        public function clientResult(event:ResultEvent):void { 


            clientInfo = clientList.lastResult.acct;
            CursorManager.removeBusyCursor();

        } 

        public function clientFault(event:FaultEvent):void { 

            var faultstring:String = event.fault.faultString;  
            Alert.show("Unable to obtain client list","Error"); 

            CursorManager.removeBusyCursor();
        }

私は何を間違っていますか、エラーが発生し続けます (クライアントリストを取得できません)、私が使用している認証方法を試している可能性があります。

4

1 に答える 1