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 thecomposite.xmlfile.
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.
Explanation:
https://docs.oracle.com/cd/E18727_01/doc.121/e12894/T202991T207026.htm
B,D
B,C
C – because in the outbound direction, the Oracle File Adapter polls and reads the current contents of files.
I agree with you, ankit
Agree, Ankit
Agree