Questions tagged [osb]

Oracle Enterprise Service Bus is a fundamental component of Oracle's Services-Oriented Architecture that provides a loosely-coupled framework for inter-application messaging. It's abbreviation for Oracle Service Bus.

Quoting from Oracle website

Oracle Service Bus transforms complex and brittle architectures into agile integration networks by connecting, mediating, and managing interactions between services and applications. Oracle Service Bus delivers low-cost, standards-based integration for mission critical SOA environments where extreme performance and scalability are requirements.

OSB is a lightweight and scalable integration platform that delivers low-cost, standards-based integration for high-volume, mission critical SOA environments. It is designed to connect, mediate and interact with heterogeneous services, legacy applications, packaged applications and multiple enterprise service bus (ESB) instances across an enterprise-wide service network. Thus OSB can talk with itself and/or other internal and external applications and services.

This tag should be used for any questions related to OSB. For more details on OSB please refer the following links:

  1. OSB Homepage
  2. Documentation Homepage
  3. Downloads

Related Tags :

501 questions
20
votes
3 answers

Passing username and password to svcutil.exe?

We have OSB services that are currently secured with a username and a password. I get a 401 unauthorized when attempting to generate a service proxy using svcutil. I know you need to set up a svcutil.exe.config file but I cannot find any examples…
webwires
  • 2,572
  • 3
  • 26
  • 44
17
votes
2 answers

Installing Oracle 11g on OSX

I would like to run a complete SOA/OSB development environment on OSX. Unfortunately, Oracle 11g (SOA and OSB) is missing OSX installers. Is it possible to run a native development environment on OSX ? I need Oracle Enterprise Pack Extensions, OSB…
Olivier Refalo
  • 50,287
  • 22
  • 91
  • 122
5
votes
4 answers

Mocking Http-503 for a web service

I would like to mock a web service response for an HTTP 503 (Error 503--Service Unavailable) when The server is unable to handle the request due to a temporary overloading or maintenance of the server. What is the best strategy? Thanks, D
Dawit
  • 61
  • 1
  • 4
4
votes
1 answer

How WSDL is Used in Oracle Service Bus?

I created an OSB Service using a WSDL and selected a Binding. Now, when my client is trying to call the service using the WSDL I provided, they are getting errors. Also, the binding name in the WSDL that I provided and the WSDL that they are pulling…
systemhalted
  • 818
  • 9
  • 24
4
votes
2 answers

How to access the WSDL URL of a OSB proxy service in web browser

Does anybody know how to access the WSDL URL of a Oracle Service Bus? For example, in tomcat, axis2 if a service is deployed I can access the WSDL of it like: http://localhost:8080/services/foo?wsdl How to achieve the same in OSB? P.S.: I have…
user2401730
  • 41
  • 1
  • 1
  • 3
4
votes
1 answer

BPEL-ESB Link breaks with New Operation in WSDL?

This question is not easy to ask. So I will try my best to ask in a clear way. We have an Enterprise SOA Suite 10G system already running in place. A small process, I will explain in this way. Consumer->ESB->BPEL->ESB->Provider Webservice A…
4
votes
1 answer

Executing XQuery fn-bea:date-from-dateTime($date) causes: XPST0081

I'm writing library in Java, which executes XQuery using oracle's libraries provided in OSB One of XQuery contains: { fn-bea:date-from-dateTime($endDate) } The XQuery works properly in OSB environment and even in Eclipse…
Denis
  • 759
  • 1
  • 9
  • 22
3
votes
1 answer

How to raise an error inside an XLST1.0 template?

Since I could not find anything on the web (not even here on stack overflow), I hope you could help me find out how to raise an exception during the runtime of an XSL-Transformation. It runs inside the Oracle Service Bus 11, so we have only XLST1.0…
Alexander Schäl
  • 126
  • 2
  • 12
3
votes
1 answer

Convert XML data to CSV String with XQuery

Consider the following XML: Jon Dan Bill Jack I need output as a string as a CSV like Jon,Dan,Bill,Jack using XQuery. I have done it using FLWOR expressions and…
Ranjith Reddy
  • 129
  • 1
  • 3
  • 12
3
votes
1 answer

Importing OSB Config Jar in Service Bus Console of Different Environment

I have created an OSB Project in Oracle Jdeveloper 12c.Based on the Oracle docs I created config jar for the same and imported in local weblogic server. It is working fine. But If I import the same config jar to a different Environment, I am getting…
Karthi
  • 133
  • 11
3
votes
1 answer

Error 403--Forbidden - web service error when I use SOAP UI

I created a WSDL Based Service in Oracle Service Bus 12c. I use HTTP protocol and I configured a Business Service, Proxy Service and Proxy Service pipeline... When I use the testing tool of Oracle Service Bus, will test successful. when I invoke…
David Flores
  • 43
  • 2
  • 7
3
votes
0 answers

Ant script for osb 12c deployment

I am creating OSB 12c ant script for deployment. I need it to integrate it with hudson. scripts that I have created is as follow:
Stark
  • 481
  • 1
  • 9
  • 31
3
votes
5 answers

Error: Could not find or load main class weblogic.Server in soa12c

I have installed the oracle soa 12c in windows.I am getting the Error: Could not find or load main class weblogic.Server Stopping Derby server... Please find the below log. The system cannot find the path specified. ** Setting up SOA specific…
Badri
  • 31
  • 1
  • 1
  • 2
3
votes
1 answer

OSB fn-bea functions using Xquery processor in Java

Hi i am trying to unit test xqueries that are used in OSB ,using oracle's Xquery processor for java . refer link below http://docs.oracle.com/database/121/ADXDK/adx_j_xqj.htm#ADXDK187 The Xquery is using some fn-bea functions…
Balaji V
  • 918
  • 3
  • 10
  • 28
3
votes
3 answers

Count consecutive repetitive element in a sequence using XQuery

If the Sequence = [a a b c c c a d d e e e f g h h] then the Output = [1 2 1 1 2 3 1 1 2 1 2 3 1 1 1 2] Have tried to use recursion but no luck...Please Help..Thanks in Anticipation Note: Using XQuery implementation 1.0 One of my failed…
1
2 3
33 34