$xml = <<<'EOT'
<?xml version='1.0' encoding='UTF-8'?>
<Request>
<params>
<id>4016</id>
<kom1></kom1>
</params>
</Request>
EOT;
<?xml version ='1.0' encoding ='UTF-8' ?>
<definitions
name='testWdsl'
xmlns:tns='http://site.ru/soap/'
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
xmlns='http://schemas.xmlsoap.org/wsdl/' >
<types>
<xs:schema xmlns:tns="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
targetNamespace="http://site.ru/soap/">
<complexType name="Params">
<sequence>
<element name="id" type="decimal" minOccurs="1" maxOccurs="1" />
<element name="kom1" type="string" minOccurs="0" maxOccurs="1" />
</sequence>
<element name="Request">
<element name="params" type="Params" />
</element>
<element name="Response">
<complexType>
<sequence>
<element name="status" type="boolean" />
</sequence>
</complexType>
</element>
</xs:schema>
</types>
<message name='sendBfRequest'>
<part name='Request' type='tns:Request'/>
</message>
<message name='sendBfResponse'>
<part name='Response' type='tns:Response'/>
</message>
<portType name='BfPortType'>
<operation name='getBf'>
<input message='tns:sendBfRequest'/>
<output message='tns:sendBfResponse'/>
</operation>
</portType>
<binding name='BfBinding' type='tns:BfPortType'>
<soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http'/>
<operation name='getBf' />
</binding>
<service name='BfService'>
<port name='BfPort' binding='BfBinding'>
<soap:address location='http://site.ru/soap/server.php'/>
</port>
</service>
</definitions>