Blog Statistics
- 102,554 hits
-
Recent Posts
- How to fix the ADF Security error “JpsAnonymousRoleImpl” in Jdev 11.1.1.6.0
- What is the correct way of deploying SOA Composites in Production environment?
- What is the difference between RequestDispatcher’s forward(ServletRequest request, ServletResponse response) method and HttpServletResponse’s sendRedirect(String location) method?
- How to setup Session-Timeout in ADF application
- Is SOA Suite 11g can be installed in Windows 7 64-bit operating system?
Archives
Categories
Meta
Category Archives: BPEL
What is the correct way of deploying SOA Composites in Production environment?
The first time you deploy a SOA Composite to SOA Server, a default version label of 1.0 is automatically created. A version identifies a specific deployed instance of a SOA Composite. The version label is appended to the end of … Continue reading
Posted in BPEL, Service Oriented Architecture (SOA 11g)
Tagged default, deploy, Production, stale
3 Comments
Is SOA Suite 11g can be installed in Windows 7 64-bit operating system?
Few points about SOA installation in Windows7 64-bit OS. I hope it will be useful for you. It is not an ideal solution and I does not recommend to run 32-bit versions of the Fusion Middleware product on a 64-bit … Continue reading
Posted in BPEL, Oracle Service Bus (OSB), Service Oriented Architecture (SOA 11g), WebLogic Server 11g, Windows XP
Tagged 64 bit, Admin, Administrator, Console, Installation, JDK, SOA 11g, Windows 7, XP
2 Comments
How to fetch a particular node value from a set of XML nodes in BPEL 11g
In my case, I have used the Human task in my BPEL process. For every Human task added into BPEL process, a global task complex variable will get created. This complex variable contains all the parameters related to a task. … Continue reading
Posted in BPEL, Oracle Business Process Management (BPM), Service Oriented Architecture (SOA 11g)
Tagged BPEL, BPM, Multiple, Node, Value, xml
1 Comment
How to Set Task Assignees from a Dynamic Delimited String in BPEL Human Task
In a scenario in which the assignees are represented as a delimited string (for example, a comma-separated string), the delimited string must be converted to a node set to set the task assignees from it. For this purpose, you can … Continue reading
Posted in BPEL, Service Oriented Architecture (SOA 11g)
Tagged Assignes, BPEL, BPM, Comma, Human Task, Multiple, Workflow, Worklist
Leave a comment
How to make input fields mandatory for BPEL process in the XML schema file
We build a schema file (for custom requirements) for the input parameters for a BPEL process. Out of them, we want to make few parameters as mandatory. In this post you will learn how to achieve this. Specifying how many … Continue reading
Posted in BPEL, Service Oriented Architecture (SOA 11g)
Tagged BPEL, input, mandatory, parameters, schema, SOA
Leave a comment
How to check the created Users and Groups in the Weblogic server
Go to Weblogic server console. Select “Security Realms” link under “Domain Structure” as shown below – Click on ‘myrealm’ link as shown in the above – Now under ‘Settings for myrealm’, click on ‘Users and Groups’ tab. You will see … Continue reading
Posted in BPEL, Service Oriented Architecture (SOA 11g), WebLogic Server 11g
Tagged Demo, Users, Verify, Weblogic server
2 Comments
How to create Users and Groups in Weblogic server that will be used for the tutorial SOA 11g sample applications
In 10g all the Users and Groups were created by default in Weblogic server, but in 11g we have to manually create the entire sample Users and Groups. For this we have to first download the “workflow-001-DemoCommunitySeedApp” from OTN Samples … Continue reading
Posted in BPEL, Service Oriented Architecture (SOA 11g), WebLogic Server 11g
Tagged BPM, Community, Demo Users, Users, Workflow, Worklist
3 Comments
How to Create an Application Deployment Profile
A required deployment profile is automatically created for your application. The application profile includes the JAR files of your SOA projects. Additional profiles are useful for environments in which you want to create multiple deployment profiles for the same application … Continue reading
Posted in BPEL, Service Oriented Architecture (SOA 11g)
Tagged Application, Deployment, Jdev, Profile
Leave a comment
How to Configure an SOA Project Deployment Profile
The SOA project deployment profile is automatically created as a SOA archive (SAR) profile, and requires no user input. The contents of the SAR profile are deployed to a JAR file. If you want, you can specify the revision ID … Continue reading
Posted in BPEL, Service Oriented Architecture (SOA 11g)
Tagged configuration, Deployment, Project, SOA
Leave a comment
How to convert the Sting into Date format in BPEL
I’m getting the input date in Sting data type and want to convert it into Date. This can be done either in Assign activity or in transformation. In Assign activity By default the Date field in the plsql function accepts … Continue reading