Как получить свойство полезной нагрузки XML - PullRequest
0 голосов
/ 11 февраля 2019

У меня есть полезная нагрузка, как показано ниже.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
        <soapenv:Body>
            <response xmlns="http://edip-api.macausjm-glp.com/apiservice">
                <recipientAddress>zoehuang@asqimacau.com,well168168@gmail.com</recipientAddress>
                <subject>Test email</subject>
                <content>
                    <html>
                        <h1>this is the title</h1>
                        <br />
                        <p>this is the content................</p>
                    </html>
                </content>
            </response>
        </soapenv:Body>
    </soapenv:Envelope> {org.apache.synapse.mediators.builtin.LogMediator}

Мне нужно получить значение контента, как показано ниже, как я могу получить свойство?

 <html>
     <h1>this is the title</h1>
     <br />
     <p>this is the content................</p>
 </html>

1 Ответ

0 голосов
/ 14 февраля 2019

Чтобы сохранить дерево XML в свойстве, используйте type = 'OM'

Итак <property name="testAmanda" expression="//html" type="OM" />

...