我的XML请求看起来像这样:
<ns:complete>
<ns:identifier>23265</ns:identifier>
<ns:taskData><![CDATA[<sch:SubscriptionApprovalResponse xmlns:sch="http://workflow.subscription.apimgt.carbon.wso2.org">
<sch:status>APPROVED</sch:status>
<sch:workflowExternalRef>#(ref)</sch:workflowExternalRef>
<sch:description></sch:description>
</sch:SubscriptionApprovalResponse>]]></ns:taskData>
</ns:complete>
我正在从CDATA主体的外部传递#(ref),但它没有读取它。
我在做错什么吗?
答案 0 :(得分:0)
是的,因为您试图在CDATA
节中使用嵌入式表达式。没有完整的工作示例就不能说。
您应该分两步执行此操作,或使用字符串replace
:https://github.com/intuit/karate#replace
* def baz = 'blah'
* def foo = <bar>#(baz)</bar>
* def xml = <foo><Response><![CDATA[#(foo)]]></Response></foo>
* match xml == <foo><Response><![CDATA[<bar>blah</bar>]]></Response></foo>
* def xml = <foo><Response><![CDATA[<bar>@@baz@@</bar>]]></Response></foo>
* replace xml.@@baz@@ = 'blah'
* match xml == <foo><Response><![CDATA[<bar>blah</bar>]]></Response></foo>