从 SOAP UI 发送 byte[] 数据

sending byte[] data from SOAP UI

我有一个 SOAP API 端点接收 byte[] 数据。现在我想从 SOAP UI 开始测试。但我真的卡住了,我应该如何通过 soap ui 发送 byte[] 数据?我尝试使用 base64 编码的字符串,但输出不是预期的(我发送 signature/public 关键数据用于验证目的,因此验证不起作用,这意味着我发送的数据不正确)。 我做错了什么?或者我应该怎么做?
有什么建议吗?

这应该有效。

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:x-="http://xml.apache.org/xml-soap" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
.....

    <x-:item>
    <x-:key>content</x-:key>
    <x-:value xsi:type="xsd:base64Binary">cid:1234567890</x-:value>
    </x-:item>

......
</soapenv:Body>
</soapenv:Envelope>