{"id":1359,"date":"2009-09-23T09:33:38","date_gmt":"2009-09-23T13:33:38","guid":{"rendered":"http:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/"},"modified":"2017-02-27T03:45:50","modified_gmt":"2017-02-27T07:45:50","slug":"configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/","title":{"rendered":"Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs"},"content":{"rendered":"<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG\"><img decoding=\"async\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG\" alt=\"\" \/><\/a><\/p>\n<p><strong>mod_wl_ohs<\/strong>:\u00a0is a\u00a0module\u00a0in Oracle HTTP Server 11g R1\u00a0which\u00a0allows requests to be proxied from <strong>O<\/strong>racle <strong>H<\/strong>TTP <strong>S<\/strong>erver (OHS)\u00a0to Oracle WebLogic Server.<\/p>\n<p><strong>mod_weblogic<\/strong>: This module is part of Apache HTTP Server and allows requests to be proxied from Apache HTTP Server to Oracle WebLogic Server.<\/p>\n<p>For\u00a0difference between <strong>mod_wl_ohs<\/strong> and <strong>mod_weblogic<\/strong> <a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/web.1111\/e10144\/under_mods.htm#BABGCGHJ\" target=\"_blank\">click here<\/a><\/p>\n<p><strong><u>Things good to know about configuring OHS infront of weblogic<br \/>\n<\/u><\/strong><\/p>\n<p><strong>1. <\/strong>You can use <strong>Fusion Middleware control \/em<\/strong>\u00a0(register OHS with weblogic Server to access it from control) , <a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/web.1111\/e10144\/getstart.htm#BEHGIDCB\" target=\"_blank\">steps here<\/a>\u00a0 or directly update <strong>httpd.conf<\/strong>\u00a0 (steps given below) to configure <strong>mod_wl_ohs<\/strong><\/p>\n<p><strong>2. <\/strong>If weblogic server is clustered then <strong>mod_wl_ohs <\/strong>uses simple round-robin to forwards requests from HTTP Server to all available weblogic servers.<br \/>\n<strong>mod_wl_ohs<\/strong> directs HTTP requests containing a <strong>cookie<\/strong>, <strong>URL-encoded session<\/strong>, or a <strong>session stored in the POST data<\/strong> to the server in the cluster that originally created the cookie.<\/p>\n<p><strong>3. <\/strong>mod_wl_ohs (as of 11gR1) only support <strong>container level failover<\/strong> and\u00a0<strong>NOT <\/strong>application level failover. mod_wl_ohs continues to route requests to a down application as long as the managed server is up and running.<\/p>\n<p><strong>4.<\/strong>\u00a0Configuration file of <strong>mod_wl_ohs <\/strong>is $INSTANCE_HOME\/ config\/ OHS\/ &lt;component_name&gt;\/ <strong>mod_wl_ohs.conf <\/strong>and included in <strong>$INSTANCE_HOME\/ config\/ OHS\/ &lt;component_name&gt;\/<\/strong> <strong>httpd.conf<\/strong> (entry like<br \/>\n<span style=\"color: #ff0000;\">include &#8220;${ORACLE_INSTANCE}\/ config\/ ${COMPONENT_TYPE}\/${COMPONENT_NAME}\/ mod_wl_ohs.conf&#8221;<\/span>)<\/p>\n<p><strong>5. <\/strong>mod_wl_ohs module file is\u00a0available at\u00a0$ORACLE_HOME\/ ohs\/ modules\/ <strong>mod_wl_ohs.so<\/strong><\/p>\n<p><strong>6.<\/strong> You can either use URL like \/console using <strong>location directive<\/strong> (&lt;Location \/console&gt;) or <strong>MatchExpression<\/strong>\u00a0<strong>directive<\/strong> in <strong>mod_wl_ohs.conf <\/strong>to\u00a0forward requests from HTTP Server to WebLogic Server.<\/p>\n<p><strong>7.<\/strong> While starting OHS on Windows, if you see error like<br \/>\n&#8212;<br \/>\n<span style=\"color: #ff0000;\">C:\/atul\/ fmw\/ instances1\/ config\/ OHS\/ ohs1\/ mod_wl_ohs.conf:<br \/>\nCannot load C:\/ atul\/ fmw\/ ohs\/ modules\/ mod_wl_ohs.so into server: The specified module could not be found<\/span><br \/>\n&#8212;<\/p>\n<p>Check <strong>mod_wl_ohs.so<\/strong> exists in specified location, if yes then<br \/>\nCopy &#8220;$ORACLE_HOME\\ oui\\ lib\\ win32\\ msvcp71.dll&#8221; to &#8220;c:\\ windows\\ system32&#8221; and try again<\/p>\n<p>.<br \/>\n<strong><u>Configure HTTP Serer infront of WebLogic Server<\/u><\/strong><\/p>\n<p><strong>1. <\/strong>Install WebLogic Server and define server listening on port XXXX (7001 in this example)<\/p>\n<p><strong>2.<\/strong> Install Oracle HTTP Sever 11g <a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/doc.1111\/e14260\/install.htm\" target=\"_blank\">steps here<\/a><\/p>\n<p><strong>3.<\/strong> Modify <strong>mod_wl_ohs.conf<\/strong><br \/>\n$ORACLE_INSTANCE\/ config\/ &lt;COMPONENT_TYPE&gt;\/ &lt;COMPONENT_NAME&gt;\/ <strong>mod_wl_ohs.conf<\/strong><\/p>\n<p><strong>a) For weblogic single instance <\/strong><\/p>\n<p>&lt;Location <strong>\/console<\/strong>&gt;<br \/>\nSetHandler weblogic-handler<br \/>\nWebLogicHost <strong>server1<\/strong><br \/>\nWeblogicPort <strong>7001<\/strong><br \/>\n&lt;\/Location&gt;<\/p>\n<p><span style=\"color: #ff0000;\">* This will forward \/console from HTTP server to \/console\u00a0on WebLogic Server server1:7001<br \/>\n<\/span><br \/>\n<strong>b) For Weblogic instances in cluster <\/strong><\/p>\n<p>&lt;Location \/myServerURL&gt;<br \/>\nSetHandler weblogic-handler<br \/>\nWebLogicCluster <strong>server1:7010,server2:7010<\/strong><br \/>\n&lt;\/Location&gt;<\/p>\n<p><span style=\"color: #ff0000;\">* This will forward \/myServerURL from HTTP server to \/myServerURL\u00a0on WebLogic\u00a0Cluster server1:7010 and server2:7010<\/span><br \/>\n<strong>4. <\/strong>Restart HTTP Server<br \/>\n$INSTANCE_HOME\/ bin\/ <strong>opmnctl restartproc ias-component=ohs1<\/strong><\/p>\n<p><strong>5. <\/strong>Test that you can access application deployed on Weblogic using Oracle HTTP Server like<\/p>\n<p><strong>http:\/\/servername:ohs_http_port\/console<\/strong><\/p>\n<p>.<\/p>\n<p><strong><u>References<\/u><\/strong><\/p>\n<ul>\n<li><a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/apirefs.1111\/e14395\/overview.html\" target=\"_blank\">Web Server Plug-Ins with WebLogic Server<\/a><\/li>\n<li><a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/web.1111\/e10144\/under_mods.htm#BABGCGHJ\" target=\"_blank\">mod_wl_ohs in Oracel HTTP Server<\/a><\/li>\n<li><a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/web.1111\/e10144\/getstart.htm#BEHGIDCB\" target=\"_blank\">Configuring mod_wl_ohs in Oracle HTTP Server<\/a><\/li>\n<li><a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e12037\/create_domain.htm#BABDBBCF\" target=\"_blank\">Configure HTTP Server for Administration Server<\/a><\/li>\n<li><a href=\"http:\/\/www.oracle.com\/technology\/products\/ias\/web_cache\/pdf\/WebTier11gR1.pdf\" target=\"_blank\">Oracle Web Tier 11g R1 presentation from Oracle<\/a><\/li>\n<li><a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/doc.1111\/e14260\/install.htm#CHDHCJEC\" target=\"_blank\">Install HTTP Server<\/a><\/li>\n<li><a href=\"http:\/\/download.oracle.com\/docs\/cd\/E12839_01\/core.1111\/e12036\/create_domain.htm#BABDBBCF\" target=\"_blank\">Configure HTTP Server for Administration Server<\/a><\/li>\n<li>865237.1\u00a0 Using OHS for Fusion Middleware 11g Weblogic Domains for ADF 11g<\/li>\n<\/ul>\n<p>Did you get a chance to download Free Interview Questions related to WebLogic? If not, download it here\u00a0<a href=\"http:\/\/k21academy.com\/weblogic-interview-question\">http:\/\/k21academy.com\/weblogic-interview-question<\/a><\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web.png\"><img loading=\"lazy\" decoding=\"async\" class=\" size-medium wp-image-11697 aligncenter\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-300x245.png\" alt=\"web\" width=\"300\" height=\"245\" srcset=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-300x245.png 300w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-150x123.png 150w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-80x65.png 80w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-220x180.png 220w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-122x100.png 122w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-183x150.png 183w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-291x238.png 291w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-507x415.png 507w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-595x487.png 595w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web-727x595.png 727w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2011\/04\/web.png 1000w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<div style=\"padding: 15px; margin-bottom: 15px; background: #ffffde; border: 1px solid #ddd; width: 85%;\" align=\"center\">\n<h2 align=\"left\">Learn Oracle Weblogic Server Administration<\/h2>\n<p>If you want to learn Oracle WebLogic Server Administration with tons of additional features like Live Interactive Sessions, Life time access to membership portal, Free re-taking sessions for next one year, Dedicated Machine to practice, On Job Support and much more<\/p>\n<p><a href=\"https:\/\/k21academy.com\/weblogic\">Click here to\u00a0know more<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>mod_wl_ohs:\u00a0is a\u00a0module\u00a0in Oracle HTTP Server 11g R1\u00a0which\u00a0allows requests to be proxied from Oracle HTTP Server (OHS)\u00a0to Oracle WebLogic Server. mod_weblogic: [&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":[217],"tags":[],"class_list":["post-1359","post","type-post","status-publish","format-standard","hentry","category-weblogic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs -<\/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\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs -\" \/>\n<meta property=\"og:description\" content=\"mod_wl_ohs:\u00a0is a\u00a0module\u00a0in Oracle HTTP Server 11g R1\u00a0which\u00a0allows requests to be proxied from Oracle HTTP Server (OHS)\u00a0to Oracle WebLogic Server. mod_weblogic: [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/\" \/>\n<meta property=\"article:published_time\" content=\"2009-09-23T13:33:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-02-27T07:45:50+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/\",\"name\":\"Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG\",\"datePublished\":\"2009-09-23T13:33:38+00:00\",\"dateModified\":\"2017-02-27T07:45:50+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#primaryimage\",\"url\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG\",\"contentUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs\"}]},{\"@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":"Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs -","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\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/","og_locale":"en_US","og_type":"article","og_title":"Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs -","og_description":"mod_wl_ohs:\u00a0is a\u00a0module\u00a0in Oracle HTTP Server 11g R1\u00a0which\u00a0allows requests to be proxied from Oracle HTTP Server (OHS)\u00a0to Oracle WebLogic Server. mod_weblogic: [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/","article_published_time":"2009-09-23T13:33:38+00:00","article_modified_time":"2017-02-27T07:45:50+00:00","og_image":[{"url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG","type":"","width":"","height":""}],"author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/","url":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/","name":"Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#primaryimage"},"image":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#primaryimage"},"thumbnailUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG","datePublished":"2009-09-23T13:33:38+00:00","dateModified":"2017-02-27T07:45:50+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#primaryimage","url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG","contentUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2009\/09\/ohs_weblogic.JPG"},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/23\/configure-oracle-http-server-infront-of-oracle-weblogic-server-mod_wl_ohs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs"}]},{"@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\/1359","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=1359"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/1359\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=1359"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=1359"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=1359"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}