Question
Integration Wizard was not able to create a XML Stream rule for REST Connector
We have a REST Service that has to be consumed by Pega 7.1.7.
Ran the integration wizard to create the REST connector. It was able to create XML Parse for the input and classes and properties but not the XML Stream rule.
I suspect this is because the input request to the service sample is as below. It has SOAP Envelope along with the other input tags. Does this preventing the wizard to create a XML Stream rule.
<SOAP-ENV:ENVELOPE SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:BODY>
<TAG1>
<USERID></USERID>
<PASSWORD></PASSWORD>
</TAG1>
<TAG2>
<ROW id="0"></ROW>
</TAG2>
</SOAP-ENV:BODY>
</SOAP-ENV:ENVELOPE>
Let me know if there is an alternative for passing the request to the REST service.