Skip to main content
Question

How to call Plsql_Rest_Sender_API.Call_Rest_EndPoint3 in IFS10

  • January 21, 2026
  • 4 replies
  • 72 views

Forum|alt.badge.img+1
  • Do Gooder (Customer)

Hi,

I’m trying to consume a REST api and get back information synchronously in IFS10. Can anyone let me know how to use this procedure.

How to call Plsql_Rest_Sender_API.Call_Rest_EndPoint3.

Thank you.

4 replies

Forum|alt.badge.img+1
  • Author
  • Do Gooder (Customer)
  • January 22, 2026

This is what I’m trying.

  ifsapp.Plsql_Rest_Sender_API.Call_Rest_EndPoint3(rest_service_     => NULL,
                                            receiver_         => 'GetData',
                                            xml_              => l_xml,
                                            url_params_       => Url_params,
                                            http_method_      => 'GET',
                                            http_req_headers_ => 'Content-Type: application/json',
                                            query_parameters_ => Query_params);

And I get the error

 

ORA-20105: PlsqlapServer.ERRINV: Message of type 'APPLICATION_MESSAGE' doesn't match any routing rule
ORA-06512: at "IFSAPP.ERROR_SYS", line 140
ORA-06512: at "IFSAPP.ERROR_SYS", line 341
ORA-06512: at "IFSAPP.PLSQLAP_SERVER_API", line 1983
ORA-06512: at "IFSAPP.PLSQLAP_SERVER_API", line 2101
ORA-06512: at "IFSAPP.PLSQLAP_SERVER_API", line 576
ORA-06512: at "IFSAPP.PLSQL_REST_SENDER_API", line 1165
ORA-06512: at "IFSAPP.PLSQL_REST_SENDER_API", line 1190
ORA-06512: at "IFSAPP.PLSQL_REST_SENDER_API", line 639
ORA-06512: at "IFSAPP.PLSQL_REST_SENDER_API", line 665
ORA-06512: at line 20

View program sources of error stack?


Forum|alt.badge.img
  • Do Gooder (Partner)
  • March 5, 2026

Hi, did you find a solution for this?
I'm also trying to use this since xml_ is IN OUT parameter, but I got this error
 

 


Forum|alt.badge.img+10
  • Hero (Customer)
  • March 5, 2026

Hi ​@msr81 

Did you resolve this?  I use Plsql_Rest_Sender_API.Call_Rest_EndPoint3 in IFS Cloud and the rest_service_ parameter is set to the outbound ROUTING_RULE.

 

Hi ​@SenujaJ  

Are you able to show the actual call to Plsql_Rest_Sender_API.Call_Rest_EndPoint3?

 

Best regards,

MMck


Forum|alt.badge.img
  • Do Gooder (Partner)
  • March 6, 2026

Hi ​@MMcK 
I used Call_Rest_EndPoint2 since I’m using JSON-type inputs in APPS10. Now I’m struggling with the authentication process.

Once I pass the http_req_headers_ Authorization header, I’m getting this error:

Failure while obtaining result: java.lang.ArrayIndexOutOfBoundsException: 2 
Caused by: commonj.work.WorkException: java.lang.ArrayIndexOutOfBoundsException: 2 
Caused by: java.lang.ArrayIndexOutOfBoundsException: 2

If you are familiar with this, please let me know.

Best Regards,

SenujaJ