簡體   English   中英

如何使用PHP中的本機SoapClient進行SOAP調用?

[英]How to make SOAP call using native SoapClient in PHP?

我想打電話給Web服務,該服務也正在開發中,它在WSDL中定義了一個函數PlaceInvoiceFromStream。 函數定義了一個要傳遞的參數,發票。 WSDL導入XSD shema中定義的類型。

WSDL看起來像這樣:

<?xml version="1.0" encoding="utf-8"?>
<definitions name ="inService"
    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsdl="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
    xmlns:tns="http://localhost/ebiz/ws/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    targetNamespace="http://localhost/ebiz/ws/">
    <import namespace="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
        location="http://localhost/ebiz/ws/Invoice.xsd"
    />
    <message name="getPlaceInvoiceInput">
        <part name="body" element="xsdl:Invoice"/>
    </message>
    <message name="getPlaceInvoiceOutput">
        <part name="body" type="xsd:string"/>
    </message>
    <portType name="inServicePortType">
        <operation name="PlaceInvoiceFromStream">
            <input message="tns:getPlaceInvoiceInput"/>
            <output message="tns:getPlaceInvoiceOutput"/>
        </operation>
    </portType>
    <binding name="inServiceBinding" type="tns:inServicePortType">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <operation name="PlaceInvoiceFromStream">
            <soap:operation soapAction="PlaceInvoiceFromStream"/>
            <input>
                <soap:body use="literal"/>
            </input>
            <output>
                <soap:body use="literal"/>
            </output>
        </operation>
    </binding>
    <service name="inService">
        <port name="inServicePort" binding="tns:inServiceBinding">
            <soap:address location="http://localhost/ebiz/ws/soapServer.php"/>
        </port>
    </service>
</definitions>

模式如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:qdt="urn:oasis:names:specification:ubl:schema:xsd:QualifiedDataTypes-2" xmlns:ext="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2" xmlns:udt="urn:oasis:names:specification:ubl:schema:xsd:UnqualifiedDataTypes-2" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2" targetNamespace="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.1">
<xsd:import namespace="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" schemaLocation="../common/UBL-CommonAggregateComponents-2.1.xsd"/>
<xsd:import namespace="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2" schemaLocation="../common/UBL-CommonBasicComponents-2.1.xsd"/>
<xsd:import namespace="urn:oasis:names:specification:ubl:schema:xsd:UnqualifiedDataTypes-2" schemaLocation="../common/UBL-UnqualifiedDataTypes-2.1.xsd"/>
<xsd:import namespace="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2" schemaLocation="../common/UBL-CommonExtensionComponents-2.1.xsd"/>
<xsd:import namespace="urn:oasis:names:specification:ubl:schema:xsd:QualifiedDataTypes-2" schemaLocation="../common/UBL-QualifiedDataTypes-2.1.xsd"/>
<xsd:element name="Invoice" type="InvoiceType"/>
<xsd:complexType name="InvoiceType">
    <xsd:sequence>
        <xsd:element ref="ext:UBLExtensions"/>
        <xsd:element ref="cbc:UBLVersionID"/>
        <xsd:element ref="cbc:CustomizationID" minOccurs="0"/>
        <xsd:element ref="cbc:ProfileID" minOccurs="0"/>
        <xsd:element ref="cbc:ID"></xsd:element>
        <xsd:element ref="cbc:CopyIndicator" minOccurs="0"/>
        <xsd:element ref="cbc:IssueDate"/>
        <xsd:element ref="cbc:InvoiceTypeCode" minOccurs="0"/>
        <xsd:element ref="cbc:Note" minOccurs="0"/>
        <xsd:element ref="cbc:TaxPointDate" minOccurs="0"/>
        <xsd:element ref="cbc:DocumentCurrencyCode" minOccurs="0"/>
        <xsd:element ref="cbc:AccountingCost" minOccurs="0"/>
        <xsd:element ref="cbc:LineCountNumeric" minOccurs="0"/>
        <xsd:element ref="cac:InvoicePeriod" minOccurs="0"/>
        <xsd:element ref="cac:OrderReference" minOccurs="0"/>
        <xsd:element ref="cac:DespatchDocumentReference" minOccurs="0"/>
        <xsd:element ref="cac:ReceiptDocumentReference" minOccurs="0"/>
        <xsd:element ref="cac:ContractDocumentReference" minOccurs="0"/>
        <xsd:element ref="cac:AdditionalDocumentReference" minOccurs="0" maxOccurs="unbounded"/>
        <xsd:element ref="cac:Signature" minOccurs="0"/>
        <xsd:element ref="cac:AccountingSupplierParty"/>
        <xsd:element ref="cac:AccountingCustomerParty"/>
        <xsd:element ref="cac:BuyerCustomerParty" minOccurs="0"/>
        <xsd:element ref="cac:SellerSupplierParty" minOccurs="0"/>
        <xsd:element ref="cac:TaxRepresentativeParty" minOccurs="0"/>
        <xsd:element ref="cac:Delivery" minOccurs="0" maxOccurs="unbounded"/>
        <xsd:element ref="cac:DeliveryTerms" minOccurs="0"/>
        <xsd:element ref="cac:PaymentMeans" maxOccurs="unbounded"/>
        <xsd:element ref="cac:PaymentTerms" minOccurs="0" maxOccurs="unbounded"/>
        <xsd:element ref="cac:PrepaidPayment" minOccurs="0" maxOccurs="unbounded"/>
        <xsd:element ref="cac:AllowanceCharge" minOccurs="0" maxOccurs="unbounded"/>
        <xsd:element ref="cac:TaxTotal" maxOccurs="unbounded"/>
        <xsd:element ref="cac:LegalMonetaryTotal"/>
        <xsd:element ref="cac:InvoiceLine" maxOccurs="unbounded"/>
    </xsd:sequence>
</xsd:complexType>

UBL 2.1架構: http : //docs.oasis-open.org/ubl/prd2-UBL-2.1/UBL-2.1.html#SCHEMAS

發票是復雜的數據,保存在XML文件中,並且包含名稱空間和屬性。 它是這樣開始的:

<?xml version="1.0" encoding="UTF-8"?>
<Invoice
 xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
 xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
 xmlns:sac="urn:oasis:names:specification:ubl:schema:xsd:SignatureAggregateComponents-2"
 xsi:schemaLocation="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2 http://localhost/ebiz/ws/Invoice.xsd"
 xmlns:ext="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2"
 xmlns:sig="urn:oasis:names:specification:ubl:schema:xsd:CommonSignatureComponents-2">
    <ext:UBLExtensions>
        <ext:UBLExtension>
            <cbc:ID>INVOICE1</cbc:ID>
            <cbc:Name>InvoiceIssuePlaceData</cbc:Name>
            <ext:ExtensionAgencyURI>urn:invoice:issueplace</ext:ExtensionAgencyURI>
            <ext:ExtensionContent>
                <ext:InvoiceIssuePlace>MyCity</ext:InvoiceIssuePlace>
            </ext:ExtensionContent>
        </ext:UBLExtension>
    </ext:UBLExtensions>
    <cbc:UBLVersionID>2.1</cbc:UBLVersionID>
    <cbc:ID>01 1206-2406-568</cbc:ID>`

等等...

我已經嘗試過這種方法:

// LOAD XML and TRANSFORM FOR SoapClient 
$xmlfile = "Invoice123.xml";
$xslfile = "xsltForSoapClientRequest.xsl";
$xmlDOM = new DOMDocument();
$xmlDOM->load($xmlfile);
$xslDOM = new DOMDocument();
$xslDOM->load($xslfile);
$proc = new XSLTProcessor;
$proc->importStyleSheet($xslDOM);
$transformedXML = $proc->transformToDoc($xmlDOM);
$xmldoc = simplexml_load_string($transformedXML);

// CREATE ARRAY
$xmlarr = xml2array($xmldoc->asXML());

$client = new SoapClient($wsdl,array('trace'=>1));
$result=$client->PlaceInvoiceFromStream($xmlarr);

但沒有成功。

XSL轉換更改為:

  • 節點屬性成為節點元素
  • 復雜節點值變為“ _”元素

xml2array的更改是:

  • 屬性變成單獨的數組

因此,要發送到Web服務功能的$ xmlarr格式如下:

array(2) {
  ["Invoice"]=>
  array(15) {
    ["ext:UBLExtensions"]=>
    array(1) {
      ["ext:UBLExtension"]=>
      array(4) {
        ["cbc:ID"]=>
        string(10) "INVOICE1"
        ["cbc:Name"]=>
        string(21) "InvoiceIssuePlaceData"
        ["ext:ExtensionAgencyURI"]=>
        string(25) "urn:invoice:issueplace"
        ["ext:ExtensionContent"]=>
        array(1) {
          ["ext:InvoiceIssuePlace"]=>
          string(7) "MyCity"
        }
      }
    }
    ["cbc:UBLVersionID"]=>
    string(3) "2.1"
    ["cbc:ID"]=>
    string(16) "01 1206-2406-568"
...

  ["Invoice_attr"]=>
  array(8) {
    ["xmlns"]=>
    string(54) "urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
    ["xmlns:xsi"]=>
    string(41) "http://www.w3.org/2001/XMLSchema-instance"
    ["xmlns:cac"]=>
    string(72) "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
    ["xmlns:cbc"]=>
    string(68) "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
    ["xmlns:sac"]=>
    string(75) "urn:oasis:names:specification:ubl:schema:xsd:SignatureAggregateComponents-2"
    ["xmlns:ext"]=>
    string(72) "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2"
    ["xmlns:sig"]=>
    string(72) "urn:oasis:names:specification:ubl:schema:xsd:CommonSignatureComponents-2"
    ["xsi:schemaLocation"]=>
    string(93) "urn:oasis:names:specification:ubl:schema:xsd:Invoice-2 http://localhost/ebiz/ws/Invoice.xsd"
  }
}

Web服務調用的結果是:

SOAP-ERROR: Encoding: object has no 'UBLExtensions' property

正確的SOAP請求應采用什么形式? SOAP請求應使用哪種形式的數組? SOAP是否基於WSDL和XSD理解“ _”元素? 還是單獨數組中的屬性?

在此先感謝您為解決此問題提供的任何幫助...

更新:

更改了wsdl:

<message name="getPlaceInvoiceInput">
    <part name="Invoice" element="xsdl:InvoiceType"/>

SoapClient接受以下請求:

$xmlarr = array(
    "UBLExtensions"=>
    array(
      "UBLExtension"=>
      array(
        "ID"=>"INVOICE1",
        "Name"=>"InvoiceIssuePlaceData",
        "ExtensionAgencyURI"=>"urn:invoice:issueplace",
        "ExtensionContent"=>
        array(
          "InvoiceIssuePlace"=>"MyCity"
        )
      )
    ),
    "UBLVersionID"=>"2.1",
    "ID"=>"01 1206-2406-568",
    ...

這不是我想要的。 我需要鍵中的名稱空間。 為了使SoapClient能夠接受請求數組中的鍵內的名稱空間,例如“ ext:UBLExtensions”,應該更改/添加什么?

我相信您需要在UBLExtensions級別而不是Invoice級別啟動array UBLExtensions您的首要元素視為Invoice ,在其中期望UBLExtensions並在找不到該元素時抱怨:

SOAP-ERROR: Encoding: object has no 'UBLExtensions' property

它不需要第二個Invoice_attr數組,數組元素的名稱Invoice_attr架構中的元素名稱,而不是ref值。 查看ref在您的架構中所指向的內容(您似乎沒有列出它),該element應具有一個name

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM