最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

iics - How to pass the <!DOCTYPE in Informatica Rest service request body - Stack Overflow

programmeradmin0浏览0评论

I have a rest API which I am trying to call from Informatica (IICS) service call (Integration Application process).The Target rest API is POST rest API which accept XML in body and the first line of request XML is <!DOCTYPE.

The issue is when I am trying to assign the request in IICS service call as formula I am getting validation error as "XPST0003: Expected '--' or '[CDATA[' after '<!".

Thanks for your help.

I have a rest API which I am trying to call from Informatica (IICS) service call (Integration Application process).The Target rest API is POST rest API which accept XML in body and the first line of request XML is <!DOCTYPE.

The issue is when I am trying to assign the request in IICS service call as formula I am getting validation error as "XPST0003: Expected '--' or '[CDATA[' after '<!".

Thanks for your help.

Share Improve this question asked Jan 17 at 15:51 Upendra SinghUpendra Singh 371 silver badge5 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You cannot directly include a <!DOCTYPE> declaration within the XML payload sent in the body of a REST request within Informatica IICS.

To pass the <!DOCTYPE in the Informatica REST service request body, you can escape the <!DOCTYPE declaration as follows:

<![CDATA[<!DOCTYPE your-doctype-here>]>
发布评论

评论列表(0)

  1. 暂无评论