| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- EN-Revision: 15103 -->
- <!-- Reviewed: no -->
- <sect1 id="zend.xmlrpc.client">
- <title>Zend_XmlRpc_Client</title>
- <sect2 id="zend.xmlrpc.client.introduction">
- <title>Introdución</title>
- <para>
- Zend Framework provee soporte para consumo remoto para servicios XML-RPC
- como un cliente en el paquete <classname>Zend_XmlRpc_Client</classname>
- . Su mejor característica es la conversión automática de tipos
- entre PHP y XML-RPC, un servidor de objeto proxy, y acceso a
- capacidades de instrospección del servidor.
- </para>
- </sect2>
- <sect2 id="zend.xmlrpc.client.method-calls">
- <title>Method Calls</title>
- <para>
- El constructor de <classname>Zend_XmlRpc_Client</classname> recibe la
- URL del servidor XML-RPC como su primer parámetro.
- La nueva instacia devuelta puede ser usada para llamar cualquier número de métodos remotos en el punto final.
- </para>
- <para>
- Para llamar un método remoto con el cliente XML-RPC, instáncealo
- y usa el método de instancia <code>call()</code> . El código de ejemplo a continuación utiliza una demostración en el servidor XML-RPC en el sitio web de Zend Framework
- . Puede utilizarlo para probar o explorar los componentes
- <code>Zend_XmlRpc</code>.
- </para>
- <example id="zend.xmlrpc.client.method-calls.example-1">
- <title>XML-RPC Method Call</title>
- <programlisting role="php"><![CDATA[
- $client = new Zend_XmlRpc_Client('http://framework.zend.com/xmlrpc');
- echo $client->call('test.sayHello');
- // hello
- ]]></programlisting>
- </example>
- <para>
- El valor XML-RPC devuelto desde la llamada al método remoto automáticamente será convertida al tipo nativo PHP equivalente
- . En el ejemplo anterior, es devuelto un <code>string</code> PHP
- y está listo para ser usado inmediatamente.
- </para>
- <para>
- El primer parámetro del método <code>call()</code> recibe el nombre del método remoto que llamar. Si el método remoto requiere algún parámetro, éste puede ser enviado por el suministro de un segundo, parámetro opcional a <code>call()</code> con un <code>array</code> de
- valores para pasar el método remoto:
- </para>
- <example id="zend.xmlrpc.client.method-calls.example-2">
- <title>XML-RPC Method Call with Parameters</title>
- <programlisting role="php"><![CDATA[
- $client = new Zend_XmlRpc_Client('http://framework.zend.com/xmlrpc');
- $arg1 = 1.1;
- $arg2 = 'foo';
- $result = $client->call('test.sayHello', array($arg1, $arg2));
- // $result es un tipo nativo PHP
- ]]></programlisting>
- </example>
- <para>
- si el método remoto no requiere parámetros, este parámetro opcional
- podrá ser excluido o se puede pasar un <code>array()</code>
- vacío. El array de parámeters para el método repoto puede contener tipos nativos PHPs, objetos <code>Zend_XmlRpc_Value</code>
- , o una combinación de estos.
- </para>
- <para>
- El método <code>call()</code> convertirá automáticamente la respuesta
- XML-RPC y devolverá su tipo nativo PHP equivalente. Un objeto
- <code>Zend_XmlRpc_Response</code> para el valor devuelto también estará
- disponible para llamar el método <code>getLastResponse()</code>
- después de la llamada.
- </para>
- </sect2>
- <sect2 id="zend.xmlrpc.value.parameters">
- <title>Tipos y Conversiones</title>
- <para>
- Algunas llamadas a métodos remoto requieren parámetros. Éstos son
- dados al método <code>call()</code> de <classname>Zend_XmlRpc_Client</classname>
- como un array en el segundo parámetro. Cada parámetro puede ser dado
- como un tipo nativo PHP, que será convertido automáticamente,
- o como un objeto que representa un tipo específico de XML-RPC
- (uno de los objetos <code>Zend_XmlRpc_Value</code>).
- </para>
- <sect3 id="zend.xmlrpc.value.parameters.php-native">
- <title>Tipos Nativos PHP como Parámetro</title>
- <para>
- Los parámetros pueden ser pasados a <code>call()</code> como variables
- PHP nativas, ya sea un <code>string</code>,
- <code>integer</code>, <code>float</code>,
- <code>boolean</code>, <code>array</code>, o un
- <code>object</code>. En este caso, cada tipo PHP nativo será
- autodetectado y convertido en uno de los tipos XML-RPC
- de acuerdo con esta tabla:
- </para>
- <table id="zend.xmlrpc.value.parameters.php-native.table-1">
- <title>Tipos de Conversión entre PHP y XML-RPC</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Tipo Nativo PHP</entry>
- <entry>Tipo XML-RPC</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>integer</entry>
- <entry>int</entry>
- </row>
- <row>
- <entry>double</entry>
- <entry>double</entry>
- </row>
- <row>
- <entry>boolean</entry>
- <entry>boolean</entry>
- </row>
- <row>
- <entry>string</entry>
- <entry>string</entry>
- </row>
- <row>
- <entry>array</entry>
- <entry>array</entry>
- </row>
- <row>
- <entry>array asociativo</entry>
- <entry>struct</entry>
- </row>
- <row>
- <entry>object</entry>
- <entry>array</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- <note>
- <title>¿A qué tipo se convierten los arrays Vacios?</title>
- <para>
- Pasar un array vacío a un método XML-RPC es problemático,
- as it could represent either an array or a struct.
- <classname>Zend_XmlRpc_Client</classname> detects such conditions and
- makes a request to the server's
- <code>system.methodSignature</code> method to determine the
- appropriate XML-RPC type to cast to.
- </para>
- <para>
- However, this in itself can lead to issues. First off,
- servers that do not support
- <code>system.methodSignature</code> will log failed
- requests, and <classname>Zend_XmlRpc_Client</classname> will resort to
- casting the value to an XML-RPC array type. Additionally,
- this means that any call with array arguments will result in
- an additional call to the remote server.
- </para>
- <para>
- To disable the lookup entirely, you can call the
- <code>setSkipSystemLookup()</code> method prior to making
- your XML-RPC call:
- </para>
- <programlisting role="php"><![CDATA[
- $client->setSkipSystemLookup(true);
- $result = $client->call('foo.bar', array(array()));
- ]]></programlisting>
- </note>
- </sect3>
- <sect3 id="zend.xmlrpc.value.parameters.xmlrpc-value">
- <title><code>Zend_XmlRpc_Value</code> Objects as Parameters</title>
- <para>
- Parameters may also be created as <code>Zend_XmlRpc_Value</code>
- instances to specify an exact XML-RPC type. The primary reasons
- for doing this are:
- <itemizedlist>
- <listitem>
- <para>
- When you want to make sure the correct parameter
- type is passed to the procedure (i.e. the
- procedure requires an integer and you may get it
- from a database as a string)
- </para>
- </listitem>
- <listitem>
- <para>
- When the procedure requires <code>base64</code> or
- <code>dateTime.iso8601</code> type (which doesn't exists as a
- PHP native type)
- </para>
- </listitem>
- <listitem>
- <para>
- When auto-conversion may fail (i.e. you want to
- pass an empty XML-RPC struct as a parameter. Empty
- structs are represented as empty arrays in PHP
- but, if you give an empty array as a parameter it
- will be auto-converted to an XML-RPC array since
- it's not an associative array)
- </para>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- There are two ways to create a <code>Zend_XmlRpc_Value</code>
- object: instantiate one of the <code>Zend_XmlRpc_Value</code>
- subclasses directly, or use the static factory method
- <code>Zend_XmlRpc_Value::getXmlRpcValue()</code>.
- </para>
- <table id="zend.xmlrpc.value.parameters.xmlrpc-value.table-1">
- <title><code>Zend_XmlRpc_Value</code> Objects for XML-RPC Types</title>
- <tgroup cols="3">
- <thead>
- <row>
- <entry>XML-RPC Type</entry>
- <entry><code>Zend_XmlRpc_Value</code> Constant</entry>
- <entry><code>Zend_XmlRpc_Value</code> Object</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>int</entry>
- <entry><code>Zend_XmlRpc_Value::XMLRPC_TYPE_INTEGER</code></entry>
- <entry><code>Zend_XmlRpc_Value_Integer</code></entry>
- </row>
- <row>
- <entry>double</entry>
- <entry><code>Zend_XmlRpc_Value::XMLRPC_TYPE_DOUBLE</code></entry>
- <entry><code>Zend_XmlRpc_Value_Double</code></entry>
- </row>
- <row>
- <entry>boolean</entry>
- <entry><code>Zend_XmlRpc_Value::XMLRPC_TYPE_BOOLEAN</code></entry>
- <entry><code>Zend_XmlRpc_Value_Boolean</code></entry>
- </row>
- <row>
- <entry>string</entry>
- <entry><code>Zend_XmlRpc_Value::XMLRPC_TYPE_STRING</code></entry>
- <entry><code>Zend_XmlRpc_Value_String</code></entry>
- </row>
- <row>
- <entry>base64</entry>
- <entry><code>Zend_XmlRpc_Value::XMLRPC_TYPE_BASE64</code></entry>
- <entry><code>Zend_XmlRpc_Value_Base64</code></entry>
- </row>
- <row>
- <entry>dateTime.iso8601</entry>
- <entry><code>Zend_XmlRpc_Value::XMLRPC_TYPE_DATETIME</code></entry>
- <entry><code>Zend_XmlRpc_Value_DateTime</code></entry>
- </row>
- <row>
- <entry>array</entry>
- <entry><code>Zend_XmlRpc_Value::XMLRPC_TYPE_ARRAY</code></entry>
- <entry><code>Zend_XmlRpc_Value_Array</code></entry>
- </row>
- <row>
- <entry>struct</entry>
- <entry><code>Zend_XmlRpc_Value::XMLRPC_TYPE_STRUCT</code></entry>
- <entry><code>Zend_XmlRpc_Value_Struct</code></entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- <para>
- <note>
- <title>Automatic Conversion</title>
- <para>
- When building a new <code>Zend_XmlRpc_Value</code>
- object, its value is set by a PHP type. The PHP type
- will be converted to the specified type using
- PHP casting. For example, if a string is given as a
- value to the <code>Zend_XmlRpc_Value_Integer</code>
- object, it will be converted using
- <code>(int)$value</code>.
- </para>
- </note>
- </para>
- </sect3>
- </sect2>
- <sect2 id="zend.xmlrpc.client.requests-and-responses">
- <title>Server Proxy Object</title>
- <para>
- Another way to call remote methods with the XML-RPC client is to
- use the server proxy. This is a PHP object that proxies a remote
- XML-RPC namespace, making it work as close to a native PHP object
- as possible.
- </para>
- <para>
- To instantiate a server proxy, call the <code>getProxy()</code>
- instance method of <classname>Zend_XmlRpc_Client</classname>. This will
- return an instance of <code>Zend_XmlRpc_Client_ServerProxy</code>.
- Any method call on the server proxy object will be forwarded to
- the remote, and parameters may be passed like any other PHP
- method.
- </para>
- <example id="zend.xmlrpc.client.requests-and-responses.example-1">
- <title>Proxy the Default Namespace</title>
- <programlisting role="php"><![CDATA[
- $client = new Zend_XmlRpc_Client('http://framework.zend.com/xmlrpc');
- $server = $client->getProxy(); // Proxy the default namespace
- $hello = $server->test->sayHello(1, 2); // test.Hello(1, 2) returns "hello"
- ]]></programlisting>
- </example>
- <para>
- The <code>getProxy()</code> method receives an optional argument
- specifying which namespace of the remote server to proxy. If it
- does not receive a namespace, the default namespace will be
- proxied. In the next example, the <code>test</code> namespace
- will be proxied:
- </para>
- <example id="zend.xmlrpc.client.requests-and-responses.example-2">
- <title>Proxy Any Namespace</title>
- <programlisting role="php"><![CDATA[
- $client = new Zend_XmlRpc_Client('http://framework.zend.com/xmlrpc');
- $test = $client->getProxy('test'); // Proxy the "test" namespace
- $hello = $test->sayHello(1, 2); // test.Hello(1,2) returns "hello"
- ]]></programlisting>
- </example>
- <para>
- If the remote server supports nested namespaces of any depth,
- these can also be used through the server proxy. For example, if
- the server in the example above had a method
- <code>test.foo.bar()</code>, it could be called as
- <code>$test->foo->bar()</code>.
- </para>
- </sect2>
- <sect2 id="zend.xmlrpc.client.error-handling">
- <title>Error Handling</title>
- <para>
- Two kinds of errors can occur during an XML-RPC method call: HTTP
- errors and XML-RPC faults. The <classname>Zend_XmlRpc_Client</classname>
- recognizes each and provides the ability to detect and trap them
- independently.
- </para>
- <sect3 id="zend.xmlrpc.client.error-handling.http">
- <title>HTTP Errors</title>
- <para>
- If any HTTP error occurs, such as the remote HTTP server
- returns a <code>404 Not Found</code>, a
- <code>Zend_XmlRpc_Client_HttpException</code> will be thrown.
- </para>
- <example id="zend.xmlrpc.client.error-handling.http.example-1">
- <title>Handling HTTP Errors</title>
- <programlisting role="php"><![CDATA[
- $client = new Zend_XmlRpc_Client('http://foo/404');
- try {
- $client->call('bar', array($arg1, $arg2));
- } catch (Zend_XmlRpc_Client_HttpException $e) {
- // $e->getCode() returns 404
- // $e->getMessage() returns "Not Found"
- }
- ]]></programlisting>
- </example>
- <para>
- Regardless of how the XML-RPC client is used, the
- <code>Zend_XmlRpc_Client_HttpException</code> will be thrown
- whenever an HTTP error occurs.
- </para>
- </sect3>
- <sect3 id="zend.xmlrpc.client.error-handling.faults">
- <title>XML-RPC Faults</title>
- <para>
- An XML-RPC fault is analogous to a PHP exception. It is a
- special type returned from an XML-RPC method call that has
- both an error code and an error message. XML-RPC faults are
- handled differently depending on the context of how the
- <classname>Zend_XmlRpc_Client</classname> is used.
- </para>
- <para>
- When the <code>call()</code> method or the server
- proxy object is used, an XML-RPC fault will result in a
- <code>Zend_XmlRpc_Client_FaultException</code> being thrown.
- The code and message of the exception will map directly to
- their respective values in the original XML-RPC fault
- response.
- </para>
- <example id="zend.xmlrpc.client.error-handling.faults.example-1">
- <title>Handling XML-RPC Faults</title>
- <programlisting role="php"><![CDATA[
- $client = new Zend_XmlRpc_Client('http://framework.zend.com/xmlrpc');
- try {
- $client->call('badMethod');
- } catch (Zend_XmlRpc_Client_FaultException $e) {
- // $e->getCode() returns 1
- // $e->getMessage() returns "Unknown method"
- }
- ]]></programlisting>
- </example>
- <para>
- Cuando el método <code>call()</code> es usado para realizar la
- petición, <code>Zend_XmlRpc_Client_FaultException</code> será
- lanzado como error. Un objeto <code>Zend_XmlRpc_Response</code> conteniendo
- el error estará disponible llamando a
- <code>getLastResponse()</code>.
- </para>
- <para>
- Cuando el método <code>doRequest()</code> sea usado para realizar una
- petición, no lanzará una excepción. En vez de eso, devolverá un objeto
- <code>Zend_XmlRpc_Response</code> que contendrá el error.
- Esto puede comprobarse con
- <code>isFault()</code> método instancia de
- <code>Zend_XmlRpc_Response</code>.
- </para>
- </sect3>
- </sect2>
- <sect2 id="zend.xmlrpc.client.introspection">
- <title>Server Introspection</title>
- <para>
- Some XML-RPC servers support the de facto introspection methods under the XML-RPC
- <code>system.</code> namespace. <classname>Zend_XmlRpc_Client</classname> provides special
- support for servers with these capabilities.
- </para>
- <para>
- A <code>Zend_XmlRpc_Client_ServerIntrospection</code> instance may be retrieved by calling
- the <code>getIntrospector()</code> method of <code>Zend_XmlRpcClient</code>. It can
- then be used to perform introspection operations on the server.
- </para>
- </sect2>
- <sect2 id="zend.xmlrpc.client.request-to-response">
- <title>From Request to Response</title>
- <para>
- Under the hood, the <code>call()</code> instance method of <classname>Zend_XmlRpc_Client</classname>
- builds a request object (<code>Zend_XmlRpc_Request</code>) and sends it to another method,
- <code>doRequest()</code>, that returns a response object (<code>Zend_XmlRpc_Response</code>).
- </para>
- <para>
- The <code>doRequest()</code> method is also available for use directly:
- </para>
- <example id="zend.xmlrpc.client.request-to-response.example-1">
- <title>Processing Request to Response</title>
- <programlisting role="php"><![CDATA[
- $client = new Zend_XmlRpc_Client('http://framework.zend.com/xmlrpc');
- $request = new Zend_XmlRpc_Request();
- $request->setMethod('test.sayHello');
- $request->setParams(array('foo', 'bar'));
- $client->doRequest($request);
- // $server->getLastRequest() returns instanceof Zend_XmlRpc_Request
- // $server->getLastResponse() returns instanceof Zend_XmlRpc_Response
- ]]></programlisting>
- </example>
- <para>
- Whenever an XML-RPC method call is made by the client through any
- means, either the <code>call()</code> method,
- <code>doRequest()</code> method, or server proxy, the last request
- object and its resultant response object will always be available
- through the methods <code>getLastRequest()</code> and
- <code>getLastResponse()</code> respectively.
- </para>
- </sect2>
- <sect2 id="zend.xmlrpc.client.http-client">
- <title>HTTP Client and Testing</title>
- <para>
- In all of the prior examples, an HTTP client was never specified.
- When this is the case, a new instance of
- <code>Zend_Http_Client</code> will be created with its default
- options and used by <classname>Zend_XmlRpc_Client</classname> automatically.
- </para>
- <para>
- The HTTP client can be retrieved at any time with the
- <code>getHttpClient()</code> method. For most cases, the default
- HTTP client will be sufficient. However, the
- <code>setHttpClient()</code> method allows for a different HTTP
- client instance to be injected.
- </para>
- <para>
- The <code>setHttpClient()</code> is particularly useful for unit testing. When combined
- with the <classname>Zend_Http_Client_Adapter_Test</classname>, remote services can be mocked
- out for testing. See the unit tests for <classname>Zend_XmlRpc_Client</classname> for examples
- of how to do this.
- </para>
- </sect2>
- </sect1>
- <!--
- vim:se ts=4 sw=4 et:
- -->
|