Questions tagged [oas]

Oracle Application Server

In computing, the Oracle Application Server 10g (the "g" stands for grid), consists of an integrated, standards-based software platform. It forms part of Oracle Corporation's Fusion Middleware technology stack. The heart of Oracle Application Server consists of Oracle HTTP Server (based on Apache HTTP Server) and OC4J (OracleAS Containers for Java EE) which deploys Java EE-based applications. The latest version of OC4J offers full compatibility with the Java EE 1.4 specifications.

Oracle Application Server became the first platform designed for grid computing as well as with full life-cycle support for service-oriented architecture (SOA).

Source: Wikipedia

59 questions
0
votes
1 answer

Update API specs in different business groups

In Anypoint Platform we have two business groups org1 and org2. In org1 group, I have updated the existing RAML API specification and same changes should be apply to org2 group API spec as well. Like this I have to update lot of applications. Is…
deepuKumar
  • 27
  • 3
0
votes
0 answers

Open API Spec - how to use fixed type of discriminator?

If I have Pet, Cat, Doc, HoneyBee Models like https://redocly.github.io/redoc/#tag/pet/operation/getPetById Pet: type: object required: - name - photoUrls discriminator: propertyName: petType …
Mia
  • 1
0
votes
1 answer

Sort Stacked Barchart in OAC

I am using Oracle Analytics Cloud to visualise volume of items by day of week. I am using a stacked barchart and it is not obvious to me how to re-order/sort the visual i.e. I want the bottom segment to be Monday, next Tuesday etc. but OAC is…
0
votes
1 answer

How to return a static response in kong api-gateway

I am using kong API-gateway in its DB-Less mode as a result, I have a kong.yaml file as below: _format_version: "2.1" _transform: true services: - name: service1 url: http://service1:port/sample-path routes: - name: service1 …
Amin Ba
  • 1,603
  • 1
  • 13
  • 38
0
votes
0 answers

OAS date filter expression

I want limit data by day of last date in table(not sysdate), but all I try is not successful. With SQL it can be achieved as SELECT * FROM INFO WHERE TRUNC (CHECK_TIME) = (SELECT MAX (TRUNC (CHECK_TIME)) FROM INFO) at filter expression I wrote…
Oleg
  • 41
  • 1
  • 4
0
votes
0 answers

List and use Application Roles using WLST - listAppRoles()

Is there a possibility to list up and work with existing Application Roles? I want to list up my roles and then check afterwards the member of this roles with listAppRoleMembers(appStripe='obi', appRoleName='XY'). But first things first... Has…
Meyy
  • 1
0
votes
0 answers

42crunch Schema does not define the type of JSON values for boolean

I have a 3.0.3 OpenApi definition that contains a boolean in an object. The object has additionalProperties: false set e.g. TestEvent: type: object additionalProperties: false properties: id: $ref:…
theINtoy
  • 3,388
  • 2
  • 37
  • 60
0
votes
1 answer

OBIEE: I can't schedule reports. Unauthorized Access: please contact the administrator

I have reports and analysis in "My Folders". When I click on analysis "More" -> "Schedule" everythink is OK. When I click on reports "More" -> "Schedule" I have error "Unauthorized Access. Please contact the administrator". I can open report, but I…
Adrian K
  • 1
  • 1
0
votes
1 answer

OAS 5.5.0 - error while start obips1 service

I installed Oracle Analytics Server 5.5.0. I configured it and run services. AdminServer and bi_server1 it's working ok. But when I want run other process I have problem...I try run obips1 like: ./start.sh -i obips1 In obips1out I fin error…
user3764298
  • 47
  • 1
  • 9
0
votes
1 answer

Turkish characters are corrupted in ajax POST call

I have an ajax call as i have mentioned below. The data (ÇçİıĞğÖöÜü) appears to be correct until POST, but data is corrupted when a character set is specified while data is being sent. I have tried it in the following three different character sets,…
user8668708
0
votes
2 answers

How to start Enterprise Manager(em) console in Oracle AS 10.1.3.4 in windows and linux

I have installed Oracle AS 10.1.3.1 and then applied patch to upgrade it to 10.1.3.4 This OAS is configured to listen at port 80. When I go to http://localhost after starting OPMN, i can wee the welcome screen. But now I want to login to Enterprise…
Raj
  • 255
  • 2
  • 6
  • 17
0
votes
0 answers

OAS3: Why is Accept header defined in Response?

It says here that one should not define the Accept header inside a OAS3 Yaml file as a parameter but in responses..content.. Example: paths: /employees: get: summary: Returns a list of employees. responses: …
Erando
  • 811
  • 3
  • 13
  • 27
0
votes
1 answer

why entity manager is not thread safe in container manage?

Why entity manager is not thread safe in container manage? Does oracle application server support entity manager to be thread safe?
THIHA SOE
  • 165
  • 4
  • 9
0
votes
1 answer

How to define schema arbitrary JSON object?

I am trying to define a API using OAS v2 that will return a payload along with some metadata. In other words, the response to the API will be: { "metadata":[ { "key" :"key1", "value": "value1" } ], "payload": {Valid…
TechiRik
  • 1,893
  • 6
  • 27
  • 37
0
votes
1 answer

ORA-06502: PL/SQL: numeric or value error while using CLOB

For Oracle 11g doesn't support json as you know, i am creating json data using CLOB due to varchar2 (32767) size but in this time i am getting ORA-06502: PL/SQL: numeric or value error. Meanwhile, the data size is 68075. Why i am getting the error…
Goran Zooferic
  • 371
  • 8
  • 23