Batch Processing in java

Hello Everybody
I am working on Files in my project, and doing some IO operations on them.
I am getting the file names from JFileChooser. Now i want to do batch processing on those files.
Can any body help me out how to do batch processing, any suggestions or comments.
Waiting for reply.
Thanks in advance.

Can any body help me out how to do batch processing,
any suggestions or comments.What exactly do you mean when you say batch processing?

Similar Messages

  • Creating a Batch Process in Java

    Hi,
    I have to create a Batch process in Java but I have no idea how can I do that: "Kind of java project I have to create ....
    Thank you for your help.

    Hi,
    I have to create a Batch process in Java but I have
    no idea how can I do that: "Kind of java project I
    have to create ....
    Thank you for your help.Hi,
    I suggest you some methods to create executables for java
    These are the steps::
    1=>Compile all the java classes
    2=>create a Manifest.txt file with Main-Class : (class name where the execution starts ie class which has public static void main(String args[])function
    3=>create a jar
    After creating a jar file there are 2 ways you can make it to run by single click
    1==> you can create a .bat file
    2==>you can convert the jar file in to .exe file by a software
    creating .bat file
    assume let the file is D:\java\hello.jar
    run.bat
    go
    java -jar "D:\java\hello.jar"
    2==> this is the better method and the software which i have is vey convienent to use
    if you need it i can mail you

  • Question about sql batch process in java app

    hi all
    i have few questions about using batch process in the java.sql package. the addBatch method can take sql statements like inserts or updates. can we use a mixture of insert and update then? can we use prepared statement for this? it's just for performance consideration. thanks in advance.

    hi all
    i have few questions about using batch process in the
    java.sql package. the addBatch method can take sql
    statements like inserts or updates. addBatch() is a method that has no parameters. It doesn't 'add' sql statements.
    can we use a
    mixture of insert and update then? can we use
    prepared statement for this? it's just for
    performance consideration. thanks in advance.The point of batching is that you take something that is invariant and then 'add' a variant part.
    Thus a single insert has an invariant part (the table and specific columns) and a variant part (the data for each row by column.)
    You can use anything that is valid SQL (for jdbc, driver, database) and use it presuming your database allows that particular usage in batching. But that does require some regular pattern - it won't work if your usage is random. Nor will it work if some statements need to be executed only some of the time. Finally also note that transaction processing will often require smaller chunks - you can't insert a million rows in one batch.

  • Running a batch process (via thread) in java

    Friends I have gone thru 2 books of java and everywhere it says
    that
    1) the main thread is the one from which other child threads will
    be spawned.
    2)Main thread must be the last thread to finish execution.When the main thread stops,your program terminates.
    Then I am wondering how it works in my case (albeit with little unpredictably !)
    I have this JSP and java application.I throw this JSP and pressing a Submit button I execute a java method in Myclass.java.
    If the book is true then this should not work.But it works.
    Note that I am using Apache server.
    please help.
    Myjsp.jsp
    processSubmission(true)
    class Myclass implements runnable
    public void processSubmission(boolean background) throws Exception
    if (background) {
    Thread oThread = new Thread(this);
    oThread.setDaemon(false);
    oThread.start();
    message = "submission being processed in the background";
    return;
    my huge batch processing java codes.
    public void run()
    try
    processSubmission(false);
    catch(Exception e)

    Friends I have gone thru 2 books of java and
    everywhere it says
    that
    1) the main thread is the one from which other child
    threads will
    be spawned.
    2)Main thread must be the last thread to finish
    execution.When the main thread stops,your program
    terminates.
    No.
    Your program stops when all of the non-daemon threads exit or if the application is explicitly exited - via System.exit().
    Even if you substitute daemon for 'child' in the above it still does not apply.
    From the java docs
    The Java Virtual Machine exits when the only threads running are all daemon threads.
    It doesn't say anything about a 'main' thread. And specifically it is likely that all of your threads will be done before the daemon threads have stopped. So it is much more likely that any 'main' threads will stop first and then the daemon threads stop (I can't see it happening any other way.)
    Even so I would not rely on execution ordering threads for any purpose. If you need execution ordering then you must explicitly provide for it in your code.

  • Executing batch file from Java stored procedure hang

    Dears,
    I'm using the following code to execute batch file from Java Stored procedure, which is working fine from Java IDE JDeveloper 10.1.3.4.
    public static String runFile(String drive)
    String result = "";
    String content = "echo off\n" + "vol " + drive + ": | find /i \"Serial Number is\"";
    try {
    File directory = new File(drive + ":");
    File file = File.createTempFile("bb1", ".bat", directory);
    file.deleteOnExit();
    FileWriter fw = new java.io.FileWriter(file);
    fw.write(content);
    fw.close();
    // The next line is the command causing the problem
    Process p = Runtime.getRuntime().exec("cmd.exe /c " + file.getPath());
    BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line;
    while ((line = input.readLine()) != null)
    result += line;
    input.close();
    file.delete();
    result = result.substring( result.lastIndexOf( ' ' )).trim();
    } catch (Exception e) {
    e.printStackTrace();
    result = e.getClass().getName() + " : " + e.getMessage();
    return result;
    The above code is used in getting the volume of a drive on windows, something like "80EC-C230"
    I gave the SYSTEM schema the required privilege to execute the code.
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'java.io.FilePermission', '<<ALL FILES>>', 'read ,write, execute, delete');
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC DBMS_JAVA.grant_permission('SYSTEM', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    GRANT JAVAUSERPRIV TO SYSTEM;
    I have used the following to load the class in Oracle 9ir2 DB:
    loadjava -u [system/******@orcl|mailto:system/******@orcl] -v -resolve C:\Server\src\net\dev\Util.java
    CREATE FUNCTION A1(drive IN VARCHAR2) RETURN VARCHAR2 AS LANGUAGE JAVA NAME 'net.dev.Util.a1(java.lang.String) return java.lang.String';
    variable serial1 varchar2(1000);
    call A1( 'C' ) into :serial1;
    The problem that it hangs when I execute the call to the function (I have indicated the line causing the problem in a comment in the code).
    I have seen similar problems on other forums, but no solution posted
    [http://oracle.ittoolbox.com/groups/technical-functional/oracle-jdeveloper-l/run-an-exe-file-using-oracle-database-trigger-1567662]
    I have posted this in JDeveloper forum ([t-853821]) but suggested to post for forum in DB.
    Can anyne help?

    Dear Peter,
    You are totally right, I got this as mistake copy paste. I'm just having a Java utility for running external files outside Oracle DB, this is the method runFile()
    I'm passing it the content of script and names of file to be created on the fly and executed then deleted, sorry for the mistake in creating caller function.
    The main point, how I claim that the line in code where creating external process is the problem. I have tried the code with commenting this line and it was working ok, I made this to make sure of the permission required that I need to give to the schema passing security permission problems.
    The function script is running perfect if I'm executing vbs script outside Oracle using something like "cscript //NoLogo aaa1.vbs", but when I use the command line the call just never returns to me "cmd.exe /c bb1.bat".
    where content of bb1.bat as follows:
    echo off
    vol C: | find /i "Serial Number is"
    The above batch file just get the serial number of hard drive assigned when windows formatted HD.
    Same code runs outside Oracle just fine, but inside Oracle doesn't return if I exectued the following:
    variable serial1 varchar2(1000);
    call A1( 'C' ) into :serial1;
    Never returns
    Thanks for tracing teh issue to that details ;) hope you coul help.

  • How to extract data from offline PDF files as batch processing

    Hello.
    I want to use Adobe Interactive forms as batch processing.
    For instances,
    1. Users download offline PDF files.
    2. Users inputs data on their local PCs.
    3. Users upload these PDF files in one folder.
    4. Program can read data form PDF files on that folder. and put data to ERP at night.
    I' d like to know how to implement a program with Java or ABAP.
    Regards.
    Koji.

    Hi,
    It's possible to do it but first be sure that the SAP system can read the directory while your program is executed in background .
    Then you have to read the content of the directory and process each file you found.
    Look at this standard ABAP object cl_gui_frontend_services , you will find method for browsing a directory and retrieve list of file .
    Afterwards you have to process each file , for this have a look at this wiki code sample i wrote for processing inbound mail with adobe interactive form, it should help you [Sample Code for processing Inbound Mail with Adobe Interactive Forms|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/sampleCodeforprocessingInboundMailwithAdobeInteractive+Forms]
    Hope this help you .
    Best regards.

  • Getting an error after executing batch process LTRPRT

    hi we are testing to check how the flat files are created for different customer contacts,for that we had ran the batch process LTRPRT batch process
    it got executed and ended abnormally with an error
    these are the parameters which were submitted during batch submission
    FILE-PATH=d:\spl
    FIELD-DELIM-SW=Y
    CNTL-REC-SW=N
    This is the following error
    ERROR (com.splwg.base.support.batch.GenericCobolBatchProgram) A non-zero code was returned from call to COBOL batch program CIPCLTPB: 2
    com.splwg.shared.common.LoggedException: A non-zero code was returned from call to COBOL batch program CIPCLTPB: 2
    *     at com.splwg.shared.common.LoggedException.raised(LoggedException.java:65)*
    *     at com.splwg.base.support.batch.GenericCobolBatchProgram.callCobolInCobolThread(GenericCobolBatchProgram.java:78)*
    *     at com.splwg.base.support.batch.GenericCobolBatchProgram.execute(GenericCobolBatchProgram.java:38)*
    *     at com.splwg.base.support.batch.CobolBatchWork$DoExecuteWorkInSession.doBatchWorkInSession(CobolBatchWork.java:81)*
    *     at com.splwg.base.support.batch.BatchWorkInSessionExecutable.run(BatchWorkInSessionExecutable.java:56)*
    *     at com.splwg.base.support.batch.CobolBatchWork.doExecuteWork(CobolBatchWork.java:54)*
    *     at com.splwg.base.support.grid.AbstractGridWork.executeWork(AbstractGridWork.java:69)*
    *     at com.splwg.base.support.grid.node.SingleThreadedGrid.addToWorkables(SingleThreadedGrid.java:49)*
    *     at com.splwg.base.support.grid.node.AbstractSingleThreadedGrid.processNewWork(AbstractSingleThreadedGrid.java:49)*
    *     at com.splwg.base.api.batch.StandaloneExecuter$ProcessNewWorkExecutable.execute(StandaloneExecuter.java:590)*
    *     at com.splwg.base.support.context.SessionExecutable.doInNewSession(SessionExecutable.java:38)*
    *     at com.splwg.base.api.batch.StandaloneExecuter.submitProcess(StandaloneExecuter.java:188)*
    *     at com.splwg.base.api.batch.StandaloneExecuter.runOnGrid(StandaloneExecuter.java:153)*
    *     at com.splwg.base.api.batch.StandaloneExecuter.run(StandaloneExecuter.java:137)*
    *     at com.splwg.base.api.batch.StandaloneExecuter.main(StandaloneExecuter.java:357)*
    *18:24:14,652 [main] ERROR (com.splwg.base.support.grid.node.SingleThreadedGrid) Exception trapped in the highest level of a distributed excecution context.*
    what could be the reason?

    you need to specify appropriate folder on the server.
    for e.g. choose +/spl/sploutput/letterextract/+

  • Running a batch file in Java. Urgent!!

    I want to run a batch file present at a particular location in Java.Although I am running two codes suggested by many people, i am still not able to run the batch file. My codes run as below :-
    CODE 1
    Process P;
    Runtime rt = Runtime.getRuntime();
    P = rt.exec("C:\\test.bat");
    CODE 2
    Process P;
    Runtime rt = Runtime.getRuntime();
    P = rt.exec("C:\\WINNT\\System32\\cmd.exe C:\\test.bat");
    I have tried both these codes but without success. But I have observed that in the Task Manager, whenever i run the above codes in a servlet, a "CMD.EXE" is being created in the "Processes" Bar each time but the batch file neither opens up nor it runs.
    Please suggest me some method to run this batch file in Java.
    Or if u can suggest the reason behind the above observation and any corrections i can make to run the batch file. Thanks in advance.
    Ankit

    i want to get more than one command prompt while running the program
    am giving the problem
    import java.io.*;
    class CmdDemo
         CmdDemo(String ls) {
              try
              Process p;
              Runtime rt=Runtime.getRuntime();
              p=rt.exec(ls);
              catch(IOException ioe)
                   System.out.println(ioe);
         void showcmd(){
    new CmdDemo("cmd");
         public static void main(String args[])
              new CmdDemo("cmd");
              new CmdDemo("C:/WINDOWS/System32/cmd.exe");
              new CmdDemo("cmd");
              new CmdDemo("regedit");
              new CmdDemo("regedit");
              new CmdDemo("notepad");
              new CmdDemo("notepad");
              //CmdDemo cd=new CmdDemo("cmd");
              //cd.showcmd();
    here am getting two notepads ,two registry editors
    but only one command window
    i would be very greateful if u could help me
    plz reply to my id [email protected] too

  • How to run a batch file using java

    Hi guys,
    I want to run a batch file by running a java program.
    i have tried for this code, but it is not working , plz guide me code.
    Runtime r = Runtime.getRuntime();
         Process p = null;
         try
              String[] cmd ={"cmd","/c","C:\\jarkarta-tomcat-3.2.3\\webapps\\DDS\\Resumes\\leap.bat"};
              p = r.exec(cmd);
         catch(Exception e)
         System.out.println("Exception in Runtime batch processing."+e);
         }

    You will need this:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Random Error in Batch Processing

    Hi All,
    I have a batch process that reads records from DB, pass them to Mediator which calls a BPEL process. During a huge batch processing of 10000 records, we are getting errors in random fashion as under. This error is not specific to a particular record because on the second run with same records exception is seen for some different records. The instance is seen as faulted in the EM console.
    ####<Jun 2, 2011 9:34:01 AM EDT> <Notice> <Stdout> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@7a6bd54e> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f2a> <1307021641195> <BEA-000000> <<Jun 2, 2011 9:34:01 AM EDT> <Error> <oracle.soa.bpel.system> <BEA-000000> <<BaseCubeSessionBean::logError > Error while invoking bean "cube delivery": could not dispatch message because there is no active transaction.
    there is no active transaction while scheduling a message with the dispatcher.
    this usually happens if the underlying subsystem rollback back the transaction without bubbling up the system or transaction exception to the bpel layer.
    Contact Oracle Support Services. Provide the error message and the exception trace in the log files (with logging level set to debug mode).
    ORABPEL-05007
    could not dispatch message because there is no active transaction.
    there is no active transaction while scheduling a message with the dispatcher.
    this usually happens if the underlying subsystem rollback back the transaction without bubbling up the system or transaction exception to the bpel layer.
    Contact Oracle Support Services. Provide the error message and the exception trace in the log files (with logging level set to debug mode).
         at com.collaxa.cube.engine.util.EngineBeanCache.getTransactionSynchronizer(EngineBeanCache.java:172)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.dispatchLocal(DispatchHelper.java:424)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.dispatchLocal(DispatchHelper.java:414)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialPostAnyType(DeliveryHandler.java:351)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialPost(DeliveryHandler.java:249)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.post(DeliveryHandler.java:106)
         at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.post(CubeDeliveryBean.java:683)
         at sun.reflect.GeneratedMethodAccessor986.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.jee.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:104)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:88)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.wls.JpsWeblogicEjbInterceptor.runJaasMode(JpsWeblogicEjbInterceptor.java:61)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:106)
         at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:106)
         at sun.reflect.GeneratedMethodAccessor906.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.jee.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:69)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy249.post(Unknown Source)
         at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.post(BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.java:330)
         at oracle.fabric.CubeServiceEngine.post(CubeServiceEngine.java:560)
         at oracle.integration.platform.blocks.mesh.AsynchronousMessageHandler.doPost(AsynchronousMessageHandler.java:142)
         at oracle.integration.platform.blocks.mesh.MessageRouter.post(MessageRouter.java:194)
         at oracle.integration.platform.blocks.mesh.MeshImpl$3.run(MeshImpl.java:232)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:396)
         at oracle.integration.platform.blocks.mesh.MeshImpl.doPostAsSubject(MeshImpl.java:230)
         at oracle.integration.platform.blocks.mesh.MeshImpl.post(MeshImpl.java:212)
         at sun.reflect.GeneratedMethodAccessor985.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:59)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy254.post(Unknown Source)
         at oracle.integration.platform.blocks.direct.DirectEntryBindingComponent.post(DirectEntryBindingComponent.java:281)
         at sun.reflect.GeneratedMethodAccessor1295.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.integration.platform.xapp.WLSContextCrossAppProxy$WLSCrossAppProxy.invoke(WLSContextCrossAppProxy.java:52)
         at $Proxy264.post(Unknown Source)
         at oracle.integration.platform.blocks.direct.SOADirectInvokerBean.post(SOADirectInvokerBean.java:32)
         at oracle.integration.platform.blocks.direct.SOADirectInvokerBean.post(SOADirectInvokerBean.java:50)
         at sun.reflect.GeneratedMethodAccessor1294.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.jee.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:104)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:88)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.wls.JpsWeblogicEjbInterceptor.runJaasMode(JpsWeblogicEjbInterceptor.java:61)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:106)
         at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:106)
         at sun.reflect.GeneratedMethodAccessor906.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.jee.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:69)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy312.post(Unknown Source)
         at oracle.integration.platform.blocks.direct.SOADirectInvokerBean_3erlhk_InvokerImpl.post(SOADirectInvokerBean_3erlhk_InvokerImpl.java:57)
         at sun.reflect.GeneratedMethodAccessor1293.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy311.post(Unknown Source)
         at oracle.soa.api.DirectConnectionImpl.post(DirectConnectionImpl.java:87)
         at oracle.soa.api.CachedConnectionProxy.post(CachedConnectionProxy.java:48)
         at oracle.integration.platform.blocks.direct.OutboundMessageDispatcher.post(OutboundMessageDispatcher.java:114)
         at oracle.integration.platform.blocks.direct.DirectExternalBindingComponent.post(DirectExternalBindingComponent.java:228)
         at oracle.integration.platform.blocks.mesh.AsynchronousMessageHandler.doPost(AsynchronousMessageHandler.java:142)
         at oracle.integration.platform.blocks.mesh.MessageRouter.post(MessageRouter.java:194)
         at oracle.integration.platform.blocks.mesh.MeshImpl.post(MeshImpl.java:215)
         at sun.reflect.GeneratedMethodAccessor985.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy254.post(Unknown Source)
         at oracle.tip.mediator.serviceEngine.MediatorServiceEngine.post2Mesh(MediatorServiceEngine.java:1133)
         at oracle.tip.mediator.service.BaseActionHandler.requestProcess(BaseActionHandler.java:200)
         at oracle.tip.mediator.service.BaseActionHandler.requestProcess(BaseActionHandler.java:94)
         at oracle.tip.mediator.service.BaseActionHandler.requestProcess(BaseActionHandler.java:74)
         at oracle.tip.mediator.service.OneWayActionHandler.process(OneWayActionHandler.java:47)
         at oracle.tip.mediator.service.ActionProcessor.onMessage(ActionProcessor.java:64)
         at oracle.tip.mediator.dispatch.MessageDispatcher.executeCase(MessageDispatcher.java:140)
         at oracle.tip.mediator.dispatch.InitialMessageDispatcher.processCase(InitialMessageDispatcher.java:495)
         at oracle.tip.mediator.dispatch.InitialMessageDispatcher.processCases(InitialMessageDispatcher.java:393)
         at oracle.tip.mediator.dispatch.InitialMessageDispatcher.processNormalCases(InitialMessageDispatcher.java:276)
         at oracle.tip.mediator.dispatch.InitialMessageDispatcher.processCases(InitialMessageDispatcher.java:250)
         at oracle.tip.mediator.dispatch.InitialMessageDispatcher.dispatch(InitialMessageDispatcher.java:148)
         at oracle.tip.mediator.serviceEngine.MediatorServiceEngine.process(MediatorServiceEngine.java:860)
         at oracle.tip.mediator.serviceEngine.MediatorServiceEngine.post(MediatorServiceEngine.java:631)
         at oracle.integration.platform.blocks.mesh.AsynchronousMessageHandler.doPost(AsynchronousMessageHandler.java:142)
         at oracle.integration.platform.blocks.mesh.MessageRouter.post(MessageRouter.java:194)
         at oracle.integration.platform.blocks.mesh.MeshImpl.post(MeshImpl.java:215)
         at sun.reflect.GeneratedMethodAccessor985.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:59)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy254.post(Unknown Source)
         at oracle.integration.platform.blocks.adapter.fw.jca.mdb.AdapterServiceMDB.onMessage(AdapterServiceMDB.java:606)
         at oracle.tip.adapter.fw.jca.messageinflow.MessageEndpointImpl.onMessage(MessageEndpointImpl.java:462)
         at oracle.tip.adapter.db.InboundWork.onMessageImmediately(InboundWork.java:2008)
         at oracle.tip.adapter.db.InboundWork.onMessageDirectly(InboundWork.java:1957)
         at oracle.tip.adapter.db.InboundWork.onMessage(InboundWork.java:1834)
         at oracle.tip.adapter.db.InboundWork.transactionalUnitDirectly(InboundWork.java:1569)
         at oracle.tip.adapter.db.InboundWork.transactionalUnit(InboundWork.java:1520)
         at oracle.tip.adapter.db.InboundWork.runOnce(InboundWork.java:781)
         at oracle.tip.adapter.db.InboundWork.run(InboundWork.java:581)
         at oracle.tip.adapter.db.inbound.InboundWorkWrapper.run(InboundWorkWrapper.java:43)
         at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:105)
         at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
         at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    >>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <Common> <dp-esbsit1> <SOAMS2> <[ACTIVE] ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <BEA1-5270EA105C3EF2ACEB3F> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004ed1> <1307021641271> <BEA-000628> <Created "1" resources for pool "SOALocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <JDBC> <dp-esbsit1> <SOAMS2> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f2b> <1307021641279> <BEA-001128> <Connection for pool "TFProcessDB" closed.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <JDBC> <dp-esbsit1> SOAMS2> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f2b> <1307021641351> <BEA-001128> <Connection for pool "TFProcessDB" closed.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <Common> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@6610b103> <<anonymous>> <BEA1-53B3EA105C3EF2ACEB3F> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000001ef2> <1307021641502> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <Common> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@6e7a8312> <<anonymous>> <BEA1-53B7EA105C3E> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000000003> <1307021641504> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <Common> <dp-esbsit1> <SOAMS2> <[ACTIVE] ExecuteThread: '14' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <BEA1-53ACEA105C3EF2ACEB3F> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004ece> <1307021641512> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <Common> <dp-esbsit1> <SOAMS2> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <BEA1-53AEEA105C3EF2ACEB3F> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004ed0> <1307021641515> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <Common> <dp-esbsit1> <SOAMS2> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <BEA1-5294EA105C3EF2ACEB3F> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004edc> <1307021641585> <BEA-000628> <Created "1" resources for pool "eis/wls/TFSOAforLoadJMS", out of which "1" are available and "0" are unavailable.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Info> <Common> <dp-esbsit1> <SOAMS2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <BEA1-53AFEA105C3EF2ACEB3F> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004ed2> <1307021641913> <BEA-000628> <Created "1" resources for pool "eis/wls/TFSOAforLoadJMS", out of which "1" are available and "0" are unavailable.>
    ####<Jun 2, 2011 9:34:01 AM EDT> <Notice> <StdErr> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@7a6bd54e> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f2d> <1307021641943> <BEA-000000> <Not fatal connection error ... not retrying: class com.collaxa.cube.engine.dispatch.DispatchException: could not dispatch message because there is no active transaction.
    there is no active transaction while scheduling a message with the dispatcher.
    this usually happens if the underlying subsystem rollback back the transaction without bubbling up the system or transaction exception to the bpel layer.
    Contact Oracle Support Services. Provide the error message and the exception trace in the log files (with logging level set to debug mode).>
    Caused By: oracle.soa.api.invocation.InvocationException: could not dispatch message because there is no active transaction.
    there is no active transaction while scheduling a message with the dispatcher.
    this usually happens if the underlying subsystem rollback back the transaction without bubbling up the system or transaction exception to the bpel layer.
    Contact Oracle Support Services. Provide the error message and the exception trace in the log files (with logging level set to debug mode).
         at oracle.integration.platform.blocks.direct.SOADirectInvokerBean.handleFabricInvocationException(SOADirectInvokerBean.java:155)
         at oracle.integration.platform.blocks.direct.SOADirectInvokerBean.post(SOADirectInvokerBean.java:63)
         at sun.reflect.GeneratedMethodAccessor1294.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.jee.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:104)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:88)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.wls.JpsWeblogicEjbInterceptor.runJaasMode(JpsWeblogicEjbInterceptor.java:61)
         at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:106)
         at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:106)
         at sun.reflect.GeneratedMethodAccessor906.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.jee.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:69)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    >>
    ####<Jun 2, 2011 9:34:03 AM EDT> <Notice> <Stdout> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@7a6bd54e> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f32> <1307021643170> <BEA-000000> <<Jun 2, 2011 9:34:03 AM EDT> <Error> <oracle.soa.mediator.serviceEngine> <BEA-000000> <Payloads {payload=oracle.xml.parser.v2.XMLElement@5d05be} properties :{tracking.compositeInstanceId=760511, tracking.ecid=0000J1GZnW07IBk_Gx^Ayf1DtL3E000N^1, tracking.conversationId=401%401307021606, tracking.compositeInstanceCreatedTime=Thu Jun 02 09:33:41 EDT 2011, tracking.parentComponentInstanceId=mediator:EE0C9E808D1C11E08F1E1FFA7E86F5E9, MESH_METRICS=null, tracking.parentReferenceId=mediator:EE0C9E808D1C11E08F1E1FFA7E86F5E9:EE163B708D1C11E08F1E1FFA7E86F5E9:oneway}>>
    ####<Jun 2, 2011 9:34:03 AM EDT> <Notice> <Stdout> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@7a6bd54e> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f33> <1307021643174> <BEA-000000> <<Jun 2, 2011 9:34:03 AM EDT> <Warning> <oracle.soa.mediator.common> <BEA-000000> < Payload after BaseActionHander.requestMessage :{payload=oracle.xml.parser.v2.XMLElement@5d05be}>>
    ####<Jun 2, 2011 9:34:03 AM EDT> <Notice> <Stdout> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@7a6bd54e> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f34> <1307021643177> <BEA-000000> <<Jun 2, 2011 9:34:03 AM EDT> <Warning> <oracle.soa.mediator.common> <BEA-000000> < Properties after BaseActionHander.requestMessage :{tracking.compositeInstanceId=760511, tracking.ecid=0000J1GZnW07IBk_Gx^Ayf1DtL3E000N^1, tracking.conversationId=401%401307021606, tracking.compositeInstanceCreatedTime=Thu Jun 02 09:33:41 EDT 2011, tracking.parentComponentInstanceId=mediator:EE0C9E808D1C11E08F1E1FFA7E86F5E9, MESH_METRICS=null, tracking.parentReferenceId=mediator:EE0C9E808D1C11E08F1E1FFA7E86F5E9:EE163B708D1C11E08F1E1FFA7E86F5E9:oneway}>>
    ####<Jun 2, 2011 9:34:03 AM EDT> <Notice> <Stdout> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@7a6bd54e> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f35> <1307021643179> <BEA-000000> <<Jun 2, 2011 9:34:03 AM EDT> <Warning> <oracle.soa.mediator.common> <BEA-000000> < Headers after BaseActionHander.requestMessage :[oracle.xml.parser.v2.XMLElement@413e12a2, oracle.xml.parser.v2.XMLElement@6e84c28d]>>
    ####<Jun 2, 2011 9:34:03 AM EDT> <Notice> <Stdout> <dp-esbsit1> <SOAMS2> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@7a6bd54e> <<WLS Kernel>> <> <ff1bb8b4974ffa43:-7052aa6c:13047c5dbf0:-7ff1-0000000000004f36> <1307021643301> <BEA-000000> <<Jun 2, 2011 9:34:03 AM EDT> <Error> <oracle.soa.mediator.service> <BEA-000000> <re-throwing the received exception oracle.fabric.common.FabricInvocationException: oracle.soa.api.invocation.InvocationException: could not dispatch message because there is no active transaction.
    there is no active transaction while scheduling a message with the dispatcher.
    this usually happens if the underlying subsystem rollback back the transaction without bubbling up the system or transaction exception to the bpel layer.
    Thanks for your help
    Regards,
    -NJ

    did you check the Error "Failed to serialize the DOM element" during dehydration
    hth

  • Acrobat 5 Batch Processing Edit batch sequences

    Hello
    I'm in a process of upgrading from Acrobat version 5 to the latest version of Acrobat.
    I have a user who bookmarks PDF's via Batch Processing in Acrobat 5. I need to export this Java script to a new machine.
    What is the easiest and fastest way to do this?
    Thanks
    Huinia

    Can you guys please post some screenshots or instructions... It's a big step from version 5 to version 11... I think it's working but by the looks of it the user needs to do more work to what they did in the version 5.
    Also please see below some info from the user. Hopefully it makes sense.
    Adding PDF’s to existing PDF’s
    Adding PDF’s:
    User needs ‘X’ PDF to drag and drop on ‘XX’ PDF and to be set at the last page > then the destination to be set > save and close:
    few issues with Adobe 11.0 in regard to this – example below with adobe 11.0 and also with what the user previously did with Adobe 5.0 (user needs to use 11.0 version)
    Relates to image 1 below – as suggested in the above forum user is to open ‘page thumbnails’ left hand panel and drag X PDF onto XX PDF but the user may have 1000 individual PDF’s within X and this is time consuming scrolling all the way to the bottom in the ‘page thumbnails’ left hand panel to add in PDF X. Can you assist in a more simple way or is there a better way to do this?
    Relates to image 2 below - User previously in Adobe 5.0 would open ‘X’ PDF and then drag and drop ‘XX’ PDF and click ‘insert pages’ > ‘last’ > ‘Ok’ = this would set X PDF into XX PDF and set it to start after the last page on XX
    Image 1 below in Adobe 11.0
    Image 2 below in Adobe 5.0 – wanting 11.0 to mirror 5.0 actions

  • Script for batch processing

    Hello
    I need help
    I created a batch sequence which set watermark and security to pdf files from one directory. Now i want to create another sequence: 1. set security to none and 2. delete watermark.
    I have a problem with set security to none because every time i need change preferences for batch process to security method=password security by hand.
    Maybe there is a way to change this settings with java script in batch "execute java script"?
    Or how i can change with batch sequence a security method from passsword security to "none" if i know password
    Thanks in advance

    Create a "blank" batch process (ie, without any action), but under the Output Options tick the box to optimize the files and set the optimization settings you want to use.

  • Run batch files through java code

    Hi All
    I need to run a batch file using java code . I am not getting any error, but also no output. Can someone let me know the problem with my code.The code i am using is
    import java.io.*;
    public class batchtest {
         public static void main(String[] args) {
              Runtime r = Runtime.getRuntime();
         Process p= null;
         String line;
              try{
              p = r.exec("cmd /c testBatch.bat");
              BufferedReader input = new BufferedReader
              (new InputStreamReader(p.getInputStream()));
         while ((line = input.readLine()) != null) {
         System.out.println(line);
         input.close();
              System.out.println("running...");
              }catch(Exception e)
                   e.printStackTrace();
    }

    Maybe this helps:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Photoshop 7 - batch processing is no longer doing save as

    I have had Photoshop 7 for many years.  I have been using several resizing and sharpening batch processes which have saved a resultant file at the end with a different name.  In the Batch process an original folder was selected and a destination folder and the file name changed with a different custom prefix.  I have been using these batch processes with no problems for years.  Without warning I have noticed that all of these batches are no longer working and the end result is one file in the destination folder, ie it must me overwriting.  I have tried to recreate the basic batch process again  and have resorted to using both 'save; and 'save as' at the end of the process in different test batch processes and the same result happens pretty much each time, the one file after the original folder had 5 images.  I have noticed that 'Save as' is not showing up in the actions of the batch process (only shows as 'Save' irrespective if you selected 'save' or 'save as'.  It is like Photoshop is refusing to accept 'save as' with a new file as a valid action.  I have also tried to check the override 'save as' box etc.  If you edit normally in Photoshop and 'save as' for that image, there are no problems
    Going nuts as I am a team photographer for a team playing in a national competition and therefore have a large volume of images to edit/resize
    cheers
    Hockeysnapper

    Windows XP previously, Windows 7 now (has been for about a year). 
    Computer is according to 'device and printers', ACPI x86-based PC, with Intel Core i5-3450 [email protected], and Xeon processor E3-1200 v2/3rd Gen Core - was all put together last year.
    Drives are nowhere near full.
    Only recent update has been Java on the weekend, coinciding with when I first noticed the issue.
    I have deleted Photoshop 7 off the computer using Windows 7's delete program function as there is no uninstall.exe file in the PS7 folder.  I deleted it out of Startup and off the Desktop.  I also deleted the remaining plugin folder containing Noise Ninja anti-noise software.
    I reinstalled the PS7 software again and in PS7 I expected the batch processes now to only contain the default batch processes, but all of my created ones are there in the list - this says they are not deleted in the uninstalll process.  Where are these stored on your computer so I can delete these perhaps?  However I am unconvinced that will actually achieve anything (see * below).    I deleted a few of these using the trashbin off the Actions palette.
    I created the numerous variations of the batch processes again, with 'save as overrides' box checked/unchecked and still no joy.  What I have noticed it does not matter whether you used 'save as' as one of your actions it has replaced it with 'save' every time (*).  How does/can that happen?  All the other 'save' actions for any of the other batch processes all show as 'save' now.    There is of course no option to change the 'save' in the actions to 'save as', eg right click mouse or something.
    I haven't found anything related in Google searches.

  • OutOfMemory in Batch process

    I have recently upgrade to 10.1.3.1 from 9.3x and I am trying to run a batch process - 75000 records - that worked before the upgrade, but now I'm getting
    java.lang.OutOfMemoryError: Java heap space
    My memory settings are Xmx400 Xms400 Xoss7m Xss7m for java 1.5
    Any ideas? Configuration changes that may have been over-written/omitted in the upgrade? New settings?
    Thanks,
    Bret

    Now I have found that 700m for a heap size works, but almost doubling this value doesn't seem like something I should have to do. This is a batch process that used to work with 200, then 300, then after the upgrade requires 700.
    Bret

Maybe you are looking for

  • "Search in Files" inside .ini files

    I use the site search and search in file features in Dreamweaver quite often but I just discovered that if I have a folder full of .ini files and I need to search globally inside those files Dreamweaver returns no results. Apparently, DW is unable to

  • External monitor problem after Lion upgrade

    Hi, I have a 20" iMac which has a screen resolution of 1680x1050(ATI Radeon HD 2600 Pro 256 MB).  I have been using an additional 168x1050 monitor(Dell 2009W) in dual screen mode.  This was working fine with Leopard, Snow Leopard, but it does not wor

  • When redirecting to site url jsessionid is appended and url becomes wrong

    hi, i have requirement when user clicks on link on b2c application then it should redirect to a site url.The problem when redirecting to site url is that jsessionid gets appended to site url and as a result url is not opened   due to wrong url genera

  • ? trouble w/ selection tools showing in triplicate??

    When I use a selection tool like the hand, or magnifyer, it shows up in multiples of 3.  How can I get this to stop and just show me one tool?  This is in photoshop elements 9 for windows.

  • Fitch in a report for the Ipad.

    Hi All. Need your help! With the help of tools was implemented upper tablet, or rather, the column Revenue and Sales? If this is WI, then how can you do? http://content.foto.mail.ru/bk/gurinv/_myphoto/i-2.jpg