Bpel Exec Selection error

Hi,
I created a basic bpel process with "input" as input variable and one variable as "output1", I have written a small java as below
try
String input1_lv = getVariableData("inputVariable","payload","/client:BPELProcess1ProcessRequest/client:input1").toString();
setVariableData("output1",input1_lv);
addAuditTrailEntry("output1 is : " + input1_lv);
}catch(Exception e){                                  
addAuditTrailEntry("error" + e.toString());
System.out.println("Exception in Embedded Java:" + e.toString());
and then assigning this output1 to "result" of bpel process output variable.
I am getting error in Java_Embedding_1 activity as
- errorcom.oracle.bpel.client.BPELFault: faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure} messageType: {} parts: {{}}
- bpelx:exec executed
Please anyone let me know where is the problem
Thanks
Sree

Hi soa_bpel,
please review the JVM start parameters for bpel's oc4j container in the following file:
$OH/opmn/conf/opmn.xml
Should be something like this:
<process-type id="YourContainer" module-id="OC4J" status="enabled">
<module-data>
<category id="start-parameters">
<data id="java-options" value="-server -XX:MaxPermSize=256M -ms1024M -mx1024M ....
Hope that helps,
- Roland

Similar Messages

  • SM69-Can't exec external program (Exec format error)

    Hi All,
    I am executing UNIX script on HP-UX system via SM69.
    But getting following error:
    u201CCan't exec external program (Exec format error)
    External program terminated with exit code 1u201D
    Also getting same error with FM-SXPG_COMMAND_EXECUTE & SXPG_COMMAND_EXECUTE
    Can any one guide what is the cause of error.
    Any help will be appreciated.
    Regards

    Check the Sample program. You can test or check the Unix commands using the below program.
    You can use the commands Like LS to list all the files.
    REPORT ZUNIX line-size 400
                    no standard page heading.
    data: unixcom like   rlgrap-filename.  
    "7 full perimission to read
    "7 full permission to change
    "7 full permission to delete
    unixcom = 'CHMOD 777 fillfullpath'.
    data: begin of tabl occurs 500,
            line(400),
          end of tabl.
    data: lines type i.
    start-of-selection.
      refresh tabl.
      call 'SYSTEM' id 'COMMAND' field unixcom
                    id 'TAB'     field tabl[].

  • Execve: Exec format error to execute shell script

    I made job to execute a shell script.
    exec dbms_scheduler.create_job (
    job_name => 'run_sh',
    job_type=>'EXECUTABLE',
    job_action=> '/fsoracle/app/oracle/inst2/if_cft/send_file_susin.sh',
    start_date=>sysdate + 1/5760,
    enabled => TRUE
    send_file_susin.sh
    #!/bin/ksh
    set -v
    . /fsutil/ndm/axway/profile
    /fsutil/ndm/axway/Synchrony/Transfer_CFT/bin/CFTUTIL << EOJ
    CONFIG TYPE=COM,MEDIACOM=TCPIP,FNAME=$CFTTCP
         SEND PART=ZADA,IDF=1363X1364,
              FNAME='/fsoracle/app/oracle/product/rdbms/log/KFG.DD.SHRCOM.HRD.A03',
              NFNAME=KFG.DD.SHRCOM.HRD.A03,
              FLRECL=25,NLRECL=25
         SWAITCAT SELECT='IDTU=="%_CAT_IDTU%"'     
    EOJ
    This script is well executed in terminal mode, but it threwed error, [ORA-27369: job of type EXECUTABLE failed with exit code: Unknown error STANDARD_ERROR="execve: Exec format error"] when I executed the shell script, send_file_susin.sh.
    I changed owners and chmods of some specific files, and t.sh was well executed.
    t.sh
    #!bin/ksh
    /usr/bin/mkdir /tmp/test
    I don't know what's wrong with the script, send_file_susin.sh.
    Does any know about this? Please, tell me the solution.
    Thanks in advance,
    Jinbae Kim.

    Hi,
    Posting this in case anyone else find it.
    The key error here is "execve: Exec format error" .
    The following things should be checked
    - that the shell script is a text file has UNIX line terminators
    - that the shell script is set to be executable by the user that the job runs as
    - that the shell script begins with a hashbang line - e.g. #!/bin/sh (I suspect this is the problem)
    For running external jobs on 10gR2 or below, refer to this post Guide to External Jobs on 10g with dbms_scheduler e.g. scripts,batch files
    For running external jobs on 11g and up, please use a credential.
    Hope this helps,
    Ravi.

  • UPPER Indexes cause select ERROR!

    I downloaded Oracle 10g and installed it on a windows 2003 server. When I created UPPER indexes on a table, and the table has many rows, SELECT statement failed.
    for example:
    DROP TABLE TestTab;
    CREATE     TABLE     TestTab(
         id          NUMBER(9)     DEFAULT 1 NULL,
         name          VARCHAR2(32)     NULL,
         address          VARCHAR2(64)     NULL,
         PRIMARY     KEY     (id)
    DROP INDEX TestTab_01;
    CREATE     INDEX     TestTab_01 ON TestTab(UPPER(name));
    DROP INDEX TestTab_02;
    CREATE     INDEX     TestTab_02 ON TestTab(UPPER(address));
    create or replace procedure ADDDATA
    IS
    lCount     NUMBER;
    BEGIN
    lCount := 1;
    LOOP
    INSERT INTO TESTTAB VALUES(lCount, TO_CHAR(lCount, '00000'), TO_CHAR(lCount, '00000'));
    lCount := lCount + 1;
    IF lCount >= 80000 THEN
    EXIT;
    END IF;
    END LOOP;
    COMMIT;
    EXCEPTION
    WHEN OTHERS THEN
    ROLLBACK;
    RAISE;
    END;
    EXEC ADDDATA;
    SELECT COUNT(*) FROM TestTab;
    SELECT id FROM TestTab WHERE (UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102'
    OR UPPER(address) = ' 00105' OR UPPER(address) = ' 00106') ORDER BY id;
    ID
    100
    101
    102
    SELECT id FROM TestTab WHERE (UPPER(address) = ' 00105' OR UPPER(address) = ' 00106' OR UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102') ORDER BY id;
    ID
    105
    106
    It looks like that the first index could be used and the second index couldn't be used and indexes caused select errors.

    indexes caused select errors. Which errors ? I did exactly what you posted, and these are the results :
    TEST@db102 SQL> SELECT id FROM TestTab WHERE (UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102'
    OR UPPER(address) = ' 00105' OR UPPER(address) = ' 00106') ORDER BY id;  2
                 ID
                100
                101
                102
                105
                106
    TEST@db102 SQL> SELECT id FROM TestTab WHERE (UPPER(address) = ' 00105' OR UPPER(address) = ' 00106' OR UPPER(name) = ' 00100'
    OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102') ORDER BY id;
                 ID
                100
                101
                102
                105
                106
    TEST@db102 SQL> select count(*) from testtab;
           COUNT(*)
              79999
    TEST@db102 SQL>                                                                                    

  • Field Selection error for movement type and G/L account

    I am currently experiencing a field selection error between movement type 601 and G/L account 7140000.  The problem field is 'Segment'.  This field is set to required for the G/L account, but it is hidden for the movement type 601. This inconsistency causes an error when posting the goods movement. According to business requirement the field must be required for the G/L account, therefore we must make this field optional for the movement type.
    However, in configuration the field segment does not appear for the movement type 601. Therefore it can not be changed to optional.
    Does anyone know a workaround other than making this field optional for the G/L account because the business requirement is to have this field as required?????
    Many Thanks

    Hi,
    On the Error message detail, system will guide you to the Configuration details for Field settings for Movement type & Account, please get in touch with your FI consultant, to make the Field selection for the account similr to that of your movement type, this is a very common issue.
    Regards
    Chandra Shekhar

  • User-exec 3 error in Nokia 5233

    I have installed games in Nokia 5233 & played on it. But I have used App Manager to remove unwanted softwares which i have installed & with that some problem has occurred & now when i start the game it shows "Application Closed: Main USER-EXEC 3 "error. Please If someone can help me in solving this problem.

    Try re-installing the game... It seems some software attached to the game also got un-installed with some other application..
    --------------------------------------------------​--------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

  • KERN-EXEC 3 Error

    I've tried to open a PowerPoint presentation on my Nokia 9300 but crashes and generates a "KERN-EXEC 3" error.
    I've reformatted the phone and reinstalled PC Suite (version 6.81) to see if this fixes the problem but no joy.
    Any ideas how to fix this?

    I don't think installing Pc Suite has anything to do with powerpoint in the phone and kernel error you are getting.
    Did the powerpoint presentation came from the PC originally (so it is Microsoft Powerpoint format?). The conversion to Symbian format is done in the phone, not by PC Suite. The kernel error may be due to conversation failing.

  • Failed load Kernel Modules | fglrx exec Format Error

    Hello
    after I started my computer this morning it won't load fglrx anymore.
    Yesterday everything worked just fine. But I can still start the xserver without any problem.
    systemctl status systemd-modules-load.serivce outputs:
    systemd-modules-load.service - Load Kernel Modules
       Loaded: loaded (/usr/lib/systemd/system/systemd-modules-load.service; static)
       Active: failed (Result: exit-code) since Tue 2013-08-20 10:59:28 CEST; 20min ago
         Docs: man:systemd-modules-load.service(8)
               man:modules-load.d(5)
      Process: 113 ExecStart=/usr/lib/systemd/systemd-modules-load (code=exited, status=1/FAILURE)
    Aug 20 10:59:28 orz-aa-0 systemd-modules-load[113]: Failed to insert 'fglrx': Exec format error
    Aug 20 10:59:28 orz-aa-0 systemd[1]: systemd-modules-load.service: main process exited, code=exited, status=1/FAILURE
    Aug 20 10:59:28 orz-aa-0 systemd[1]: Failed to start Load Kernel Modules.
    Aug 20 10:59:28 orz-aa-0 systemd[1]: Unit systemd-modules-load.service entered failed state.
    Warning: Journal has been rotated since unit was started. Log output is incomplete or unavailable.
    and modprobe fglrx outputs:
    modprobe: ERROR: could not insert 'fglrx': Exec format error
    Installed are:
    catalyst 13.8-1
    catalyst-utils 13.8-1
    lib32-catalyst-utils 13.8-1
    xorg-bdftopcf 1.0.4-1
    xorg-font-util 1.3.0-1
    xorg-font-utils 7.6-3
    xorg-fonts-alias 1.0.3-1
    xorg-fonts-encodings 1.0.4-3
    xorg-fonts-misc 1.0.1-2
    xorg-luit 1.1.1-1
    xorg-mkfontdir 1.0.7-1
    xorg-mkfontscale 1.1.1-1
    xorg-server 1.14.2-2
    xorg-server-common 1.14.2-2
    xorg-setxkbmap 1.3.0-1
    xorg-twm 1.0.7-1
    xorg-xauth 1.0.7-1
    xorg-xclock 1.0.6-1
    xorg-xhost 1.0.6-1
    xorg-xinit 1.3.2-3
    xorg-xkbcomp 1.2.4-1
    xorg-xmodmap 1.0.7-1
    xorg-xrdb 1.0.9-2
    xorg-xset 1.2.2-2
    I'm really a newbie to arch linux and would appreciate any help.
    Thanks in advance.
    surrz
    Last edited by surrz (2013-08-20 10:53:28)

    I grepped /var/log/Xorg.0.log as suggested by the wiki, here's the results:
    sudo grep '(EE)' /var/log/Xorg.0.log
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 19.890] (EE) fglrx(0): atiddxDriScreenInit failed. Probably kernel module missing or incompatible.
    [fiendfan1@arch ~]$ grep '(WW)' /var/log/Xorg.0.log
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 19.150] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 19.150] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 19.150] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 19.150] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 19.586] (WW) Falling back to old probe method for fglrx
    [ 19.710] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
    [ 19.812] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 19.889] (WW) fglrx(0): Dynamic Surface Resizing cannot be enabled
    [ 19.890] (WW) fglrx(0): ***********************************************************
    [ 19.890] (WW) fglrx(0): * DRI initialization failed *
    [ 19.890] (WW) fglrx(0): * kernel module (fglrx.ko) may be missing or incompatible *
    [ 19.890] (WW) fglrx(0): * 2D and 3D acceleration disabled *
    [ 19.890] (WW) fglrx(0): ***********************************************************
    [ 19.908] (WW) fglrx(0): Textured Video not supported without DRI enabled.
    [ 20.014] (WW) fglrx(0): Option "VendorName" is not used
    [ 20.014] (WW) fglrx(0): Option "ModelName" is not used
    [ 20.425] (WW) evdev: USB USB Keykoard: ignoring absolute axes.
    I don't know what any of this means, anyone have any ideas?

  • "no content selected" error on nokia 5310

    So i bought a pretty little 5310, and am loving it so far. have hit a few speed bumps when trying to upload with my mac, but have got alomst all of them fixed. almost.
    the last time i updated my music library, i noticed my dedicated shortcut keys on the left of the phone no longer work on their own.
    when i go through the menu, or use the shortcut key to initially access the music player, the dedicated keys will work for pausing, and skipping tacks. but, say i'm at the 'home' screen of the phone , and just hit the keys on the side. .. they show a 'no content selected' error.
    when, in the past, after my first library update, if i hit those keys at ANY time, wether the music player was open or not, it would automatically play my library.
    there is probably a ridiculously easy solution to this, but to hell if i can figure it out!
    i've read every post on every board i could find, and read the manual six times.
    any suggestions?

    i've fixed the error!
    apparently, the phones have TWO music players.
    one in the menu shortcut key, and one buried in the 'media' section on the phone.
    apparently, to play a playlist from the dedicated keys on the side, you have to use the BURIED music player in the media section.
    once in there, select playlist, and choose your playlist. for me, i had to create a new playlist and manually open AND add EVERY song in my library to that new playlist, so that it would play nonstop with the keys.
    try that - it may be the same issue for you, as my problem happened after i reformatted the memory card and re-added new music.

  • Powerbook G3 (Bronze) Won't Boot! Exec Fromat Error

    Recently, I started a software update from Apple. During the update, my PBG3 froze. After a hard boot, I get these three line that keeps repeating.
    (Current Date and Time) init: can't exec/bin/sh for single user: Exec format error
    (Current Date and Time) init: can't exec/bin/sh for single user: Exec format error
    (Current Date and Time) init: can't exec/bin/sh for /etc/rc: Exec format error
    This keeps happening. I have reset Pram, PMU, etc. I have had this machine for over 8 years and I have upgraded RAM and the Hard Drive. I fear that I have tried for one too many updates. Please Help!
    Joe

    Maybe I should elaborate. I am using a PowerBook G3 Bronze keyboard, running 10.2 (Was at 10.3.9)
    A few weeks ago I was online (wirelessly through Verizon DSL) and everything froze. Tried to restart over and over and kept getting Darwin. Reinstalled the system software (back to 10.2) from original disks. Same problem. Now when I turn on the machine I get the MAC OSX start up screen where I log in. I hit log-in and type in my password from the pop up and then it goes to the Darwin/BSD screen. So, after looking though the help and threads I have come to this point of starting up in single user mode and this is what happens:
    @ the sh-2.05a# I typed in /sbin/fsck -y (then here is the rest as it shows on screen)
    /dev/rdisk0s5
    Root file system
    Checking HFS Plus volume
    fsck_hfs: Volume is journaled. No checking performed.
    fsck_hfs: Use the -f option to force checking.
    sh-2.05a# sbin/fsck -fy
    /dev/rdisk0s5
    Root file system
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Invalid sibling link
    (4, 38934)
    Invalid B-tree Header
    Invalid map node
    (4, 0)
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Missing thread record (id = 2127165)
    Missing thread record (id = 2127168)
    Missing thread record (id = 2127257)
    Missing thread record (id = 2127283)
    Missing thread record (id = 2127304)
    Invalid volume directory count
    (It should be 94867 instead of 92322)
    Invalid volume file count
    (It should be 331255 instead of 321746)
    Checking volume bitmap.
    Volume Bit Map needs minor repair
    Checking volume information.
    Invalid volume free block count
    (It should be 1845465 instead of 1787864)
    Repairing volume.
    That's it. Then it sits there. Sounds like it's working for a while then like goes to sleep. This is the 2nd time I have done it. The first time I let it sit for like 1 hour and a half. Then I shut it off with the power button and restarted it, got the same results and so I started it in single user mode and tried this again. The only thing that changed from the first time to the second was the volume free block count the first time it said "(It should be 1844564 instead of 1786963) It is currently 12:59 and it has been since 12:06 when it said "Repairing volume." Can't hear anything. Can someone please take pity on me and let me know what I should do before I ruin this thing? I have been the only owner of this thing and have never had a history of problems. (Except for battery drainage, but now I use the adapter)
    One other thing: When I get to the Darwin screen and it asks for my login and then password, I haven't got that right either. It says
    Darwin/BSD (G3computer.local.) (console)
    login:
    haven't a clue what they want. Tried a bunch of things, but with no success.
    Message was edited by: Nyati585

  • BPEL: invalid namespace error with DB adapter polling and java embedding

    Hello
    I'm using bpel 10.1.3.1.0, and I'm experiencing the following problem: I'm am not able to use the SetTitle() function in a process which polls for records using the db adapter.
    Steps to reproduce the problem:
    - I create a very simple bpel process which poll for records in a table.
    - I deploy it, write manually a record in the polled table and the process start.
    - I can see the record picked up through the visual flow in the console
    - everything looks ok and the process ends correctly
    - now I add a java embedding activities just after the receive
    - I set the instance title like this: setTitle("Go");
    - redeploy, write a record in the polled table and the process start.
    - but the process ends in error with the following message "XMLDOMException has been thrown. invalid namespace for prefix xmlns"
    And there is no way to make it work. Consider:
    If I put the same java embedding activity in another process, for example a simple asynchronous process which just copy the input to the output, and I run from the console, the instance title is set as I want ("Go")
    If I remove the three lines from the polling process
    <bpelx:exec name="Java_Embedding_1" language="java" version="1.3">
    <![CDATA[setTitle("Go");]]>
    </bpelx:exec>
    then the process is executed correctly again. I add them again and then namespace error.
    Whatever statement I put in the java embedding activity (for example a string concatenation or even just a comment I have the same result: invalid namespace for prefix xmlns.
    Does anybody has a suggestion to evercome the problem? I need to set the title because its a mess to find out which instance processed a specific record.
    Thanks by
    Paolo

    I made a lot of further tests, and I can say the problem is related only to the database adapter polling mechanism.
    If I create an asynchronous process, with any kind of database activity (for example select) I can set the title normally.
    If I create a process which start with database table polling, then I cannot use the java embedding.
    try this:
    - create BPEL empty project
    - drop a database adapter service and follow the wizard:
    - select a connection (I tried both oracle or sqlserver connection)
    - select "poll for new or changed record"
    - select any table empty or with few record inside (1 or 2)
    - press next 4 times
    - chose delete record after read (press next)
    - chose order by "no ordering" in polling options (press next 2 times)
    - now drop a receive activity on the process, and connect with the polling partner link
    - drop a java embedding and write any valid java statement
    - deploy; if the table is empty, write a recod in the table
    - the process is instantiated, but the it fails in the --> receive <-- activity with "invalid namespace" error

  • Having issues calling EJB3 from BPEL failing xmlparserv2 error.

    Oracle/BPEL 10.1.3.4
    Description :
    I am having errors in orabpel during marshalling of EJB call using WSIF. missing class JXDocumentBuilderFactory see ERROR 1 for details. I generated proxy classes using schemac against the document type I want to pass to EJB from BPEL. The proxy requirs the missing class. I worked for 3 days trying various things and only after unzipping jar file to classes directory defined in oracle.bpel.common was I able to execute the call successfully. As luck would have it on reboot the app server failed to start .
    I cannot find where anybody has commented on the reliable use of WSIF and EJB with BPEL in one cantainer anb EJB in a different container. I do see some old blogs about using EJB 2.1 with orabpel and EJB in the same container. I assume if others were doing this it should work out of the box.
    Question :How do you use BPEL to invoke your business logic? WSIF with proxy classes seemed like the best performance solution to me. Do you use webservices? Have you seen this error before?
    I would REALLY appreciate your feedback! Thanks in advance John
    ERROR 1:
    oracle.classloader.util.AnnotatedNoClassDefFoundError:
    Missing class: oracle.xml.jaxp.JXDocumentBuilderFactory
    Dependent class: com.collaxa.cube.xml.BaseFacade
    Loader: oracle.bpel.common:10.1.3
    Code-Source: /C:/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel.jar
    Configuration: <code-source> in /c:/product/10.1.3.1/OracleAS_1/j2ee/home/config/server.xml
    The missing class is available from the following locations:
         1. Code-Source: /C:/product/10.1.3.1/OracleAS_1/lib/xmlparserv2.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\product\10.1.3.1\OracleAS_1\j2ee\home\oc4j.jar)
         This code-source is available in loader oracle.xml:10.1.0_2.
    ; nested exception is:
         oracle.classloader.util.AnnotatedNoClassDefFoundError:
         Missing class: oracle.xml.jaxp.JXDocumentBuilderFactory
         Dependent class: com.collaxa.cube.xml.BaseFacade
         Loader: oracle.bpel.common:10.1.3
         Code-Source: /C:/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel.jar
         Configuration: <code-source> in /c:/product/10.1.3.1/OracleAS_1/j2ee/home/config/server.xml
    The missing class is available from the following locations:
         1. Code-Source: /C:/product/10.1.3.1/OracleAS_1/lib/xmlparserv2.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\product\10.1.3.1\OracleAS_1\j2ee\home\oc4j.jar)
         This code-source is available in loader oracle.xml:10.1.0_2.

    Ok,
    I found that EJBBinding annotation does accomplish wsdl creation when the deployment occurs, the WSDL is not in a file but rather you can get to it with enterprise manager (10.1.3.4) find your service and test it. After selecting a means to test (http or https) the next page will show a link "Service Description" The url that comes up looks something like http://thehostname/MyApplication/MyService?WSDL.
    When you create a the stateless ejb tell it to expose as Webservice and select generate WSIF bindings.
    Just put the following annotation on your Webservice interface.
    In this case my "WorkItemFacade" listed below is the name of my implementation.
    // Indicates that this is indeed a web service
    @WebService
    // generates WSIF EJB Bindings for NON soap marshalling
    @WSIFEJBBinding( className="proto.model.WorkItemFacade",
    initialContextFactory="oracle.j2ee.rmi.RMIInitialContextFactory",
    jndiProviderUrl="opmn:ormi://zdeploymentHost:6003:zInstanceName-home/zEJBMODULESName-ejb6
    // Class name becomes the name of the service in the wsdl
    public interface WorkItemWebService extends Remote {
    boolean verify( String s_xchg_doc) throws RemoteException;
    void add( String s_xchg_doc) throws RemoteException;
    When you are in BPEL where it asks for a wsdl for the invoke of a partner link put the url in that you obtained before in test e.g. http://thehostname/MyApplication/MyService?WSDL
    This will of course require your app server to be up and with the EJB deployed.
    Hope this helps someone in similar circumstance.
    John

  • URGENT!! HelloWorld.bpel process Deployment Error

    Hi bpel gurus,
    I am new to BPEL. I tried to deploy sample HelloWorld tutorial process with no real luck..
    What i am doing is using obant (also tried equivalent "ant deploy" ) command to deploy the process. I am using BPEL PM for developer on windows XP.
    The following is the gist of the long exception/error I got.
    "C:\product\10.1.3.1\OraBPEL_2\bpel\samples\tutorials\101.HelloWorld\build.xml:79
    : A problem occured while connecting to server "ashdesai.corio.com" using port "
    9700": bpel_HelloWorld_1.0.jar failed to deploy. Exception message is: ORABPEL-04096
    Cannot update process metadata.
    The process domain was unable to insert/update the process metadata for process
    "HelloWorld" with revision tag "1.0" in the datastore. The exception reported is
    : javax.resource.ResourceException: RollbackException: Transaction has been mark
    ed for rollback: Timed out
    Please check that the machine hosting the datasource is physically connected to
    the network. Otherwise, check that the datasource connection parameters (user/p
    assword) is currently valid.
    sql statement: SELECT process_guid, process_id, revision_tag, suitcase_id, state
    , lifecycle, deploy_user, deploy_timestamp FROM process WHERE domain_ref = ? AN
    D process_id = ? AND revision_tag = ? FOR UPDATE ...
    Can anyone tell what setup/config is missing here..?
    Thanks in anticipation!!
    Ashish.

    Ashish:
    If your going to deploy a BPEL process using ant from the command line, you need to make sure that you set up your environment correctly. I've made a few blog posts on the subject of the ANT - environment.
    One of the key files that the ant deploy needs to have access to is the "ant-orabpel.properties" file located in your $BPEL_HOME/utilities directory. If Ant isn't able to get to this file, it will not have the BPEL environment settings for your installation.
    Ben

  • Getting the MDX query select error when running a webi report on BI query

    Getting the following error when running a webi report on BI query :
    A database error occured. The database error text is: The MDX query SELECT  { [Measures].[D8JBFK099LLUVNLO7JY49FJKU] }  ON COLUMNS , NON EMPTY [ZCOMPCODE].[LEVEL01].MEMBERS ON ROWS FROM [ZTEST_CUB/REP_20100723200521]  failed to execute with the error Unknown error. (WIS 10901).
    I have gone through many threads related to this error. But not able find the steps to follow for resoultion.
    Please help in this regard.
    Thanks,
    Jeethender

    The Fix Pack is also for Client Tools--it is a separate download.  Please see the text below for ADAPT01255422
    ADAPT01255422
    Description:
    Web Intelligence generates an incorrect MDX statement when a characteristic and a prompt are used.
    The following database error happens: "The MDX query ... failed to execute with the error
    Unknown error (WIS 10901)."
    New Behavior:
    This problem is resolved.
    This information is also available in the Fixed Issues document for any Fix Pack greater than 2.2.

  • Web Services/BPEL - Connection Refused Error

    I am getting the following error while invoking this web service (in JDev 10.1.2) from Oracle BPEL console...
    faultSubcode: faultString: java.net.ConnectException: Connection refused: ..............
    Did anyone face the same error...pleaseeee help!!!

    where is your web service deployed?

Maybe you are looking for

  • How can I get my Hp printer to download?

    How can I get my HP F380 printer to download?

  • Up To Date Program with Refurbs?

    Hi, sorry if this is in the wrong place, I am new here. I just bought a refurbished MBP and was wondering if Apple's Up To Date program for Lion is applicable for it, does anyone here know? Thanks -Josh

  • HDCP ***** Apple!

    Be careful when you download HD content from Apple, you might not be able to watch it! Apparently my Apple Cinema Display is not up to it because it is not HDCP compliant, therefore even though it is capable of displaying HD content from everywhere e

  • Can I sync a Leopard iCal to a Tiger one?

    Have 10.5.2 at home; 10.4.11 at work. If I populate Leopard (home)'s iCal with To-Do's from Mail.app 3, then synch via .Mac, will iCal at work still on Tiger be able to read those To-Dos? And would I be able to synch in the opposite direction - from

  • Need someone with PP CS3 on PC to convert project file

    Hi, I'm hoping someone can help me out.  I have an old project that was cut on Premiere Pro CS2 on a PC.  Now I'm on a Mac with Premiere Pro CS3 and I need to update the project.  So, I need someone that has Premiere Pro CS3 on a PC to open my projec