Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Calling rest services from another application

DLopezApr 26 2016 — edited Apr 26 2016

Hi,

Is it possible to call a Rest Service from another Service application?

Basically I have two service applications, one for Employees and one for Regions.

Now I want to call a service from Regions in a Employees service, but I don't want a DataControl.

Is it possible?

Thanks

Comments

cormaco
Answer

Here is one way:

with input_string(ins) as (
    select 'Chesterton, Mark;#789;#Erbach, Magnus;#786' from dual union all
    select 'Phillips, Edward;#744;#Bubba, Matthew;#782;#Mahony, Chloe;#779' from dual union all
    select 'Corbett, Paul;#784;#Johnson, Ben;#392;#Smith, Adam;#775' from dual
)
select regexp_substr(ins,',\ *([^;]+)',1,1,null,1) regex from input_string

REGEX               
--------------------
Mark                
Edward              
Paul
                
Marked as Answer by User_AS6XD · Oct 14 2021
1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on May 24 2016
Added on Apr 26 2016
2 comments
125 views