我通过 Web 服务向 OSC 发送了一个以 Base64 编码的文件附件,我需要在客户门户上显示该附件。现在我无法在对象资源管理器中检索文件附件。我应该去哪里看?请问有什么建议吗?
这是我使用的一段xml(顺便说一句,webservices请求工作正常):
<n0:RNObjects xsi:type="n1:GenericObject">
<!-- Value to check in OSC // concatenation of Source System ID and Ticket ID -->
<n2:LookupName>TEST2023</n2:LookupName>
<!-- Object reference in OSC // Statutory Control -->
<n1:ObjectType>
<n1:Namespace>testspace</n1:Namespace>
<n1:TypeName>typename</n1:TypeName>
</n1:ObjectType>
<!-- File Attachments -->
<n3:FileAttachments>
<n3:FileAttachmentList xsi:type="n3:FileAttachment" action="add">
<n3:ContentType>application/octet-stream</n3:ContentType>
<n3:Data>dGVzdA==</n3:Data>
<n3:FileName>test.csv</n3:FileName>
<n3:Name>Test File Attachments</n3:Name>
</n3:FileAttachmentList>
</n3:FileAttachments>
</n0:RNObjects>