Sie sind auf Seite 1von 23

Exam A

QUESTION 1
Which two statements are correct about the Oracle Enterprise Scheduler Service (ESS) facility?

A. It is a Java EE application that is deployed to WebLogic Server to provide distributed job request processing across a single WebLogic Server or a collection of
WebLogic Servers.
B. It is shipped as a separate product and you can install it after you have completed the SOA Suite installation.
C. It is used extensively by Fusion Applications so it is well-tested.
D. It is administered via the WebLogic Server Administration Console.

Correct Answer: AD
Section: (none)
Explanation

Explanation/Reference:

QUESTION 2
What two architectural factors most heavily influence the interoperability of the Oracle Adapters with Oracle Service Bus (OSB) and Oracle SOA Suite?

A. Oracle Adapters are based on the Java EE Connector Architecture (JCA) 1.5 specification.
B. Oracle Adapters use native APIs to connect to the supported back-end applications.
C. Oracle Adapters are deployed to the same Oracle WebLogic Servers as Oracle Fusion Middleware.
D. Use of Oracle Adapters Extended Architecture (XA) features is completely optional.

Correct Answer: BC
Section: (none)
Explanation

Explanation/Reference:
Reference:
https://docs.oracle.com/cd/E25178_01/integration.1111/e10231/intgn.htm
QUESTION 3
Oracle SOA Suite is being used to virtualize service calls to a third-party human resources provider. The planned service payloads will require minimum
transformation. Routing is simple because service calls will be mapped one-for-one to existing third-party services.
Which two components should be used to handle this service virtualization?

A. BPEL Process
B. Proxy Service
C. Mediator
D. Business Service

Correct Answer: AD
Section: (none)
Explanation

Explanation/Reference:

QUESTION 4
Which two are available as conditions for an alert rule in BAM 12c?

A. between two times


B. when rows are deleted from a data object
C. a particular day of the week
D. when a web service is invoked

Correct Answer: AC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 5
Oracle Adapters are deployed to the Oracle SOA Suite server.
Which three SOA Suite components can use Oracle Adapters?

A. BPEL Process
B. Mediator
C. Proxy Service
D. Human Workflow
E. Business Rule

Correct Answer: ABE


Section: (none)
Explanation

Explanation/Reference:
Explanation: Service components (BPEL process, business rule, human task, spring, and mediator)
Reference: https://docs.oracle.com/cd/E12839_01/doc.1111/e10223/01_components.htm

QUESTION 6
In a BPEL model, what is the quickest way to implement a capability to skip rule execution if a particular condition holds?

A. Model a switch activity to conditionally execute the business rule component.


B. Use a skip condition on the business rule component.
C. Include an XPath expression in an annotation on the business rule component.
D. Use a correlation set on the business rule component.

Correct Answer: C
Section: (none)
Explanation

Explanation/Reference:

QUESTION 7
You have modeled a Composite X for which the following fault policy action has been configured for remote faults:

<Action id=”ora-retry”>
<retry>
<retryCount>2</retryCount>
<retryIntrval>2</retryIntrval>
<exponentialBackoff/>
</retry>
</Action>
At runtime, when a remote fault occurs on at outbound invoke, this ora-retry action is triggered. After the two configured retries are exhausted, which one
occurs?
A. The transaction of Composite X rolls back.
B. The instance is marked “open.faulted” and is available for auto-recovery.
C. The instance is marked “closed.faulted” and is available for error recovery from Enterprise Manager where the user can choose actions on the instance such as
replay, rethrow, and abort.
D. The default retryFailureAction is initiated and it rethrows the error back to the caller service.

Correct Answer: B
Section: (none)
Explanation

Explanation/Reference:
Reference:
http://docs.oracle.com/cd/E15586_01/integration.1111/e10224/bp_faults.htm

QUESTION 8
Which tool would you use to enable more detailed logging of SOA components?

A. WebLogic Console
B. Enterprise Manager
C. BPM Workspace
D. WebLogic Diagnostics Framework (WLDF)

Correct Answer: C
Section: (none)
Explanation

Explanation/Reference:

QUESTION 9
Which expiration and escalation setting can be used to route a task a specified number of levels up a management chain if the assignee does not respond in a
given time period?
A. Never expire
B. Expire after
C. Route to manager
D. Renew after
E. Escalate after
F. Management chain

Correct Answer: E
Section: (none)
Explanation

Explanation/Reference:

QUESTION 10
How are task outcomes processed in BPEL process?

A. by using a condition (present in each path of the human task activity) in which you specify the outcome that causes a particular path to be followed
B. by using on Message or pick activities that receive the outcome from the human workflow engine
C. with a Switch containing a case for each outcome of interest plus an optional otherwise case after the human task activity
D. with a Switch containing one case for each possible outcome after the human task activity

Correct Answer: C
Section: (none)
Explanation

Explanation/Reference:

QUESTION 11
Given the following Oracle File Adapter configuration:
<adapter-config name=”ReadPlanBenefit” adapter=”File Adapter”
wsdlLocation=”ReadPlanBenefit.wsdl”
xmlns=http://platform.integration.oracle/blocks/adapter/fw/metadata>
<connection-factory location=”eis/FileAdapter”/>
<endpoint-interaction portType=”SynchRead_ptt” operation=” SynchRead”>
<interaction-spec
className=”oracle.tip.adapter.file.outbound.FileReadInteraction.Spec”>
<property name=”DeleteFile” value=”false”/>
<property name=”PhysicalDirectory” value=”/home/plan_benefit”/>
<property name=”FileName” value=” plan_benefit.xml”/>
<property name=”PhysicalArchiveDirectory” value=”/home/plan_benefit/archive/>
</interaction-spec>
</endpoint-interaction>
</adapter-config>
Which two statemnts are true?

A. The actual source directory will be specified by a property in the composite.xml file.
B. Each file read will be moved to an archive directory after it is successfully processed.
C. This configuration can be used to create an outbound business service component.
D. This configuration can be used to create an inbound proxy service component.

Correct Answer: CD
Section: (none)
Explanation

Explanation/Reference:
Reference:
https://docs.oracle.com/cd/E18727_01/doc.121/e12894/T202991T207026.htm

QUESTION 12
Composite X invokes an outbound DB adapter to write data to a database table. You have configured JCA retry at the binding component as follows:

<property name = “jca.retry.count” type=”xs:int” many=”false”


override =”may”>2</property>
<property name = “jca.retry.interval” type=”xs:int” many=”false”
override =”may”>2</property>

You have also modeled a fault policy to retry the invocation three times in case of remoteFault as follows:

<retryCount>3<retryCount>
<retryInterval>3<retryInterval>
What happens when the database that is being accessed by the above binding component goes down?

A. The invocation is retried for a total of two times every two seconds. Fault policy reties are ignored.
B. The invocation is retried for a total of six times every three seconds.
C. The invocation is retried for a total of six times every two seconds.
D. The fault policy retries occur within the JCA retries. So, two JCA retries are executed two seconds apart. Within each fault policy retry, two JCA retries are
executed two seconds apart.
Correct Answer: D
Section: (none)
Explanation

Explanation/Reference:

QUESTION 13
What does the Oracle B2B component do for an end-to-end EDI transaction?

A. EDI translation, validation, and transformation


B. only EDI translation and validation, but not transformation
C. only transformation, but not translation or validation
D. defines EDI documents, but does not do translation, validation, or transformation

Correct Answer: A
Section: (none)
Explanation

Explanation/Reference:
Reference: http://www-01.ibm.com/support/knowledgecenter/SSDKJ8_6.2.0/com.ibm.wpg.entadv.doc/config/hub/edi_validate_translate.html

QUESTION 14
You want to configure Oracle SOA Suite for Maximum Availability Architecture (MAA).
Which two activities must be completed?

A. Add managed servers to the domain configuration to support the Oracle SOA Suite cluster.
B. Run the Configuration Wizard on each server that will host Oracle SOA Suite managed servers.
C. Rework the Oracle SOA Suite domain configuration to use appropriate GridLink or multiple data sources.
D. Manually retarget the Oracle SOA Suite deployments to the newly created cluster.

Correct Answer: AC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 15
Identify two correct statements about Oracle Event Processing (OEP).

A. It is a platform to develop and execute applications that process streaming data.


B. It is designed to connect businesses using standards-based event communication protocols.
C. It is a powerful CQL engine that performs filtering, aggregations, calculations, and pattern matching in near real time.
D. It is an implementation of the Service Component Architecture (SCA) to process streaming data using regular expressions.

Correct Answer: AC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 16
Which two statements are true about standard dashboards?

A. Workload dashboards report on completed instances.


B. Performance dashboards report on in-flight instances.
C. By default, there is a 30-minute delay for workload data to be reflected in standard dashboards.
D. By default, data never ages out of the process analytics database because it is not periodically purged.

Correct Answer: AB
Section: (none)
Explanation

Explanation/Reference:

QUESTION 17
Which statement is true about the skip condition in a BPEL activity?

A. The activity gets executed hen the skip condition expression evaluates to True.
B. The skip condition expression is evaluated before the activity instance is created.
C. The activity gets executed when the skip condition expression evaluates to False.
D. The activity gets executed when the skip condition expression throws a fault.

Correct Answer: C
Section: (none)
Explanation

Explanation/Reference:
Reference:
https://docs.oracle.com/cd/E14571_01/dev.1111/e10224/bp_conditn.htm

QUESTION 18
Which statement is true about the relationship between the WSDL and the JCA binding file when working with an Oracle Adapter at design time?

A. The WSDL references the appropriate JCA binding file for each applicable operation in the WSDL “binding” element.
B. All operations defined in the WSDL must be mapped to activation specifications in the JCA binding file.
C. The JCA binding file defines default adapter property values for each applicable operation defined in the WSDL.
D. There is no direct relationship between the WSDL and the JCA binding file at design time.

Correct Answer: A
Section: (none)
Explanation

Explanation/Reference:

QUESTION 19
Which two statements are true about stakeholders working with Business Process Workspace?

A. Process owners manage rules for users and groups.


B. Process owners can act on tasks belonging to their process, but are assigned to other users.
C. Process participants can delegate work to another user.
D. Administrators typically get involved to handle task escalations.

Correct Answer: AB
Section: (none)
Explanation
Explanation/Reference:
Reference:
http://docs.oracle.com/cd/E15586_01/integration.1111/e10224/bp_worklist.htm

QUESTION 20
EPN is the internal structure of an OEP application and is displayed as a top-down hierarchy in a graphical editor. Which two statements are correct about the Event
Processing Network (EPN) in Oracle Event Processing (OEP)?

A. EPN is the internal structure of an OEP application and is displayed as a top-down hierarchy in a graphical editor.
B. EPN defines an OEP application and is built using the EPN Editor in JDeveloper.
C. EPN is an interconnection of adapters, channels, event beans, and CQL processors that make up an OEP application.
D. EPN is a part of the Event Delivery Network (EDN) facility that supports event-driven architecture for SOA Suite.
E. Every event that arrives at the OEP server creates a new instance of an EPN.

Correct Answer: BC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 21
You expand a business rule component that a colleague added to the BPEL process. You see an Assign element named Facts_To_Rule_Services.
Which statement is true about this assign element?

A. It was added automatically based on entries that your colleague made in the dialog box that appeared when the business rule component was added to the
BPEL model.
B. Your colleague manually added this Assign element after adding the business rule component to the BPEL model.
C. The Assign element was automatically added when your colleague manually added the corresponding Rule_Service_To_Facts Assign to the BPEL model.
D. You can delete this Assign because it was created for documentation purposes only.

Correct Answer: A
Section: (none)
Explanation

Explanation/Reference:

QUESTION 22
When you create an assert in a test case, you can specify a Compare By rule of xml-identical or xml-similar. The rule designates the strictness of the
comparison.
If you choose xml-similar, identify two conditions that will cause the comparison to fall.

A. The namespaces are the same, but the namespace prefix is different.
B. An element has the same child attributes, but they are in a different order.
C. An element has a different name, but the same child attributes are in the same order.
D. The namespaces are different, but the namespace prefix is the same.

Correct Answer: CD
Section: (none)
Explanation

Explanation/Reference:

QUESTION 23
Identify three true statements about the use of composite sensors.

A. They enable the monitoring and publishing of incoming and outgoing messages.
B. XPath expressions can be used as a filter to track a particular type of message.
C. You can choose to view the runtime output of the composite sensor in a database table.
D. The output of a composite sensor can be directed to Oracle Business Activity Monitoring.
E. They publish their output to the WebLogic Administration Console.

Correct Answer: ABD


Section: (none)
Explanation

Explanation/Reference:

QUESTION 24
Which statement accurately describes how to use SOA Suite to create a REST interface for a provider application that does not support REST?

A. Oracle Service Bus must be used. An HTTP proxy service is created and a pipeline is added with a conditional branch for each HTTP verb that the interface will
serve. If there is any non-XML payload, such as JSON, an external parser service must be used to translate it to XML.
B. Use Oracle Service Bus or BPEL Process Manager and utilize the REST binding that is available for both. The REST binding will automatically translate a REST
payload from JSON or XML to SOAP/XML for processing in the middleware layer.
C. Use a BPEL process with a REST binding and utilize the nXSD activity to translate the native JSON payload to XML for processing.
D. Use the HTTP transport in Oracle Service Bus for the REST interaction and use nXSD to translate the JSON payload to XML for processing.

Correct Answer: B
Section: (none)
Explanation

Explanation/Reference:

QUESTION 25
Which two statements are true about composite applications and mediators?

A. A composite application decouples the interface from business logic.


B. A composite application exposes a process as a web service.
C. A mediator exposes a process as a web service.
D. A mediator decouples the interface from business logic in a composite application.

Correct Answer: AC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 26
Which two statements are true about Complex Event Processing (CEP)?

A. It is a method to achieve the best outcome in a model where data is already stored in a relational database.
B. It is a technique used for querying data prior to it being stored within a database or without it ever being stored.
C. It is a highly efficient method of analyzing and processing streams of data.
D. It is a technique for rapidly storing large amounts of unstructured data.
E. It executes extremely complex queries against a database using a new query language.

Correct Answer: BD
Section: (none)
Explanation

Explanation/Reference:

QUESTION 27
Which two statements are true about the role of a Continuous Query Language (CQL) processor in a Oracle Event Processing application?

A. It primarily executes SQL statements against the database.


B. It can be used to filter, aggregate, and correlate events in memory and can integrate with Coherence, NoSQL, and HDFS.
C. It invokes human workflows to deal with exception handing.
D. It can perform spatial queries as well as complex

Correct Answer: CD
Section: (none)
Explanation

Explanation/Reference:

QUESTION 28
Which statement is false about debugging SOA composites?

A. You can run the debugger in Oracle Enterprise Manager Fusion Middleware Control.
B. You can debug on local as well as on remote servers.
C. Breakpoints are the intentional pausing locations in a SOA composite application that you set for debugging purposes.
D. If the composite is not already deployed in the current JDeveloper session, then JDeveloper will redeploy it.

Correct Answer: D
Section: (none)
Explanation

Explanation/Reference:
QUESTION 29
Which three design considerations apply to an if-then rule?

A. A rule function can be called.


B. Aggregations such as count, max, and average can be used.
C. A while loop can be employed.
D. Fact object structures can be changed.
E. A BPEL scope variable can be defined.

Correct Answer: ABC


Section: (none)
Explanation

Explanation/Reference:

QUESTION 30
Which statement accurately describes event-driven architecture?

A. It is a design approach that fosters creation of distinct pieces of software where each piece is a self-contained unit of functionality.
B. It is a programing paradigm that views processing as evaluation of functions without regard for application state.
C. it is a style of building software that specifies logic without describing its control flow.
D. It is an approach focusing on the production, detection, and consumption of potentially significant state changes.

Correct Answer: C
Section: (none)
Explanation

Explanation/Reference:

QUESTION 31
You defined an event. You now want to trigger that event from an existing Mediator component.
How do you link the event to the Mediator so that the Mediator can raise the event to the Event Delivery Network (EDN)?

A. Use the SOA composite editor to specify the event as a property on the incoming wire into the Mediator component.
B. Use a text editor to modify the .edlfile that defines the event so that the Mediator is identified as a publisher.
C. Use the SOA Composite Editor to add a raise action to the Mediator’s .mplan specification file.
D. Use Enterprise Manager to associate the Mediator with the appropriate event.

Correct Answer: A
Section: (none)
Explanation

Explanation/Reference:

QUESTION 32
Which two business indicators should be created to support a chart titled “Sales Total by Region”?

A. Measure
B. Counter
C. Counter mark
D. Dimension

Correct Answer: AD
Section: (none)
Explanation

Explanation/Reference:

QUESTION 33
Identify four situations in which you can configure a notification for a human task.

A. task created
B. task completed
C. task opened in workspace
D. task errored
E. outcome updated
F. task assigned

Correct Answer: ABEF


Section: (none)
Explanation

Explanation/Reference:
QUESTION 34
Which statement is true about Oracle Service Bus support for service virtualization?

A. It allows flexible control of messages using validation, transformation, and routing based on message content.
B. It enables services to be created, managed and orchestrated into composite applications and business processes.
C. It provides comprehensive, built-in security based on Oracle Platform Security Services and Oracle WebLogic security framework.
D. It supports interoperability with web service integration technologies including .NET, TIBCO EMC, IBM MQ, and Apache Axis.

Correct Answer: B
Section: (none)
Explanation

Explanation/Reference:
Explanation: managed, and orchestrated into composite applications and business processes
Reference:
http://docs.oracle.com/cd/E16764_01/integration.1111/e10224/fod_intro1.htm

QUESTION 35
You are planning to upgrade a SOA suite production environment from 11g to 12c and are evaluating the required steps in the upgrade process.
Identify the two statements that accurately describe that process.

A. Composites must be redeployed after the upgrade process.


B. It is recommended to-purge as many nonessential instances in the dehydration store as possible before the upgrade.
C. BAM dashboards and alerts will be migrated automatically.
D. Long-running instances will resume after the upgrade process has completed.

Correct Answer: BC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 36
You are about to upgrade an environment from SOA Suite 11g to SOA Suite 12cand you want to make sure that you meet the prerequisites for the upgrade
process.
Which two options are prerequisites?
A. The operating system and the JVM must be 64-bit.
B. SOA Suite must be at the 11.1.1.5, 11.1.1.6 or 11.1.1.7 patchset levels.
C. Oracle Platform Security Services (OPSS) must have been migrated to use the DB or the LDAP-based policy store.
D. The SOA server must be a single-node server so that it is not part of a SOA cluster.

Correct Answer: AC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 37
When more than one policy is attached to a policy subject, the combination of policies needs to be valid.
Which statement is true about the valid combination of policies for a policy subject?

A. Only one MTOM policy can be attached to a policy subject.


B. More than one Reliable Messaging policy can be attached to a policy subject.
C. You cannot have both a Reliable Messaging policy and a WS-Addressing policy attached to the same policy subject
D. Only one security policy can be attached to a policy subject

Correct Answer: A
Section: (none)
Explanation

Explanation/Reference:
Explanation: Only one MTOM policy can be attached to a policy subject.
Reference: https://docs.oracle.com/cd/E23943_01/web.1111/b32511/attaching.htm#WSSEC1193

QUESTION 38
To avoid the purchase of new server capacity, a company must limit the volume of messages routed to a computationally expensive RESTful service operation.
Which Oracle SOA Suite component can help the company meet this requirement?
A. BPEL process
B. Mediator
C. Proxy Service
D. Business Service

Correct Answer: D
Section: (none)
Explanation

Explanation/Reference:

QUESTION 39
Which two statements accurately describe the invoking of a human task?

A. A web service client in a different composite can invoke a human task.


B. A human task can invoke another human task in the same composite.
C. A BPEL process can invoke a human task in a different composite.
D. A human task can invoke another human task in a different composite.

Correct Answer: CD
Section: (none)
Explanation

Explanation/Reference:
Reference:
http://docs.oracle.com/cd/E23943_01/dev.1111/e10224/bp_hwfmodel.htm

QUESTION 40
For a particular asynchronous interaction, Oracle SOA Suite hosts two BPEL processes. One BPEL process acts as the client and the other acts as the service.
Between the two BPEL processes, what is the smallest number of invoke activities that must be defined?

A. 0
B. 1
C. 2
D. 3

Correct Answer: B
Section: (none)
Explanation

Explanation/Reference:

QUESTION 41
You have a situation where a collection of rules might provide a flexible way of externalizing logic in an application.
Which two are accurate considerations to assess when you decide to use a decision table or if-then rules?

A. The decision table’s spreadsheet metaphor is compact and familiar to end users.
B. Decision tables can use globals whereas if-then rules cannot.
C. The logic will likely require more rules if expressed as a decision table.
D. Unlike with a decision table, an Expression Builder is provided for if-then rules to help you craft condition expressions.
E. Built-in error prevention features for decision tables can help you build more complete and accurate rules.

Correct Answer: BD
Section: (none)
Explanation

Explanation/Reference:

QUESTION 42
Which two are features of Event Delivery Network (EDN)?

A. JMS-based point-to-point architecture that is based on queues.


B. JMS-based publish/subscribe architecture that is based on topics.
C. support for Oracle AQ as a provider
D. separately installable to allow for flexible deployment
E. support for durable subscriptions so that, in order to receive events, the subscriber need not be running

Correct Answer: BC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 43
Which statement is true about how BPEL Process Manager handles the For Each activity?

A. The counter variable of the For Each activity is global, so any change to it in the enclosed scope activity is retained and that change can impact the next
iteration.
B. The For Each activity executes a contained scope activity N times, where N is the final counter value minus the starting counter value.
C. The For Each activity waits for the execution to finish for all the branches specified when the completion condition is specified and evaluated to true.
D. The counter variable of a For Each activity is local to the enclosed scope activity, so a change to it outside the scope of the For Each, does not impact the next
iteration.

Correct Answer: B
Section: (none)
Explanation

Explanation/Reference:

QUESTION 44
For each three items can you create tests by using the Service Component Architecture (SCA) test framework?

A. Reference binding components


B. Service components such as a Mediator
C. Wires
D. Invoke activities in a BPEL process
E. Composite sensors

Correct Answer: BCE


Section: (none)
Explanation

Explanation/Reference:

QUESTION 45
Which two statements accurately describe how Oracle Web Services Manager works?

A. On the client side, the agent coordinates a pipeline of policy interceptors that apply policy assertions to a request in a standardized, predetermined order.
B. On the service side, policy assertions are processed in reverse order of the client side before a request is delivered to the service.
C. On the client side, the policy manager coordinates a pipeline of agents that apply policy assertions to the request in the order specified by the developer.
D. On the service side, policy assertions are processed in the same order as on the client side before a request is delivered to the service.

Correct Answer: AC
Section: (none)
Explanation

Explanation/Reference:
Reference:
https://docs.oracle.com/middleware/1212/owsm/OWSMC/owsm-policy-framework.htm

QUESTION 46
Identify two statements that correctly describe OWSM policy attachments in Oracle SOA Suite

A. Although you can attach as well as detach security policies in JDeveloper, you can only detach them in Enterprise Manager.
B. An application developer typically uses JDeveloper to create new security policies rather than select them from a prebuilt list.
C. When you use JDeveloper to associate a security policy with a web service, the policy is not really attached until application deployment.
D. OWSM policies can be attached and detached with WLST.

Correct Answer: BD
Section: (none)
Explanation

Explanation/Reference:

QUESTION 47
Results catching has been configured on a business service. A previously cached result has been flushed from the cache.
Which two events may have occurred?

A. Result catching has been disabled for the business service.


B. The WSDL resource for the business service has been updated.
C. The back-end service referenced by the endpoint URI has become unavailable.
D. The back-end service has returned a different response for the cache key.

Correct Answer: BD
Section: (none)
Explanation

Explanation/Reference:
QUESTION 48
Given the following XML document, which two XPath expressions return the same result?

<?xml version =”1.0” encoding =”UTF – 8”?>


<bookstore>
<book category=”COOKING”>
<title lang=”en”>Everyday Italian Treats</title>
<author>George Smith</author>
<year>2009</year>
<price>30.00</price>
</book>
<book category=”WEB”>
<title lang=”en”>Getting Started with XPath</title>
<author>Tammy Lee</author>
<author>SergieLadloff</author>
<year>2011</year>
<price>49.99</price>
</book>
</bookstore>

A. bookstore/book/author
B. bookstore/book/author/text ()
C. bookstore/book/author/*
D. bookstore//author/text ()
E. //author/@text
F. //author/*text

Correct Answer: BC
Section: (none)
Explanation

Explanation/Reference:

QUESTION 49
After a successful web application login, an Oracle Access Manager (OAM) token is made available to Oracle WebLogic Server (WLS) where the token is asserted
for authentication purposes. The resulting Java Authentication and Authorization Service (JAAS) subject is then made available to the Oracle Web Service Manager
(OWSM) agent where it is used to create a Security Assertion Markup Language (SAML).
Which security feature does this scenario illustrate?
A. identity propagation
B. single sign-on
C. user authorization
D. non-repudiation

Correct Answer: C
Section: (none)
Explanation

Explanation/Reference:

QUESTION 50
Which three statements are true about the Oracle Enterprise Scheduler Service (ESS) facility?

A. An ESS job request processor is responsible for allocating threads for job requests.
B. An ESS job request dispatcher polls for job requests and invoked jobs.
C. A WebLogic cluster must be established because ESS cannot run on just a single node.
D. On the scheduling service home page, you can quickly find a list of the 10 job requests that have been running for the longest period of time.
E. ESS is used internally by SOA Suite and you typically don’t use it to schedule your own jobs.

Correct Answer: BCE


Section: (none)
Explanation

Explanation/Reference:

Das könnte Ihnen auch gefallen