Oracle Fusion Middleware 11g R1 (11.1.1.9.0) released

Oracle announced the availability of the following releases:

Oracle Fusion Middleware 11g R1 (11.1.1.9.0)
Oracle Business Intelligence 11g R1 (11.1.1.9.0)
Oracle Identity and Access Management 11g R2 (11.1.2.3.0)
Media is being made available for download on the Oracle Technology Network (OTN), and the Oracle Software Delivery Cloud (OSDC).
Related information for these releases is given below:
1. Oracle Fusion Middleware 11g R1 (11.1.1.9.0)
Includes new content for the following products:
Oracle SOA Suite 11g R1 (11.1.1.9.0)
Oracle Service Bus 11g R1 (11.1.1.9.0)
Oracle Application Integration Architecture Foundation Pack 11g R1 (11.1.1.9.0)
Oracle Data Integrator 11g R1 (11.1.1.9.0)
Oracle Enterprise Data Quality 11g R1 (11.1.1.9.0)
Oracle WebCenter Portal 11g R1 (11.1.1.9.0)
Oracle WebCenter Content 11g R1 (11.1.1.9.0)
Oracle Identity Management 11g R1 (11.1.1.9.0)
Oracle Identity Manager Connectors 11.1.2.2.0
Oracle Fusion Middleware Web Tier Utilities 11g R1 (11.1.1.9.0)
Oracle WebLogic Server Plug-in 11g R1 (11.1.1.9.0)
Oracle Traffic Director 11g R1 (11.1.1.9.0)
Oracle Repository Creation Utility 11g R1 (11.1.1.9.0)
Oracle Application Development Runtime 11g R1 (11.1.1.9.0)
Oracle JDeveloper & Application Development Framework 11g R1 (11.1.1.9.0)

2. Oracle Identity and Access Management 11g R2 (11.1.2.3.0)
Includes new content for the following products:
Oracle Identity and Access Management 11g R2 (11.1.2.3.0)
Oracle Entitlements Server Security Module 11g R2 (11.1.2.3.0)
Oracle Access Manager OHS 11g WebGates 11g R2 (11.1.2.3.0)
Oracle Access Manager OTD 11g/ iPlanet 7.0.13+ WebGates 11g R2 (11.1.2.3.0)
Oracle Fusion Middleware Repository Creation Utility 11g R1 (11.1.1.9.0)
Oracle Unified Directory 11g R2 (11.1.2.3.0)
Oracle Access Manager Access SDK 11g R2 (11.1.2.3.0)
Oracle Enterprise Single Sign-On 11g R2 (11.1.2.3.0)
Oracle Access Management Mobile and Social SDKs 11g R2 (11.1.2.3.0)
Oracle Mobile Security Suite 11g R2 (11.1.2.3.0)
Oracle Identity and Access Management Deployment Repository 11g R2 (11.1.2.3.0)

The direct link to the Downloads tab is: http://www.oracle.com/technetwork/middleware/webcenter/portal/downloads/index.html

The direct link to the Documentation tab is: http://www.oracle.com/technetwork/middleware/webcenter/portal/documentation/index.html

The direct link to the WCP 11.1.1.9 documentation is: http://docs.oracle.com/middleware/11119/wcp/index.html

The direct link to the WCP 11.1.1.9 release notes is: http://www.oracle.com/technetwork/middleware/webcenter/portal/documentation/wcpdot9rn-2504657.html

Need to show the asterisk mark on the right side of the label ADF

Surround the input text with the panel label and message.Set the below property.
Required true for the input text and in the panel label message put the label.
Try setting the property simple=true for the input text .If the * mark does not show then remove the property and remove the label from the input text as well.

Setting a WebCenter Maintenance Page

When you shutdown WebCenter, the apache weblogic mod takes over the control of error pages and shows:

Failure of server APACHE bridge:
No backend server available for connection: timed out after 10 seconds or idempotent set to OFF.

Let’s face it that’s not user friendly and needs to be replaced with a nice page.

Solution
You can set a custom error page following the steps below:

*if you haven’t got OHS_HOME, I recommend you set up this environment variable. The path should look similar to the below:
/apps/oracle/product/middleware/Oracle_WT1/instances/instance1/config/OHS/ohs1

First copy your custom html to the server.
Move the files to
$OHS_HOME/htdocs/
For example you have a file called
maintenance.html

Next modify the config file for the weblogic mod
nano $OHS_HOME/mod_wl_ohs.conf
within the Webcenter location add


LOCATION STUFF
ErrorPage http://[hostname]/maintenance.html

Now to test the change, restart OHS. (if you’re in clustered mode run with 1 spaces, 1 OHS only for now)
Stop Spaces.
Go to WebCenter home.
New html maintenance page displays.
Restart spaces in WLS console.
Spaces displays correctly.

Ensure you copy the files/change in every OHS if you’re in a clustered deployment.

——————————————————————————————————————–

You can set up the maintenance page when at the Web server level when the application is down in the App layer. Here is the reference for Oracle HTTP server, same you can do it for any other web server too..!!

You can achieve this by configuring an error page at the WebServer (part of web-tier).

For example, in the case of a Oracle HTTP Server (OHS), you could do the following:

1. Place your maintenance page at /config/OHS//htdocs.

For Example, /config/OHS//htdocs/errorPage500.html

2. Open the OHS httpd.conf located at /config/OHS/ in an editor and search for the string ‘ErrorDocument 403′ which can be seen as commented text. Next to the commented text line, add the below lines for configuring the Error

Pages (500 —> backend server unavailable, 403 —> forbidden request, 404 –> Resource Not available). For the below example, we had 3 html pages errorPage500.html, errorPage403.html and errorPage404.html are deployed in OHS htdocs.

ErrorDocument 500 /errorPage500.html
ErrorDocument 403 /errorPage403.html
ErrorDocument 404 /errorPage404.html

3. Save the changes to the httpd.conf file.

4. Restart OHS server

———————————————————————————————————————-

Maintenance page for weblogic server

In Apache httpd.conf file put the below , replace the /console with proper context root and same with the host and port no.


SetHandler weblogic-handler
WebLogicHost 192.168.50.57
WebLogicPort 7001
ErrorPage /maintain.html

Place your customized maintain.html in the Root directory.

Happy learning with Vinay in techartifact….