Business Service VS Proxy Service in OSB
It’s very confusing for the OSB learner, the difference between Business Service and Proxy Service. Let me help you to understand the exact difference between them. Proxy ServiceIt is a […]
- Ankur Jain
- 5
- 3299
- January 17, 2017
Java Jndi datasource lookup
JNDI style is typical when using an application server(Weblogic, JBOSS) or a web container(Apache Tomcat). Here’s a example of the lookup Datasource created in Server. import java.sql.Connection;import java.sql.SQLException;import javax.naming.Context;import javax.naming.InitialContext;import […]
- Ankur Jain
- 1
- 2539
- January 17, 2017
ADF BC With No Database Connection
Sometimes user need programmatic View object with no database connection.If you want to disable database access for ADF BC application, you will need to update bc4j.xcfg. I would recommend to update […]
- Ankur Jain
- 3
- 1185
- January 17, 2017
Get Current Logged in User
Most of the time we need to get current logged in user in ADF application. Below is code snippet to get current user: public static String getCurrentUser(){ String userName = […]
- Ankur Jain
- 1
- 1620
- January 17, 2017
For each action in Oracle Service BUS 12c
In Oracle Service Bus 12c you can use the for-each action to iterate multiple elements in your payload. I want this post to show you how we can use for […]
- Ankur Jain
- 4
- 3996
- January 17, 2017
What is Oracle Service Bus and key benefits
Oracle Service Bus, aka OSB, is an Enterprise Service Bus implementation by Oracle. OSB, formerly known as Aqalogic Service Bus, was acquired when Oracle bought BEA Systems. Oracle Service Bus transforms architectures by connecting, […]
- Ankur Jain
- 2
- 3326
- January 16, 2017
Generate Unique value in OSB
The function fn-bea:uuid() returns a universally unique identifier. The function has the following signature: fn-bea:uuid() as xs:string You can use this function in the proxy pipeline to generate a unique […]
- Ankur Jain
- 3
- 2033
- January 16, 2017
Convert XML String to XML in OSB : fn-bea:inlinedXML
Sometime it is required to convert XML string into XML document. OSB allows us to convert XML String to XML document using OSB inbuilt function. You can use the fn-bea:inlinedXML […]
- Ankur Jain
- 5
- 4096
- January 16, 2017
Convert XML to String in OSB : fn-bea:serialize
Sometime it is required to convert XML to string format. OSB allows us to convert XML to string using OSB inbuilt function. You can use the fn-bea:serialize() function if you […]
- Ankur Jain
- 3
- 3814
- January 16, 2017
OSB: Use of fn-bea:execute-sql
Oracle Service Bus has a custom Oracle XQuery function fn-bea:execute-sql() available that provides low-level database access from XPath within Oracle Service Bus message flows.Using the fn-bea:execute-sql function from the OSB, […]
- Ankur Jain
- 2
- 2914
- January 16, 2017
Custom Xpath function in Oracle Service Bus
OSB allows us to create custom Xpath function and these function case be used in XSLT, Xquery. Custom Xpath function is the way to extend the built in functionality of […]
- Ankur Jain
- 3
- 2399
- January 14, 2017
Secure Oracle Service Bus REST using OWSM
Security is one of the main aspects of any service. Services are reusable and can be invoked by either internal or external customers, so we should secure our Service Bus […]
- Ankur Jain
- 4
- 4216
- January 13, 2017