soadev.blogspot.com
Beginning Java & SOA Development: January 2012
http://soadev.blogspot.com/2012_01_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Saturday, January 28, 2012. Pattern: Building Reusable Java-Based BPM Task Form- Part 2. And the convenience and capabilities of this pattern will be demonstrated in Part 3. The Human Workflow Services API. Any custom worklist or task form application accesses the various workflow services through the workflow service client. Sample wf client config.xml. Xml version="1.0" encoding="UTF-8" standalone="yes"?
soadev.blogspot.com
Beginning Java & SOA Development: May 2013
http://soadev.blogspot.com/2013_05_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Thursday, May 2, 2013. ADF With No Bindings: SortableFilterableCollectionModel Implementation. Not using ADF bindings but wanted to have a sortable table? This post is for you. I am glad to share a sortable CollectionModel implementation that is so elegantly simple. :). This model supports in-memory sorting and filtering. The filtering concept based on groovy will be discussed on a subsequent post. ADF With n...
soadev.blogspot.com
Beginning Java & SOA Development: June 2010
http://soadev.blogspot.com/2010_06_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Monday, June 21, 2010. Configuring a New Oracle SOA Domain on Oracle Enterprise Linux. In this series, I will share with you how I was able to set-up and run Oracle SOA Suite on my Windows 7 Professional 64 bit OS through Oracle VM VirtualBox. This is Part V of the following series:. Setting-up Oracle Enterprise Linux on Oracle VM VirtualBox 3.2.4. Installing Java 1.6 on Oracle Enterprise Linux. Navigate to "...
soadev.blogspot.com
Beginning Java & SOA Development: April 2010
http://soadev.blogspot.com/2010_04_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Tuesday, April 13, 2010. ADF Security: Playing with Weblogic APIs on Authentication Providers. As promised in my last post. Setup the SQLAuthenticator required schema. Create a Datasource in weblogic console that points to the schema in step 1. Setup SQLAuthenticator provider in weblogic console. Please update the connect() method with your own credentials and port information if necessary. This post demonstr...
soadev.blogspot.com
Beginning Java & SOA Development: July 2011
http://soadev.blogspot.com/2011_07_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Sunday, July 31, 2011. Sample JAXB Application Converting POJO to XML Element and Vice-versa. In this post, I will demonstrate how to convert POJO's to XML and vice-versa using Java Architecture for XML Binding (JAXB), and will give some tips in annotating our entities to avoid some common gotchas. The root name "job" above will be the root of the generated XML as follows:. The "@XmlAccessorType(XmlAccessType...
soadev.blogspot.com
Beginning Java & SOA Development: January 2011
http://soadev.blogspot.com/2011_01_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Sunday, January 16, 2011. ADF Faces RC: Right Aligning Components Inside ADF Column Footer Facet. The image below shows a right aligned OutpuText component inside the ADF Column footer facet:. To achieve the above alignment, simply enclosed the component inside a panelGrid as follows:. Posted by Rommel Pino. Links to this post. Subscribe to: Posts (Atom). Jeddah, Saudi Arabia. View my complete profile.
soadev.blogspot.com
Beginning Java & SOA Development: July 2010
http://soadev.blogspot.com/2010_07_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Thursday, July 29, 2010. ADF UI Shell: Updating Title of the Current Tab. Sometimes you may wish to update the current tab title after some actions like saving a new record. You can do so through the following code inside your backing bean:. Be sure that you have defined a "tabContext" input parameter in your task flow definition so you can access the TabContext object. Posted by Rommel Pino.
soadev.blogspot.com
Beginning Java & SOA Development: April 2013
http://soadev.blogspot.com/2013_04_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Friday, April 26, 2013. MDI Remote/Fragment BTF Adapter (Whatever! After a long void, I'm back! The form can be accessed by the user. I also wonder if the bounded task flows (BTF) that we have created that are based on fragments can be displayed on a new browser window or even displayed as region on a remote application. Indeed, the bounded task flow concept in Oracle ADF is very powerful but that is only if ...
soadev.blogspot.com
Beginning Java & SOA Development: May 2011
http://soadev.blogspot.com/2011_05_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Tuesday, May 17, 2011. ADF Faces Layout Tips: Stretching an af:region inside af:dialog/popup component. The original solution to this post has been deprecated. Please see at bottom the proper solution. I have a hard time stretching the height of an af:region inside a pop-up dialog, so to make the life of others easy, below is a sample to show what I have figured out. Important update to this post:. Generic Bi...
soadev.blogspot.com
Beginning Java & SOA Development: August 2011
http://soadev.blogspot.com/2011_08_01_archive.html
Beginning Java and SOA Development. Some pieces of info stumbled along the way to SOA expertise. Wednesday, August 3, 2011. How to Simply Convert SDO to DOM Element and Vice-versa. I demonstrated how to marshall POJOs to SDO. In this post, I will show how to convert SDOs to DOM Elements without parsing them to or from String. The key is the following methods from the commonj.sdo.helper.XSDHelper:. Wherein, we can instantiate a DOM node and wrap it with a javax.xml.transform.dom.DOMResult;. I demonstrated...