File Adapter BPEL Process getting switched off

The file adapter BPEL process reads a csv file which has a series of records in itfrom /xfer/chroot/data/aramex/accountUpdate/files. In between reading the files, the BPEL process gets switched off. The below snippet is the error we found in the domain.log. Anybody can you please suggest what to do?
<2010-11-25 16:22:28,025> <WARN> <PreActivation.collaxa.cube.ws> <File Adapter::Outbound>
java.io.FileNotFoundException: /xfer/chroot/data/aramex/accountUpdate/files/VFQ-251120101_1000.csv (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:106)
at oracle.tip.adapter.file.FileUtil.copyFile(FileUtil.java:947)
at oracle.tip.adapter.file.inbound.ProcessWork.defaultArchive(ProcessWork.java:2341)
at oracle.tip.adapter.file.inbound.ProcessWork.doneProcessing(ProcessWork.java:614)
at oracle.tip.adapter.file.inbound.ProcessWork.processMessages(ProcessWork.java:445)
at oracle.tip.adapter.file.inbound.ProcessWork.run(ProcessWork.java:227)
at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:280)
at java.lang.Thread.run(Thread.java:619)
<2010-11-25 16:22:28,025> <INFO> <PreActivation.collaxa.cube.ws> <File Adapter::Outbound> Processer thread calling onFatalError with exception /xfer/chroot/data/aramex/accountUpdate/files/VFQ-251120101_1000.csv (No such file or directory)
<2010-11-25 16:22:28,025> <FATAL> <PreActivation.collaxa.cube.activation> <AdapterFramework::Inbound> [Read_ptt::Read(root)]Resource Adapter requested Process shutdown!
<2010-11-25 16:22:28,025> <INFO> <PreActivation.collaxa.cube.activation> <AdapterFramework::Inbound> Adapter Framework instance: OraBPEL - performing endpointDeactivation for portType=Read_ptt, operation=Read
<2010-11-25 16:22:28,025> <INFO> <PreActivation.collaxa.cube.ws> <File Adapter::Outbound> Endpoint De-activation called in adapter for endpoint : /xfer/chroot/data/aramex/accountUpdate/files/
<2010-11-25 16:22:28,095> <WARN> <PreActivation.collaxa.cube.ws> <File Adapter::Outbound> ProcessWork::Delete failed, the operation will be retried for max of [2] times
<2010-11-25 16:22:28,095> <WARN> <PreActivation.collaxa.cube.ws> <File Adapter::Outbound>
ORABPEL-11042
File deletion failed.
File : /xfer/chroot/data/aramex/accountUpdate/files/VFQ-251120101_1000.csv as it does not exist. could not be deleted.
Delete the file and restart server. Contact oracle support if error is not fixable.
at oracle.tip.adapter.file.FileUtil.deleteFile(FileUtil.java:279)
at oracle.tip.adapter.file.FileUtil.deleteFile(FileUtil.java:177)
at oracle.tip.adapter.file.FileAgent.deleteFile(FileAgent.java:223)
at oracle.tip.adapter.file.inbound.FileSource.deleteFile(FileSource.java:245)
at oracle.tip.adapter.file.inbound.ProcessWork.doneProcessing(ProcessWork.java:655)
at oracle.tip.adapter.file.inbound.ProcessWork.processMessages(ProcessWork.java:445)
at oracle.tip.adapter.file.inbound.ProcessWork.run(ProcessWork.java:227)
at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:280)
at java.lang.Thread.run(Thread.java:619)
<2010-11-25 16:22:28,315> <ERROR> <PreActivation.collaxa.cube> <BaseCubeSessionBean::logError> Error while invoking bean "cube delivery": Process state off.
The process class "BulkAccountUpdateFileConsumer" (revision "1.0" ) has not been turned on. No operations on the process or any instances belonging to the process may be performed if the process is off.
Please consult your administrator if this process has been turned off inadvertently.

This patch is not for 10.1.3.1.
I have provided a response to on the following post
BPEL Process Going into Dead State Automatically.
cheers
James

Similar Messages

  • How to Upload a File in Bpel Process using JSP

    I am trying to upload file in bpel process using front end as a Jsp.
    i create the jsp page and i am able to pass the value from jsp to bpel process.
    In bpel process i don't know how to pass or assign the specified file name into file adapter for reading the files.
    Please help me...
    Saravanan

    You don't assign the url of the file to it.
    To either get the data from the file into the bpel process you could use the url-parameter together with the ora:readFile function....or you could let your web-application upload the file to some location on the server...and on this location you could use the file-adapter together with the polling, to start your bpel process.

  • Tracking only Error records from Batch file in BPEL process

    Hi,
    I am reading file of 1000 records from file adaptor and debatching into two instance of each 500 records. And using invoke insert operation writing into database.
    The first batch of 500 records processed successfully and written into database custom table.
    The second set of 500 records created warning instance with some error message and nothing is written to database from second set.
    The error is due to some wrong data in one row of second set of 500 records. Due to that single row error, the remaining 499 got rejected and nothing from second set is inserted into database.
    Do we have control on that only one record of second set(500records) and BPEL process should write remaining 499 records to database.
    Please help me on this issue. It would be great help. Thanks inadvance.
    Waiting for your replies.
    Thank you.
    Edited by: PraveenT2 on May 13, 2009 4:27 AM

    Hi james,
    Below is the schema file using for reading file
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    targetNamespace="http://TargetNamespace.com/readService"
    xmlns:tns="http://TargetNamespace.com/readService"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified" nxsd:encoding="ASCII" nxsd:stream="chars" nxsd:version="NXSD"
    *nxsd:uniqueMessageSeparator="${eol}">*
    <xsd:element name="Root-Element">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="root" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="C1" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;">
    </xsd:element>
    <xsd:element name="C2" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;">
    </xsd:element>
    <xsd:element name="C3" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="," nxsd:quotedBy="&quot;">
    </xsd:element>
    <xsd:element name="C4" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;">
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    *and in bpel .xml file edited property for rejected file*
    activationAgent
    className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent"
    partnerLink="readService">
    <property name="rejectedMessageHandlers">
    file://C:/Initiatives/Employee/RejectedRecords
    </property>
    </activationAgent>
    The Issue i am facing is when i provide the datafile with all invalid values then process didn't create instance but made entry of all invalid record into directory path specified in bpel.xml while setting rejectMessageHandler property.
    But when i provide mix of valid and invalid records of file, then bpel process created instance with warning status.
    the file i was provided is :
    10,veer,10000,12
    20,james,2000,10
    Veer|name|Test
    Veer|name|Test
    Veer|name|Test
    10,file,10000,12
    20,error,2000,10
    I was expecting 1st,2nd,6th and 7th row should be processes and invalid 3rd,4th and 5th rows should get written into rejectedMessageHandlers folder set at bpel.xml. But instance has created and treated whole invalid rows + 10 as first column for 6th row as pasted below.
    <ns0:eno>Veer|name|Test
    Veer|name|Test
    Veer|name|Test
    10
    </ns0:eno>
    <ns0:ename>file</ns0:ename>
    <ns0:sal>10000</ns0:sal>
    <ns0:dept>12</ns0:dept>
    Nothing has written into rejectedMessageHandlers folder set at bpel.xml.
    Can you please help me on this issue. Thank you very much.
    Edited by: PraveenT2 on May 13, 2009 10:33 PM
    Edited by: PraveenT2 on May 13, 2009 10:34 PM
    Edited by: PraveenT2 on May 13, 2009 10:48 PM

  • Blackberry Z10 getting switched off

    Dear All...
    Please..Please.. help me if somebody knows the solution for this...
    My Z10 getting switched off frequently even if 80% battery is remaining.. If try to switch on again it will complete the booting procedure and then will go to off mode..
    If i kept all my networks off then it will stay on till the last juice of my battery...but with the network on..its dead.. i dont think its the problem with the battery.. I am totally confused and fed up with this.. Cannot keep my phone on atleast for 1 hour also..
    Very horrible experience i am facing with Z10..
    Kind hearts in BB Support Forums.. Please help me to solve this issue..
    Thanks..
    Prakash

    Hi and Welcome to the Community!
    Please try this sequence...note that, throughout the entire 4h15m process, your BB must remain directly connected to a known-good wall charger (not PC USB, not a cradle):
    With the battery inside, connect your BB to the wall charger
    Leave it alone for 2 hours, no matter what the LED or the display does
    Remove the battery
    Wait 15 minutes
    Insert the battery
    Wait another 2 hours, no matter what the LED or the display does
    This has been known to "kick start" some BBs.
    It is also possible that your battery or BB has experienced a problem...to test, this sequence is needed:
    Obtain an known good and already fully charged additional battery...use it in your BB and see what happens
    Obtain access to a known good and identical BB...use your battery in it and see what happens
    The results of this will indicate if it's your BB or your battery that has the problem. Note carefully please that "new" and "know good" are not necessarily the same things. While rare, a "new" battery certainly could be defective. Rather, the simplest (and least costly, btw) method to conduct this test is to find someone with an identical BB who has no issues...trade batteries and see what happens.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • JCBC Adapter and File adapter not processing messages

    Hi
    I noticed that messages are being delivered to Adapter engine and the same are visible in Runtime Workbench with status "to be delivered". But, JDBC Adapter and File Adapter not processing these messages.
    Any idea where I can find the problem?
    I was able to re-deliver successfully via the JDBC Adapter using the MessagingSystem GUI using XISUPER user.
    Regards
    Chandu

    Hi,
    1.Status: TO_BE_DELIVERED
    Which means that the message was successfully delivered from Integration Server point of view and it states that the messages is initially handed over to the Messaging System.
    TO_BE_DELIVERED occurs while the message is put into the Messaging System receive queue.
    Regards
    Agasthuri Doss

  • My Micro M200 Getting Switch Off while pressing MENU But

    I have got creative N200 256MB Recently, but after using it for few days it starts giving problem,
    I have got an problem that i cant access the MENU BUTTON , when ever i try to open the menu it directly get switched off, also i cant change the mode towards the MP3, because of this problem, so what shall i do ? , also i was using Sony 256 MP3 player but due to quality i have shifted towards creative i thought that it is much better then Sony, Panasonic and apples (iPod), That i will get better quality
    Now i wana see the creativity of the Team CREATIVE
    Waiting For JET AGE REPLY,
    Faiz

    "And I estimate the battery to be ok, it works fine for many hours playing, even after fw-reload. "
    I don't understand your logic. If you already used the battery for many hours, then it is likely to be quite weak. Alkaline batteries die gradually, and there might be enough power to get the player to play for a while, but not to switch functions. Try a fresh battery and tell us if you are still having a problem.

  • My iphone 4s camera is getting switch off when i use

    My iphone 4s camera is getting switch off when i use and when i use HDR function in the camera its getting switch off after taking picture and I wont see the picture where I have taken, can any one help me out in this or I should go to service center

    Uninstall the app and reinstall it. If it persists dont use it. simple

  • While erasing memories from iPhone 4, the phone gets switched off and can't turn on back

    while erasing memories from iPhone 4, the phone gets switched off and can't turn on back. Please help.

    What exactly do you mean by "erasing memories"?

  • Lenovo P70 getting switched off and on automatically

    i purchased P70 recently. * but nowadays its getting switched off automatically and sometimes gets on after half n hour. * sometimes also doesnt show the contacts listed in the mobile is this hardware or software issue. kindly advise....

    i have the same with yours,i suggest back up all data.i lost mine...its very bad.this is bad issue.back up...now my case is under investigation.my 10 yrs data was gone,,**bleep**

  • My iphone5 is getting troublesome after installing that ios7 it goes blank and gets switched off automatically pls help, My iphone5 is getting troublesome after installing that ios7 it goes blank and gets switched off automatically pls help

    My iPhone 5 is getting hanged after installing ios7 and gets switched off automatically when ever I type and shows vertical black bars fading to getting it switched off.some freezing screen also happen kindly help. Thanks

    Try a reset: hold down the home button along with the power button until you see the Apple, then let go.

  • I have an iphone 4 n it is getting switched off automatically n switches on automatically , also it increases d volume by itself. Can anyone help me find out if its a hardware problem???

    I have an iphone 4 n it is getting switched off automatically n switches on automatically , also it increases d volume by itself. Its a 1year old phone n the version is 4.3.2(8H7). Also the volume sign does not go off from the screen. Can anyone help me find out if its a hardware problem???

    Do you have a case on your iPhone? It could be pressing the buttons on the iPhone and causing it to restart or behave unusually.
    This Apple doc will help you find out if there is a hardware or software problem -> iPhone: Hardware troubleshooting
    You can always contact Apple and setup service through Express Lane.

  • N73 ME Getting Switched off Automatically, every 1...

    Hey,
    I have an N73 Music Edition since Oct 2007. Its been almost an year now, but i never faced any problem. But recently it is screwing up my time. Since 2 days, it is getting switched off automatically every 15 minutes. It was very fine until 2 days, but suddenly started.
    Read a lot of articles which asked me to update my phone software. So i have updated the phone software to firmware version 4.08 from nokia website. The phone worked well for a day and then again the same problem started.
    Is the issue due to software? Or is it because something else like hardware prob etc.
    Please help
    Srikanth.

    Do you have a case on your iPhone? It could be pressing the buttons on the iPhone and causing it to restart or behave unusually.
    This Apple doc will help you find out if there is a hardware or software problem -> iPhone: Hardware troubleshooting
    You can always contact Apple and setup service through Express Lane.

  • IPad-2 getting switched off

    MY iPad is getting switched off frequently. It's having a 100% battery. But while using it , it turns off automatically . Then it shows battery icon to switch it to power when trying to switch it on. Once the iPad is on, it shows the total percent as 100 or sometimes 70 or 80. Can someone help me in this issue I have tried resetting my iPad and all possibilities by turning off background app refresh, Bluetooth etc. but nothing seems to wor. Is it issue with battery?. This is happening after I updated my iPad to ios8

    Hi there Mahi0471,
    According to the article below, if your device is up to date and unexpectedly powering off, you may need to contact Apple Support. 
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it
    -Griff W. 

  • My iphone is getting switched off frequently

    Hello,
    My iphone 4 gets switched off randomly.Also I cant start the phone without attaching it to computer .
    And when I remove the cable it again gets swtiched off .
    Can anyone tell me what can be the problem ......

    That could be a symptom of the battery going bad.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Ipad getting switched off simultaneously and again restarts automatically

    i've an ipad2 3g which is just 3 months old, recently just getting switched off every now & then
    after every 5-6 mins apprx. (not on specific applications, it happens always), i've tried reset also made sure there are no apps running in the background, still facing the same issue, any fix?....plz suggest apart from restore which i've already done
    whenever it restarts, the battery percentage also drops down
    for example if it is 75% when i m using, after it restarts it reduces to 70% which is abnormal behaviour i believe, plz help

    Hi there Mahi0471,
    According to the article below, if your device is up to date and unexpectedly powering off, you may need to contact Apple Support. 
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it
    -Griff W. 

Maybe you are looking for

  • Multiple PO for 3rd party

    While creating Multiple PO for 3d Party PR Items,  error 06-249 is thrown.

  • Error while saving the same model in the

    Hi, I have created a model in one package and deleted the model due to some problem.Now i have created the same model but in the different package.Now,in the default webdynpro generated code i am getting errors. Can any one provide solution. Thanks i

  • Repetitive "Exception during idle processing" log message from servermgrd

    Hello, I'm at my wit's end trying to find the answer to this issue, and I don't have any clue where to begin. In /var/log/system.log, I'm receiving the following message approximately once per minute: Apr 17 13:51:21 www servermgrd\[83317\]: Exceptio

  • WLC 5508 - WLAN, changing the SSID ?

    It doesnt seem I am able to change the SSID of an active or disabled wlan via the web interface ? Any ideas ? Cheers dave

  • Nokia 2600 Classic calendar synchronising with Nov...

    I have been successfully using the sync capability  for a year or so on the version of pc suite prior to Ovi, for managing my calendar appointments (using Novell Groupwise) on my pc then uploading to my phone Nokia 2600 Classic. Now that I have downl