0

Silverlightアプリケーションがデータベース全体を追加できるようにSOAPサービスを作成しました。サーバーはPHPで作成されており、すべてをテストするために、PHPクライアントを作成しました。

クライアントがリクエストを正しく送信しているようです。これは、_getLastRequest()を呼び出したときに生成されるものです。

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope 
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:ns1="urn:blogPosts" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"        
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
    SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">

    <SOAP-ENV:Body>
        <ns1:saveBlogPost>
            <userId xsi:type="xsd:int">1</userId>
            <catId xsi:type="xsd:int">1</catId>
            <subCatId xsi:type="xsd:int">1</subCatId>
            <title xsi:type="xsd:string">Web Service Test</title>
            <blogPost xsi:type="xsd:string">Testing</blogPost>
        </ns1:saveBlogPost>
    </SOAP-ENV:Body>

</SOAP-ENV:Envelope>

ただし、サーバーが応答すると、メッセージの一部のみが表示されます。

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope 
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:ns1="urn:blogPosts" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
    SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">

    <SOAP-ENV:Body>
        <ns1:saveBlogPostRe

私が受け取るエラーメッセージは「XMLドキュメントがないようです」です。

あなたが提供できるどんな助けでも大いに感謝されるでしょう。

4

1 に答える 1

-1

私の解決策:SOAPを忘れてRESTを使用する:)

于 2011-04-14T17:15:45.607 に答える