Remote debugging mit JDeveloper

Environment: JDeveloper 11.1.1.6
Für den lokalen Weblogic Server/Admin Server:
In order to allow for remote debugging, we need to edit the domain startup script startWebLogic.sh and specify JVM options for starting the server in order to support remote debugging of ADF applications.
The domain startup script can be located in the
%MIDDLEWARE_HOME%\user_projects\domains\\bin directory, where %MIDDLEWARE_HOME% .
Add the following line in JAVA_OPTIONS:
set REMOTE_DEBUG_JAVA_OPTIONS=-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=4000,server=y,suspend=n
for example
JAVA_OPTIONS=”-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=4000,server=y,suspend=n -Dweblogic.security.SSL.trustedCAKeyStore=”/home/oracle/Middleware/wlserver_10.3/server/lib/cacerts” ${JAVA_OPTIONS}”
export JAVA_OPTIONS
Für managed Server (SPU):
Not startWebLogic.sh edit! That would have an impact on all managed servers! Instead, the parameters -Xdebug -Xnoagent -Xrunjdwp: transport = dt_socket, address = 4000, server = y, suspend = n in the Weblogic Admin Console under Settings – Server – – Server Start – add arguments:
debug

Configuring JDeveloper
The next step is to enable the remote debugging feature for your project in JDeveloper. To do this, go to your project’s properties. Select the Run/Debug/Profile section, and click the Edit button for the “default” setting. This will bring up a dialog where you can check the Remote Debugging option.

Enable debugging from Weblogic Console
Environment–>Servers–><>–>Debug
Select the required flags and click on Enable/Disable.
Enable the level of debug you need, e.g.: security, servlet, jdbc.This change does not require weblogic Server Restart.
You need Make sure the severity is set to debug in weblogic console:
Environment > Servers > MyServer > Logging >Advanced > Minimum severity to log: Debug
This change requires server restart.

Editing the script

Setting Up setDomainEnv.cmd
Near the top of your file add the following line to enable debugging.

echo ——————————————————————
echo Setting Debug to true
set debugFlag=true
echo ——————————————————————

Locate the following line locate further down the file and make a note of the port number.You can change the default port number as well.

rem set the port number
if “%DEBUG_PORT%”==”” (
set DEBUG_PORT=8453
)

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.