mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-26 05:48:57 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@152540 c90b9560-bf6c-de11-be94-00142212c4b1
98 lines
3.6 KiB
XML
98 lines
3.6 KiB
XML
<?xml version='1.0' encoding='iso-8859-1'?>
|
|
<!-- $Revision: 1.2 $ -->
|
|
<refentry id="function.SoapClient-SoapClient">
|
|
<refnamediv>
|
|
<refname>SoapClient::SoapClient</refname>
|
|
<refpurpose>
|
|
SoapClient constructor
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>object</type><methodname>SoapClient::SoapClient</methodname>
|
|
<methodparam><type>mixed</type><parameter>wsdl</parameter></methodparam>
|
|
<methodparam choice="opt"><type>array</type><parameter>options</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
This constructor allows creating SoapClient objects in WSDL or non-WSDL mode.
|
|
The first case requires the URI of WSDL file as the first parameter and an
|
|
optional <parameter>options</parameter> array. The second case requires &null;
|
|
as the first parameter and the <parameter>options</parameter> array with
|
|
<literal>location</literal> and <literal>uri</literal> options set,
|
|
where <literal>location</literal> is a URL to request and <literal>uri</literal>
|
|
is a target namespace of the SOAP service.
|
|
</para>
|
|
<para>
|
|
The <literal>style</literal> and <literal>use</literal> options only work in
|
|
non-WSDL mode. In WSDL mode, they comes from the WSDL file.
|
|
</para>
|
|
<para>
|
|
The <literal>soap_version</literal> option specifies whether to use SOAP
|
|
1.1, or SOAP 1.2 client.
|
|
</para>
|
|
<para>
|
|
For HTTP authentication, you may use the <literal>login</literal> and
|
|
<literal>password</literal> options. For making a HTTP connection through
|
|
a proxy server, use the options <literal>proxy_host</literal>,
|
|
<literal>proxy_port</literal>, <literal>proxy_login</literal>
|
|
and <literal>proxy_password</literal>.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>SoapClient examples</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
$client = new SoapClient("some.wsdl");
|
|
|
|
$client = new SoapClient("some.wsdl", array('soap_version' => SOAP_1_2));
|
|
|
|
$client = new SoapClient("some.wsdl", array('login' => "some_name",
|
|
'password' => "some_password"));
|
|
|
|
$client = new SoapClient("some.wsdl", array('proxy_host' => "localhost",
|
|
'proxy_port' => 8080));
|
|
|
|
$client = new SoapClient("some.wsdl", array('proxy_host' => "localhost",
|
|
'proxy_port' => 8080,
|
|
'proxy_login' => "some_name",
|
|
'proxy_password' => "some_password"));
|
|
|
|
$client = new SoapClient(null, array('location' => "http://localhost/soap.php",
|
|
'uri' => "http://test-uri/"));
|
|
|
|
$client = new SoapClient(null, array('location' => "http://localhost/soap.php",
|
|
'uri' => "http://test-uri/",
|
|
'style' => SOAP_DOCUMENT,
|
|
'use' => SOAP_LITERAL));
|
|
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|