Hey all,
I have an RFC to HTTP scenario, i have managed so far to execute the RFC, pass those values to an XML which is send to an HTTP (Oanda web) and get a response (this last part is the problem)
i'm trying to map this response from that site to my RFC.Response, but while i see the response in the monitoring i don't see that this is passing in the format i need which would be:
<?xml version="1.0" encoding="UTF-8"?>
<ns0:MT_Response xmlns:ns0="http://test/Fxml">
<RESPONSE>
<EXPR/>
<EXCH/>
<AMOUNT/>
<NPRICES/>
<CONVERSION>
<DATE/>
<ASK/>
<BID/>
</CONVERSION>
</RESPONSE>
</ns0:MT_Response>
I just see the response in the format send back by the site
<RESPONSE>
<EXPR>
<EXCH>
<AMOUNT>
<NPRICES>
<CONVERSION>
<DATE>
<ASK>
<BID>
</CONVERSION>
</RESPONSE>
- So, as you can see, it seems like the response from the web is making no relation to my Message Type (synchronous), and since my MT is not related, i have an empty response from the RFC
- How is this possible? what would i need to do in order to create the response in the xml format i created and fill with the correct payload format?
any help would be apreciated,
Thanks in advance!