{"id":1730,"date":"2010-05-13T08:01:35","date_gmt":"2010-05-13T12:01:35","guid":{"rendered":"http:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/"},"modified":"2010-05-15T19:28:44","modified_gmt":"2010-05-15T23:28:44","slug":"oracle-access-manager-10143-integration-with-weblogic-server","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/","title":{"rendered":"Oracle Access Manager 10.1.4.3 integration with WebLogic Server"},"content":{"rendered":"<p>Until many people have asked me for the integration aspects of Oracle Access Manager 10.1.4.3 (latest version) with WebLogic Server, it did not strike in my mind to do a write up on this. Anyway better late than never.<br \/>\nBefore we go into the integration process, check <a href=\"https:\/\/onlineappsdba.com\/index.php\/2010\/03\/09\/oam-integration-with-weblogic-for-different-versions\/\">this.<\/a><\/p>\n<p>Now you should be having a fair idea on the difference between integration aspects relative to various OAM versions.<\/p>\n<p>Let me give you a background of this integration aspects.<\/p>\n<p><strong>How Single Sign-On works<\/strong>:<\/p>\n<p>Oracle Platform Security Services (OPSS) comprise Oracle WebLogic Server\u2019s internal security framework. A WebLogic domain uses a separate software component called an Authentication provider to store, transport and provide access to security data.<\/p>\n<p>Oracle Fusion Middleware 11g supports two new single sign-on solutions that applications can use to establish and enforce perimeter authentication:<\/p>\n<p>\u2022\u00a0\u00a0 \u00a0Oracle Access Manager Solution<br \/>\n\u2022\u00a0\u00a0 \u00a0Oracle Single Sign-On solution<\/p>\n<p>Oracle Access Manager is part of Oracle\u2019s enterprise class suite of products for identity management and security. The Oracle Authentication provider is a new component that works with Oracle WebLogic server. An application can use either or both of the Oracle<br \/>\nAccess Manager Authentication provider features, each of which enables a specific racle Access Manager function for WebLogic users:<\/p>\n<p>\u2022\u00a0\u00a0 \u00a0<strong>Identity Asserter for Single Sign-On<\/strong><br \/>\no\u00a0\u00a0 \u00a0This function uses Oracle Access Manager authentication services and also validates already-authenticated Oracle Access Manager users through ObSSOCookie and creates a WebLogic \u2013 authenticated session. It also provides single sign-on between webgates and portals.<\/p>\n<p>\u2022\u00a0\u00a0 \u00a0<strong>Authenticator<\/strong><br \/>\no\u00a0\u00a0 \u00a0This function uses Oracle Access Manager authentication services to authenticate users (based on username and password) who access applications deployed in WebLogic server.<\/p>\n<p>This document describes the setup and configuration of Identity Asserter for Single Sign-On for the applications deployed in WebLogic server.<\/p>\n<p><strong>Identity Asserter: <\/strong><\/p>\n<p>The Authentication provider for Oracle Access Manager can be configured as the Identity Asserter for single sign-on. In this case, the provider protects Web resources<br \/>\nonly.<\/p>\n<p>This Identity Asserter for single sign-on uses perimeter authentication performed by WebGate on the Web Tier and the ObSSOCookie to assert the identity of users who try<br \/>\nto access protected WebLogic resources.<\/p>\n<p>All requests are routed to a reverse proxy Web Server; requests are intercepted by WebGate. The user is challenged for credentials based on the authentication scheme<br \/>\nthat is configured within Oracle Access Manager. The recommended scheme is Form (form-based login).<\/p>\n<p>If authentication succeeds, WebGate generates an ObSSOCookie, the Web server mod_WebLogic module forwards the request to Oracle WebLogic Server, which, in turn,<br \/>\ninvokes Oracle Access Manager Identity Asserter for single sign-on (with the request and the cookie) for validation.<\/p>\n<p>WebLogic Security Service invokes Oracle Access Manager Identity Asserter for single sign-on, which gets the ObSSOCookie from the incoming request, and populates the<br \/>\nsubject with WLSUserImpl principal. The Identity Asserter for single sign-on also adds the WLSGroupImpl principal that corresponds to the user\u2019s groups, if any. Oracle<br \/>\nAccess Manager validates the cookie.<\/p>\n<p>The architecture diagram goes almost similiar to the one as <a href=\"https:\/\/onlineappsdba.com\/index.php\/2010\/02\/24\/integrating-oracle-access-manager-with-weblogic-server-10g\/\">here <\/a>except that the SSPI Connector is not explicitly installed\u00a0 in the WebLogic Server (instead there is an implementation jar file copied to the WebLogic server location).Here is the architecture diagram.<\/p>\n<p>\u00a0.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif\" align=\"middle\" height=\"400\" width=\"576\" \/><\/p>\n<p>.<\/p>\n<h4>Oracle Access Manager Identity Asserter with Web-only Applications<\/h4>\n<ol>\n<li>A user attempts to access an Oracle Access Manager protected Web application that is deployed on the Oracle WebLogic Server.<\/li>\n<li>WebGate on a reverse proxy Web server intercepts the request and queries the Oracle Access Manager Access Server to check if the requested resource is protected.<\/li>\n<li>If the requested resource is protected, WebGate challenges the user for credentials based on the type of Oracle Access Manager authentication scheme configured for the resource (Oracle recommends Form Login). The user presents credentials such as user name and password.<\/li>\n<li>WebGate forwards the authentication request to the Access Server.<\/li>\n<li>Access Server validates the user credentials against those stored in user directory and returns the response back to WebGate. Processing continues based on:<\/li>\n<\/ol>\n<p>Successful Authentication: Processing continues with Step 6.<\/p>\n<p>Authentication Not Successful: The login form appears asking the user for credentials again; no error is reported.<\/p>\n<ol>\n<li>Access Server generates the session token and sends it to the WebGate. WebGate sets the ObSSOCookie and value as that returned from Access Server. The Web server forwards this request to the proxy, which in turn forwards the request to the Oracle WebLogic Server using the mod_weblogic plug-in.<\/li>\n<li>mod_webLogic forwards requests as directed by its configuration.<\/li>\n<li>WebLogic Server security service invokes the Oracle Access Manager Identity Asserter for single sign-on, which is configured to accept the tokens of type &#8220;ObSSOCookie&#8221;. The Identity Asserter initializes a CallbackHandler with the ObSSOCookie. In addition, the Identity Asserter sets up NameCallback with the username for downstream LoginModules.<\/li>\n<li>Oracle WebLogic Security service authorizes the user and allows access to the requested resource.<\/li>\n<li>A response is sent back to the reverse proxy Web server.<\/li>\n<li>A response is sent back to the browser.<\/li>\n<\/ol>\n<p>As part of this integration process, I assume that OAM is already installed, up and running.<\/p>\n<p>Now, we dive into the actual integration process.<\/p>\n<ol>\n<li>When you use the Oracle Access Manager Identity Asserter, all web.xml files in the application EAR\/WAR file must specify CLIENT-CERT in the element auth-method for the appropriate realm as shown below.&lt;login-config&gt;<br \/>\n&lt;auth-method&gt;CLIENT-CERT&lt;\/auth-method&gt;<br \/>\n&lt;realm-name&gt;myRealm&lt;\/realm-name&gt;<br \/>\n&lt;\/login-config&gt;<\/li>\n<li>Confirming mod_weblogic for Oracle Access Manager Identity Asserter:Open the httpd.conf file of OHS 11g server and add\/uncomment the text as shown below.\n<p>&lt;IfModule mod_weblogic.c&gt;<\/p>\n<p>WebLogicHost oam.oracle.com<\/p>\n<p>WebLogicPort 7002<\/p>\n<p>&lt;\/IfModule&gt;<\/p>\n<p>&lt;Location \/CustomWebApplication&gt;<\/p>\n<p>SetHandler weblogic-handler<\/p>\n<p>&lt;\/Location&gt;<\/li>\n<li>Create OAM Objects such as host identifiers, authentication scheme, webgate profile and policy domain using OAM Configuration tool as shown below.<\/li>\n<\/ol>\n<p>export JAVA_HOME=\/identity_mgmt\/Oracle\/Middleware\/jdk160_11<\/p>\n<p>mahendra&gt;$JAVA_HOME\/bin\/java -jar \/installs\/11g\/11g\/oam\/oamcfgtool\/oamcfgtool.jar mode=CREATE app_domain=IASSO_App1 web_domain=IASSO_App1 protected_uris=&#8221;\/Marketing\/index.jsp,\/Finance\/home.jsp&#8221; app_agent_password=welcome1 ldap_host=itechdemo.us.oracle.com ldap_port=3060 ldap_userdn=orcladmin ldap_userpassword=welcome1 oam_aaa_host=itechdemo.us.oracle.com oam_aaa_port=6021<\/p>\n<p>App_domain \u2013 policy domain name to be created<br \/>\nWeb_domain \u2013 host identifier will be created with this name.<br \/>\nwebgate &#8211; profile will be created with this Web_domain_AG.<br \/>\nProtected_uris \u2013 resources to be protected<br \/>\nApp_agent_password \u2013 webgate password<br \/>\nLdap_host\u00a0 &#8211; OID hostname<br \/>\nLdap_port \u2013 OID port<br \/>\nLdap_userdn \u2013 OID administrator username<br \/>\nLdap_userpassword \u2013 OID admin password<br \/>\nOam_aaa_host \u2013 hostname where access server is installed<br \/>\nOam_aaa_port \u2013 access server port (in this case, 6021)<\/p>\n<p>4. Modify the host identifier to include your hostname:weblogic port and the hostname:proxy server port details.<\/p>\n<p>5. Add the resource type wl_authen with following details.<\/p>\n<p>Resource Name: wl_authen<\/p>\n<p>Resource Matching: Case Insensitive<\/p>\n<p>Resource Operation: Login<\/p>\n<p>6. Install the WebGate on the OHS web server.<\/p>\n<p>7. Check the login.html presence in the WebGate installed directory under WebGate_dir\/access\/oamsso\/login.html.<\/p>\n<p>8. Copy the oamAuthenProvider.jar to the location WebLogic_dir\/wlsserver_10.3\/server\/lib\/mbeantypes.<\/p>\n<p>9.\u00a0 Check the OHS httpd.conf file at the end of webgate configuration parameters for the presence of the field oamsso alias to ensure that webgate can find the login form.<\/p>\n<p>10.\u00a0 Goto the WebLogic console, myrealm, and click on the Providers tab.<\/p>\n<p>11. Create two providers one as LDAPAuthenticator and OAMIdentityAsserter.<\/p>\n<p>12.\u00a0 In the OAMIdentityAsserter provider specific tab, specify the Access Server details like port, host name etc.,<\/p>\n<p>13.\u00a0 Similarly in the LDAPAuthenticator, provide the LDAP details.<\/p>\n<p>14. Mark the flags for LDAPAuthenticator as SUFFICIENT and for OAMIDAsserter as REQUIRED. Change the flag values for DefaultAuthenticator to SUFFICIENT.<\/p>\n<p>15. Reorder the providers as OAMIDAsserter, LDAPAuthenticator, DefaultAuthenticator, Default Asserter.<\/p>\n<p>16.\u00a0 Now test the WebApplication as you should be able to see the login form to enter your credentials. Upon entering the valid login details, you should be able to see the requested resource.<\/p>\n<p><strong>References:<\/strong><\/p>\n<p><a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/osso.htm#CHDGCACF\">OAM Documentation <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Until many people have asked me for the integration aspects of Oracle Access Manager 10.1.4.3 (latest version) with WebLogic Server, [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[40,42,217],"tags":[],"class_list":["post-1730","post","type-post","status-publish","format-standard","hentry","category-sso","category-troubleshooting","category-weblogic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle Access Manager 10.1.4.3 integration with WebLogic Server -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle Access Manager 10.1.4.3 integration with WebLogic Server -\" \/>\n<meta property=\"og:description\" content=\"Until many people have asked me for the integration aspects of Oracle Access Manager 10.1.4.3 (latest version) with WebLogic Server, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/\" \/>\n<meta property=\"article:published_time\" content=\"2010-05-13T12:01:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2010-05-15T23:28:44+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/\",\"name\":\"Oracle Access Manager 10.1.4.3 integration with WebLogic Server -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif\",\"datePublished\":\"2010-05-13T12:01:35+00:00\",\"dateModified\":\"2010-05-15T23:28:44+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#primaryimage\",\"url\":\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif\",\"contentUrl\":\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle Access Manager 10.1.4.3 integration with WebLogic Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle Access Manager 10.1.4.3 integration with WebLogic Server -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/","og_locale":"en_US","og_type":"article","og_title":"Oracle Access Manager 10.1.4.3 integration with WebLogic Server -","og_description":"Until many people have asked me for the integration aspects of Oracle Access Manager 10.1.4.3 (latest version) with WebLogic Server, [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/","article_published_time":"2010-05-13T12:01:35+00:00","article_modified_time":"2010-05-15T23:28:44+00:00","og_image":[{"url":"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif","type":"","width":"","height":""}],"author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/","url":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/","name":"Oracle Access Manager 10.1.4.3 integration with WebLogic Server -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#primaryimage"},"image":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#primaryimage"},"thumbnailUrl":"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif","datePublished":"2010-05-13T12:01:35+00:00","dateModified":"2010-05-15T23:28:44+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#primaryimage","url":"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif","contentUrl":"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e10043\/img\/jisec031.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/05\/13\/oracle-access-manager-10143-integration-with-weblogic-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"Oracle Access Manager 10.1.4.3 integration with WebLogic Server"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/1730","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=1730"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/1730\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=1730"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=1730"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=1730"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}