Enable SSO login in Oracle APEX
up vote
0
down vote
favorite
Need help enabling SSO login in Oracle APEX application, my company supports SAML 2.0, they are asking me what nameid will be used. I don't know if SSO is an option in APEX or not? Any help is appreciated guys. Thanks.
oracle oracle-apex
add a comment |
up vote
0
down vote
favorite
Need help enabling SSO login in Oracle APEX application, my company supports SAML 2.0, they are asking me what nameid will be used. I don't know if SSO is an option in APEX or not? Any help is appreciated guys. Thanks.
oracle oracle-apex
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Need help enabling SSO login in Oracle APEX application, my company supports SAML 2.0, they are asking me what nameid will be used. I don't know if SSO is an option in APEX or not? Any help is appreciated guys. Thanks.
oracle oracle-apex
Need help enabling SSO login in Oracle APEX application, my company supports SAML 2.0, they are asking me what nameid will be used. I don't know if SSO is an option in APEX or not? Any help is appreciated guys. Thanks.
oracle oracle-apex
oracle oracle-apex
edited Nov 11 at 13:23
Littlefoot
18.5k51333
18.5k51333
asked Nov 11 at 8:39
Mohamed Saleh
6713
6713
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
I don't know SAML, but - as far as SSO in Apex is concerned, here's how to do that. See if it helps.
Suppose that there's an application which is used as a "menu" that lets you navigate through different Apex applications. In that menu application, go to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "My menu auth. Scheme")
> Session Cookie Attributes > type MY_MENU_COOKIE into „Cookie name“ field
If application menu is the list item, its query might look like this: it selects all applications available to user logged in as :APP_USER
(those user:application pairs are stored in the oper_x_app
table). Pay attention to &SESSION.
- without it, it won't work:
select
null,
app_name labelValue,
'http://szg01lcp1.data.centar:8084/apex/f?p=' || id_app ||':1:&SESSION.' targetValue,
null is_current -- ^^^^^^^^^
from applications -- This!
where id_app in (select id_app from oper_x_app
where username = :APP_USER
)
order by app_name
Now, for all those applications, you have to do the same: navigate to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "Copy of My menu auth. Scheme")
> Session Cookie Attributes
> type MY_MENU_COOKIE into „Cookie name“ field
Go to that application's
Navigation menu
> Create list entry
- name the entry "My apex menu"
- target type URL should look like this; &SESSION. is again important!
http://your_server:8084/apex/f?p=118:1:&SESSION.
^^^^^^^^^
This!
That's all; using the "My apex menu" navigation menu entry, you can go to the central place of your applications and switch among them without having to log on all over again.
add a comment |
up vote
0
down vote
This article should give you some guidance:
https://insum.ca/saml2-single-sign-on-with-oracle-application-express/
TL;DR
- Use Apache HTTPD as a web proxy for APEX.
- Install and configure the mod_auth_mellon module for the web server.
- Set up the application on the identity management system of choice.
- For the APEX application, use the HTTP Header Authentication Scheme. The HTTP Header variable should have been configured when mod_auth_mellon was installed and set up.
HTH.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I don't know SAML, but - as far as SSO in Apex is concerned, here's how to do that. See if it helps.
Suppose that there's an application which is used as a "menu" that lets you navigate through different Apex applications. In that menu application, go to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "My menu auth. Scheme")
> Session Cookie Attributes > type MY_MENU_COOKIE into „Cookie name“ field
If application menu is the list item, its query might look like this: it selects all applications available to user logged in as :APP_USER
(those user:application pairs are stored in the oper_x_app
table). Pay attention to &SESSION.
- without it, it won't work:
select
null,
app_name labelValue,
'http://szg01lcp1.data.centar:8084/apex/f?p=' || id_app ||':1:&SESSION.' targetValue,
null is_current -- ^^^^^^^^^
from applications -- This!
where id_app in (select id_app from oper_x_app
where username = :APP_USER
)
order by app_name
Now, for all those applications, you have to do the same: navigate to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "Copy of My menu auth. Scheme")
> Session Cookie Attributes
> type MY_MENU_COOKIE into „Cookie name“ field
Go to that application's
Navigation menu
> Create list entry
- name the entry "My apex menu"
- target type URL should look like this; &SESSION. is again important!
http://your_server:8084/apex/f?p=118:1:&SESSION.
^^^^^^^^^
This!
That's all; using the "My apex menu" navigation menu entry, you can go to the central place of your applications and switch among them without having to log on all over again.
add a comment |
up vote
0
down vote
I don't know SAML, but - as far as SSO in Apex is concerned, here's how to do that. See if it helps.
Suppose that there's an application which is used as a "menu" that lets you navigate through different Apex applications. In that menu application, go to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "My menu auth. Scheme")
> Session Cookie Attributes > type MY_MENU_COOKIE into „Cookie name“ field
If application menu is the list item, its query might look like this: it selects all applications available to user logged in as :APP_USER
(those user:application pairs are stored in the oper_x_app
table). Pay attention to &SESSION.
- without it, it won't work:
select
null,
app_name labelValue,
'http://szg01lcp1.data.centar:8084/apex/f?p=' || id_app ||':1:&SESSION.' targetValue,
null is_current -- ^^^^^^^^^
from applications -- This!
where id_app in (select id_app from oper_x_app
where username = :APP_USER
)
order by app_name
Now, for all those applications, you have to do the same: navigate to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "Copy of My menu auth. Scheme")
> Session Cookie Attributes
> type MY_MENU_COOKIE into „Cookie name“ field
Go to that application's
Navigation menu
> Create list entry
- name the entry "My apex menu"
- target type URL should look like this; &SESSION. is again important!
http://your_server:8084/apex/f?p=118:1:&SESSION.
^^^^^^^^^
This!
That's all; using the "My apex menu" navigation menu entry, you can go to the central place of your applications and switch among them without having to log on all over again.
add a comment |
up vote
0
down vote
up vote
0
down vote
I don't know SAML, but - as far as SSO in Apex is concerned, here's how to do that. See if it helps.
Suppose that there's an application which is used as a "menu" that lets you navigate through different Apex applications. In that menu application, go to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "My menu auth. Scheme")
> Session Cookie Attributes > type MY_MENU_COOKIE into „Cookie name“ field
If application menu is the list item, its query might look like this: it selects all applications available to user logged in as :APP_USER
(those user:application pairs are stored in the oper_x_app
table). Pay attention to &SESSION.
- without it, it won't work:
select
null,
app_name labelValue,
'http://szg01lcp1.data.centar:8084/apex/f?p=' || id_app ||':1:&SESSION.' targetValue,
null is_current -- ^^^^^^^^^
from applications -- This!
where id_app in (select id_app from oper_x_app
where username = :APP_USER
)
order by app_name
Now, for all those applications, you have to do the same: navigate to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "Copy of My menu auth. Scheme")
> Session Cookie Attributes
> type MY_MENU_COOKIE into „Cookie name“ field
Go to that application's
Navigation menu
> Create list entry
- name the entry "My apex menu"
- target type URL should look like this; &SESSION. is again important!
http://your_server:8084/apex/f?p=118:1:&SESSION.
^^^^^^^^^
This!
That's all; using the "My apex menu" navigation menu entry, you can go to the central place of your applications and switch among them without having to log on all over again.
I don't know SAML, but - as far as SSO in Apex is concerned, here's how to do that. See if it helps.
Suppose that there's an application which is used as a "menu" that lets you navigate through different Apex applications. In that menu application, go to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "My menu auth. Scheme")
> Session Cookie Attributes > type MY_MENU_COOKIE into „Cookie name“ field
If application menu is the list item, its query might look like this: it selects all applications available to user logged in as :APP_USER
(those user:application pairs are stored in the oper_x_app
table). Pay attention to &SESSION.
- without it, it won't work:
select
null,
app_name labelValue,
'http://szg01lcp1.data.centar:8084/apex/f?p=' || id_app ||':1:&SESSION.' targetValue,
null is_current -- ^^^^^^^^^
from applications -- This!
where id_app in (select id_app from oper_x_app
where username = :APP_USER
)
order by app_name
Now, for all those applications, you have to do the same: navigate to
Shared Components
> Authentication Schemes
> choose Current scheme (e.g. "Copy of My menu auth. Scheme")
> Session Cookie Attributes
> type MY_MENU_COOKIE into „Cookie name“ field
Go to that application's
Navigation menu
> Create list entry
- name the entry "My apex menu"
- target type URL should look like this; &SESSION. is again important!
http://your_server:8084/apex/f?p=118:1:&SESSION.
^^^^^^^^^
This!
That's all; using the "My apex menu" navigation menu entry, you can go to the central place of your applications and switch among them without having to log on all over again.
answered Nov 11 at 13:23
Littlefoot
18.5k51333
18.5k51333
add a comment |
add a comment |
up vote
0
down vote
This article should give you some guidance:
https://insum.ca/saml2-single-sign-on-with-oracle-application-express/
TL;DR
- Use Apache HTTPD as a web proxy for APEX.
- Install and configure the mod_auth_mellon module for the web server.
- Set up the application on the identity management system of choice.
- For the APEX application, use the HTTP Header Authentication Scheme. The HTTP Header variable should have been configured when mod_auth_mellon was installed and set up.
HTH.
add a comment |
up vote
0
down vote
This article should give you some guidance:
https://insum.ca/saml2-single-sign-on-with-oracle-application-express/
TL;DR
- Use Apache HTTPD as a web proxy for APEX.
- Install and configure the mod_auth_mellon module for the web server.
- Set up the application on the identity management system of choice.
- For the APEX application, use the HTTP Header Authentication Scheme. The HTTP Header variable should have been configured when mod_auth_mellon was installed and set up.
HTH.
add a comment |
up vote
0
down vote
up vote
0
down vote
This article should give you some guidance:
https://insum.ca/saml2-single-sign-on-with-oracle-application-express/
TL;DR
- Use Apache HTTPD as a web proxy for APEX.
- Install and configure the mod_auth_mellon module for the web server.
- Set up the application on the identity management system of choice.
- For the APEX application, use the HTTP Header Authentication Scheme. The HTTP Header variable should have been configured when mod_auth_mellon was installed and set up.
HTH.
This article should give you some guidance:
https://insum.ca/saml2-single-sign-on-with-oracle-application-express/
TL;DR
- Use Apache HTTPD as a web proxy for APEX.
- Install and configure the mod_auth_mellon module for the web server.
- Set up the application on the identity management system of choice.
- For the APEX application, use the HTTP Header Authentication Scheme. The HTTP Header variable should have been configured when mod_auth_mellon was installed and set up.
HTH.
answered Nov 11 at 17:30
Adrian P
46137
46137
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53247086%2fenable-sso-login-in-oracle-apex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown