Skip to Main Content

APEX

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!

APEX and EBS custom integration problem. icx_sec.getsessioncookie cannot return session id

DarjanSep 22 2015 — edited Sep 22 2015

Hello everybody,

I have problem with APEX 5.0 and EBS integration, in a custom way, with session as parameter in cookie.

Session id should be taken by function apps.icx_sec.getsessioncookie (see query below).

SELECT fnd_user.user_name

      INTO   p_userid

      FROM   icx_sessions,

             fnd_user

      WHERE  session_id = apps.icx_sec.getsessioncookie

      AND    icx_sessions.user_id = fnd_user.user_id

      AND    last_connect + (time_out / 24 / 60) > SYSDATE;

That is not first time to create integration in this way. But this time I have problem. I do not have access to APEX and EBS servers, and system administrator probably close some inbound port on servers. Because of that, function apps.icx_sec.getsessioncookie cannot return session id from cookie. Does anybody have idea what could be problem?

I want to say that EBS and APEX are in the same database, but application servers are on different locations.

Also it is very important to say that last week that integration was working perfectly.

Regards,

D.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 20 2015
Added on Sep 22 2015
2 comments
1,210 views