In the cases where you want to use your own Customization Class, make sure that this java class is available to jdeveloper when it restarts. Otherwise , when you use the "Customization Developer" role, you will see that in the Jdeveloper you will see messages like
MDS-00035: cannot load the class:xxxxx
and the customization context will be "none".
To prevent this one way is to create a jar file containing your Customization class and place it in jdeveloper/jdev/lib/patches.
All the jar files placed in this directory are avaliable in the CLASSPATH when jdev restarts.
While installing soa suite, you might get an error saying that it failed some checks and one of them might be "Zero Swap space while the recommended one is 512MB".
One windows if you get this error then just follow the steps below to set the virtual memory space and restart the machine and try to re install SOA suite.
1) Right click My Compter.
2) Select "Properties" from the context menu.
3) Select Advanced Settings
4) In the dialog that shows up select the "Settings" button in the "Performance" section
5) In the new dialog select "Advanced"
6) In the "Virtual Memory" section click the "Change" button.
7) Now deselect "Automatically manage paging file size for all drivers"
8) Now select "Custom size" and provide "Initial size" of 2 GB and Maximum size of "4 GB".
9) Click "Ok" in all the windows ..
Now restart the machine and try re-installing the soa suite.
XA requirements: The database adapter participates in distributed transactions and requires the back-end database setup for XA recovery by Oracle WebLogic Transaction Manager. Ensure that XA pre-requisites are met. For this, log on to SQL*Plus as a system user, for example, enter sqlplus "/ as sysdba" and then grant the following privileges:
Sql>Grant select on sys.dba_pending_transactions to public.
Sql>Grant execute on sys.dbms_xa to public.
Sql>Grant force any transaction to public;
In many cases you might have to pull data from different databases to show appropriate information in the UI. The crudest way is to use JDBC to fetch data from all the different databases.
If you want to ADFbc then you can have multiple AM's pointing to different databases. But if you want to use the datacontrols properly inside a taskflow (actually any page fragment as well), then you definitely have to understand the how ADFc layer creates the AM instances.
The following blog definitely helps you regarding all the information you need regarding taskflows and the how ADFbc goes hand in hand.
In 11.1.1.2, there seems to be a bug in ADFbc. If you have a LOV based on a view accessor of a shared AM view object and if you apply a view criteria on top of it, initially the view critieria is applied but one you change the value of the LOV no view criteria is applied and you will see all the values from the LOV vo.
The workaround to this problem is to make sure of the following.
In the entity object which has to view accessor, set the "Row Level Bind Values" to false.
Set the "Shared Instance" property of the view accessor in the EO to "true".
To know more about the "SharedInstance" property look at the following.
This post is all about how to access the SOAP headers using the mediator component in the oracle soa suite 11g.
Before looking at the steps to be followed to access the SOAP headers, first we need to understand the following things.
SOAP Message structure (This is required to understand where actually the SOAP body message and SOAP headers reside in the entire message).
Constructing WSDL to specify that SOAP headers will be accessed. (Without this jdeveloper design time cannot help you to build expressions using which you can access SOAP headers at run time).
Way to populate the SOAP headers ( We will be using BPEL component to achieve this)
Accessing the SOAP header value (We will be suing the Mediator component to achieve this).
SOAP message structure
A SOAP message is made of an envelope and zero or more attachments..
A SOAP envelope is made of optional header and mandatory body parts..
Headers are always handled (or processed) by the intermediaries...and the
body is always handled (or processed) by the ultimate receiver..
The header is generally used for providing some contextual information, like, providing authentication related information, or providing transaction related information etc...
Headers are used to represent that some special processing is required. Most of the WS-* standards use the header section to represent the special processing required . For example WS-Addresssing using this header section to represent where the ReplyTo message has to be sent.
Constructing WSDL
The following video shows how to construct the WSDL..It uses the jdeveloper tool to create and edit the WSDL file.
Way to populate SOAP headers
The following video shows how to use BPEL component to populate SOAP headers in the SOAP message.
Accessing SOAP header values
The following video shows how to access the SOAP header values in mediator.
I am ex oracle employee. Currently I am working as a consultant providing solutions using Oracle fusion middleware stack and have been playing the role of a solution architect.