Message read exception to move mail to another folder

Hi all

I created a service proxy in OSB 11 g, my proxy service is read a box to the letters, and after reading the mail I want to pass the mail to move (name of the folder), when I put the Postreadaction I found following error.

# < 10 October 2012 09:45:24 SGT > < WARNING > < statistical ALSB Manager > < XXXXXX11 > < XXXXServer1 > < ExecuteThread [ASSET]: '2' for the queue: '(self-adjusting) weblogic.kernel.Default' > < < anonymous > > <>< e6153a40efec9bff:-22db15af:13999e07549:-8000-000000000000f82f > < 1349833524988 > < BEA-473007 > < aggregator did not receive statistics [XXXXServer2] for the aggregation run to tick 8415900. >
# < 10 October 2012 09:45:27 SGT > < error > < WliSbTransports > < XXXXXX11 > < XXXXServer1 > < pool-27-wire-1 > < weblogic > <>< e6153a40efec9bff:-22db15af:13999e07549:-8000-000000000000f82c > < 1349833527702 > < BEA-381013 > < error occurred during the processing of messages from the Inbox E-mail Proxy Service ProxyService$ XXXXXXX$ Proxy$ XXXXXXXX : com.bea.wli.sb.transports.email.EmailWorkPartitioningAgent$ PostReadException: move
com.bea.wli.sb.transports.email.EmailWorkPartitioningAgent$ PostReadException: move
at com.bea.wli.sb.transports.email.EmailWorkPartitioningAgent.processPostRead(EmailWorkPartitioningAgent.java:456)
at com.bea.wli.sb.transports.email.EmailWorkPartitioningAgent.processInboxMessages(EmailWorkPartitioningAgent.java:239)
at com.bea.wli.sb.transports.email.EmailWorkPartitioningAgent.execute(EmailWorkPartitioningAgent.java:100)
at com.bea.wli.sb.transports.poller.TransportTimerListener.run(TransportTimerListener.java:74)
to java.util.concurrent.Executors$ RunnableAdapter.call (Executors.java:452)
to java.util.concurrent.FutureTask$ Sync.innerRun (FutureTask.java:314)
at java.util.concurrent.FutureTask.run(FutureTask.java:149)
to java.util.concurrent.ScheduledThreadPoolExecutor$ ScheduledFutureTask.access$ 301 (ScheduledThreadPoolExecutor.java:109)
to java.util.concurrent.ScheduledThreadPoolExecutor$ ScheduledFutureTask.run (ScheduledThreadPoolExecutor.java:217)
to java.util.concurrent.ThreadPoolExecutor$ Worker.runTask (ThreadPoolExecutor.java:897)
to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:919)
at java.lang.Thread.run(Thread.java:736)
>


When I check his works very well.

Please help if anyone has an idea.

Marie-Ange

Are you sure that you are connected to an IMAP port, not to a POP3 port? Move action is supported only with the IMAP protocol.

Kind regards
Anuj

Tags: Fusion Middleware

Similar Questions

  • Thunderbird is eating my emails if I try to move them to another folder in the Inbox. Help!

    Whenever I try to drag and drop an e-mail to another box below the Inbox, it disappears and I can't get it back. It started a year ago, but only happened from time to time. Today, it has been every email that I tried to move! Help! I can't have an e-mail program that does this.

    Copy the messages instead of move and verify that the copy was successful. Then just delete them in the source folder.
    If it is an IMAP account, the problem may be with your e-mail provider's server.

  • In Hotmail, receive windows popup when trying to send, move files to another folder.

    Original title: problem in HOTMAIL?

    In HOTMAIL I recently received this pop-up window as soon as I send, move to another folder etc and I was wondering if there is a problem.

    Windows Internet Explorer

    Internet Explorer cannot open the Internet site HTTPS://sn134w.snt134.mail.live .com/default.aspx?wa=wsignin1.0.

    Operation abandoned

    But it does not stop.  When I close the window, the action takes place.

    Hello

    As you use Windows Live Hotmail, I recommend you contact Hotmail for assistance support.

    For more information, please visit: Windows Live Hotmail: main problems and Support information

    Hope the helps of information.

  • Move Photos to another folder in the same catalog

    Can someone tell me how to move the few photos that I processed in Lightroom 3 from one folder to another without losing the changes I already did?

    You can simply drag and drop them in another folder in the same catalog, and do you it from within Lightroom.  Lightroom will remember the changes that you already have.

  • How to get all the names of files in the folder and move it to another folder

    Hello
    How to read the files in a particular directory with PL/SQL, without knowing the exact name? My application interface with another system that puts the files in a specific directory on the server. UTL_FILE method reads a file when you know the name of the file, but I don't know the name in advance. Is it possible to output the name of the file? I also used the method of Tom "http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:439619916584" (related to the Java stored procedure) but am getting error of procedure "ORA-00900: invalid SQL statement. Here's the code I used Tom - forums

    CREATE or REPLACE AND compile java source named 'DirList '.
    AS
    import java. IO;
    import java.sql. *;

    public class DirList
    {
    Public Shared Sub getList (string directory)
    throws SQLException
    {
    Path = new file (directory);
    List of strings [] = path.list ();
    Element string;

    for (int i = 0; i < list.length; i ++)
    {
    item = list;
    #sql {INSERT INTO DIR_LIST (FILENAME)
    {VALUES (: element)};
    }
    }

    }
    /
    **********************************************************************
    CREATE OR REPLACE PROCEDURE get_dir_list (p_directory in VARCHAR2) AS java language
    name ' DirList.getList (java.lang.String) htp.p (p_directory) ";
    **********************************************************************
    get_dir_list exec (' / CERT_XML');
    **********************************************************************

    I would like to know is there any alternative approach to retrieve all the names of the files in the folder of the server and move these files to a different folder?

    Thank you
    Amit Bhandari

    Hello

    It is a limitation of UTL_FILE in Oracle that we can do with Java stored procedures in Oracle.

    We can read the files in Server directory using the following steps:

    Please follow the steps below:

    1. creating a Type of Type Varchar2.

      CREATE OR REPLACE TYPE file_list AS TABLE OF VARCHAR2(255);
    

    2. next, we need create a library of Java file

    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "ListVirtualDirectory" AS
      import java.io.*;
      import java.security.AccessControlException;
      import java.sql.*;
      import oracle.sql.driver.*;
      import oracle.sql.ArrayDescriptor;
      import oracle.sql.ARRAY;
    
      public class ListVirtualDirectory {
        public static ARRAY getList(String path) throws SQLException, AccessControlException {
    
        Connection conn = DriverManager.getConnection("jdbc:default:connection:");
    
        File directory = new File(path);
    
        ArrayDescriptor arrayDescriptor = new ArrayDescriptor("FILE_LIST",conn);
    
        ARRAY listed = new ARRAY(arrayDescriptor,conn,((Object[])directory.list()));
      return listed; }}
    

    The most advanced method overrides by removing information about java.properties of exception management settings. You can do this by catching the exception thrown in native mode and rethrow it or ignore it. The example it up again.

    3. then, you must create a Wrapper function:

    CREATE OR REPLACE FUNCTION list_files(path VARCHAR2) RETURN FILE_LIST IS
    LANGUAGE JAVA
    NAME 'ListVirtualDirectory.getList(java.lang.String) return oracle.sql.ARRAY';
    

    4 grant permissions to the Driectory:

    BEGIN
      DBMS_JAVA.GRANT_PERMISSION('USER_NAME'
                                 ,'SYS:java.io.FilePermission'
                                 ,'C:\JavaDev\images'
                                 ,'read');
      END;
    

    5. then you can read the contents of the directory

    SELECT column_value FROM TABLE(list_files('C:\JavaDev\images'));
    

    That displays all the files in the mentioned directory.

    Thank you
    Shankar

  • How can I copy only a part of a file and move it to another folder

    I have more 100 000 music files in a folder on my external hard drive. I started to copy them to another disk to save the backup, but after 8 hours of copy and before the end of the copy, the computer stops and the copy process has been interrupted.  How could I go to continue the copy process without having to start from the beginning?

    You can hold down the key left mouse and wide from bottom right to top left, or vice versa, to highlight.

    Other ways include:

    To highlight all - point peak one and Ctrl + A will highlight all.

    To highlight a section - highlight the first one you want. Scroll to last and click while holding down the SHIFT key.

    To highlight several messages that affect - hold down the CTRL key while you click each message in order to highlight.

  • Windows 8 mail app-problem when moving e-mail to another folder

    When I try to move electronic reader from Inbox to the folder of my choice, my screen freezes white. Any idea or improve this situation?

    you click the folder, and the shot is done (it seems frozen, but it is not)

  • Windows mail. Inbox does not display messages (reading) open.

    Windows Mail in my Inbox does not continue to display open or read the mail. According to its properties the Inbox folder contains more than 1000 items open but it does not show them. Once I opened an e-mail him disappears from message from the Inbox view pane once it is closed. If I use FIND, I can locate a specific e-mail and move it to another folder to show it again.

    This problem exists only in the Inbox folder. All other subfolders appear unread and read messages.

    Please help - it becomes beyond a joke...

    Thank you

    Not a joke. You just put to hide Read Messages. While in the Inbox: view | Current view. Check: Show all Messages. Bruce Hagen MS - MVP [Mail]

  • Is it possible to move an e-mail to a Hotmail account folder in another folder in e-mail in the same account?

    I can move emails from one folder to another, but is it possible to move an entire folder to another folder?

    Hello

    I'm sorry, but we cannot help you with Hotmail issues in this Feedback Forum for answers

    Please repost your question in Hotmail in the Hotmail Forums the link below

    http://windowslivehelp.com/product.aspx?ProductID=1

    Forums
     
     

  • When you try to move a message read in a folder with the command move at the bottom of the screen, the screen greys out and nothing happens.

    I have synced my Hotmail account with Mail on RT and mail comes and goes well. All my files from my Outlook account transferred.

    However, whenever I try to move a message read in the Inbox to a folder, clicking the command move at the bottom of the screen (after pulling up to the command bar), results in the grizzled screen and nothing happens for hours. It seems that the system is blocked until I tap the gray screen and I'm back to where I was. In others, move the message command doesn't seem to work.

    I found that when I press the movement it gray to the screen with the exception of the list of folders on the left.

    I can then scroll up and down the list of folders and click the folder that I want to move the message.

    Seems to work ok for me.

    Steve

  • How can prevent deletion of the State 'no read' Thunderbird message if it is moved to another folder?

    The installed version of Thunderbird is 31.6.0.
    I have many files in my IMAP account to organize my emails.

    Since one of future versions of Thunderbird emails displaced lose their flag "unread".
    (Sorry - I can't tell since what version exactly this is the case)

    Since I was a tree view of all folders with unread emails (the legend is "Ungelesene Ordner" in my localized installation) for my daily use, it would be very useful to keep the character "unread" in inappropriate emails.

    In my view, there is another aspect of user experience:
    If I move, I won't mark it read.

    My fault. I'm sorry.

    I have receptive use a plugin called "fast Nachrichtenverschieben".

    I missed, that he has the ability to mark a message as read, if you move the message. This option seems to be the 'true' value after an update of this plugin.

    So - this problem is solved.

  • Cannot send mail with attachment from message reads the operation failed an object could not be found

    Unable to send an email with a photo attachment. Once all the steps to configure the e-mail was followed and press on send, the message reads 'the operation failed.  An object cannot be found.

    Hello

    Welcome to the Microsoft Answers site. Please take a look at the following address:
    http://support.Microsoft.com/kb/312354/en-us
    If only it was not fixed, so it's more probablyy caused by an Antivirus/Firewall. Symantec Antivirus seems to cause this issue often (as well as other AVs). In this case, try to disable the mailscanner in your Antivirus and see if that solves the problem. Or disable the Antivirus add-ins related via Outlook. See here how to proceed:
    http://Office.Microsoft.com/en-us/Outlook-help/enable-or-disable-add-ins-in-Office-programs-HA010034127.aspx#BM9

    I hope this helps.

  • Windows Movie Maker project files cannot be read by any other program except Windows Movie Maker.

    Windows XP, Movie Maker: It saves the files as files Windows Movie Maker project that cannot be read by any other program except Windows Movie Maker. Useless for anyone who wants to download on You Tube, etc. Please notify.

    Windows XP, Movie Maker: It saves the files as files Windows Movie Maker project that cannot be read by any other program except Windows Movie Maker. Useless for anyone who wants to download on You Tube, etc. Please notify.

    ===================================
    The project .mswmm file is designed only for a re-release
    for use in Movie Maker. To share your work with
    family and friends, and download to the web... save your
    format .wmv movie projects.

    To save in a .wmv movie file...
    Type of... CTRL + P to open the movie recording Wizard.
    (or... go... File / save movie file)
    Choose... My computer.
    Next /.
    Enter a name and a location.
    Next /.
    ICT... "Best quality for my computer.
    Next /.
    Wait while the movie is saved.
    Finishing...

    Also, the following links may be worth a visit:

    Movie Maker 2 and photo story 3
    PapaJohn YouTube Guide
    http://www.Papajohn.org/mm2-distributing-YouTube.html

    YouTube Help Center: for starters: how to download
    http://www.Google.com/support/YouTube/bin/answer.py?hl=en&answer=57924

    Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • When I try to import new files from an SD card, I get an error message.  The message reads: "If there is already a file in: / Users/student/movies / '.  I want to be able to drag and drop the files, by clicking on the SD icon on the desktop and drop it in

    When I try to import new files from an SD card, I get an error message.  The message reads: "If there is already a file in: / Useres/student/movies / '.  I want to be able to slide the SD card on my desktop icon in the quick editing workspace and select the files I need to change.  Thank you!

    You are on a network in a school? If there might be one video files with the same name already exists in this folder.

    Try to get the video files using add media videos from camcorders or cameras and by accessing the camera or the card reader by using the video importer. In the video importer, you can set the custom file name and rename your files so that they will not have the same names as existing files.

  • I need to move my e-mail to another account. Moved jobs and that the e-mail does not exist. Unable to get my password.

    I need to move my e-mail to another account. Moved jobs and that the e-mail does not exist. Unable to get my password.

    Hello

    Please see change associated with Adobe ID email address

    Hope that helps!

    Kind regards

    Sheena

Maybe you are looking for

  • Need new keyboard for my Satellite Pro L40

    Hi guys,. My L40 needs a new keyboard. Can someone be kind enough to advise those who will be compatible with this? I ask, as the last one I acquired did not even if it was listed as a keyboard for Satellite Pro L40. There were two studs raised who w

  • What is the best way to copy a static variable of C in LabVIEW?

    As an interesting project / fun, I'm trying to implement the bcrypt algorithm in some native G, without using libraries (for example, no link DLL, all of the native code G). Everything is going well so far, with the exception of a minor roadblock I r

  • The pci-6111 can capture samples 400 000

    I'm just a signal that lasts 8 seconds.  The signal varies from 20 kHz to 25 kHz, so I would probably sample right around 50 kHz?  At that note, and if I wanted to capture the whole 8 seconds, according to me, that it would take me about 400000 sampl

  • do not press fn to press keys F #.

    Hello, I use the computer HP Pavilion dv6 note book WW961PA #ABG. As a frequent gamer, I often use the F # but for some reason any on my laptop module, I have to use the fn key to press keys f #. any way to reverse that trend so that the same keys wi

  • Cannot access the document in word _

    while trying to open a document in word, I get this error message "the feature you are trying to use is on an unavailable network resource" when I try to load the Office home and Student 2007 disc, it will not allow not the disc must be installed. We