Tuesday, August 11, 2009

New version of WLS & SOA Available

Oracle WebLogic Server 11gR1 (10.3.2) is now available

OTN

eDelivery
The WLS 11gR1 (10.3.2) product will be surfaced on eDelivery

My Oracle Support
To get WLS 11gR1 10.3.2 Upgrade Installers, got to metalink.oracle.com and select "Patches and Updates".

  • Product or Family (Advanced Search) Product is: "Oracle WebLogic Server"
  • "Release is": "10.3.2.0" (at the very bottom under Oracle WebLogic Server)
  • Select appropriate Platform
  • Additionally, the patch numbers for the WLS 11gR1 (10.3.2) Upgrade Installers are:

  • Patch ID: 9082222 - WLS 11gR1 (10.3.2) Upgrade Installer (win)
  • Patch ID: 9082213 - WLS 11gR1 (10.3.2) Upgrade Installer (linux)
  • Patch ID: 9082202 - WLS 11gR1 (10.3.2) Upgrade Installer (solaris)
  • In Process - WLS 11gR1 (10.3.2) Upgrade Installer (generic)
WLS Documentation
http://download.oracle.com/docs/cd/E15523_01/wls.htm

11gR1 Library
http://download.oracle.com/docs/cd/E15523_01/index.htm

Saturday, August 01, 2009

SOA 11g: Preferences

As we used preferences in BPEL very often, we expeted to use this in 11g as well. But within the BPEL editor and in the SCA editor there is no button to apply preferences. the function ora:getPreference() is available, but were do we apply this preferences.

The solution is there and writtin in:

http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/bp_app_deploydesc.htm#SOASE11121

Preferences can be set at composite level and these preferences are defined at particular levels; BPEL, Partnerlink.

To use BPEL properties defined the properties in composite.xml.

In the composite:

...
<property name="bpel.bpel.preference.myPreference">HelloThere</property>
</component>

In the BPEL file

ora:getPreference(myPreference)