JDev 11g 113 designer - Composite with BPM and BAM does not compile

Using JDev1113 with SOA additions. Weblogic 11g.
I have an Application which includes a BPM project.....
This project makes and can be deployed to the Middleware and executes successfully.
However, when I add a BAM adapter to the composite and wire it in either to a BPEL Orchestration or the BPM process directly I am unable to make the project.
Adding BAM to the project adds the xsd file into the Business catalog, but with an error icon attached.
I have tried modifying the BPM Project properties but don't really understand the Data Objects path... which may be the reason for my error.
Make returns multiple errors as below : all relating to the xsd schema.
+Error: BPM-71701: Business Catalog object 'Services.Externals.BAM_Upd_URL_Fluid' is not valid. The parameter 'custURLUpdFluidCollection' of the method 'writetoBAM' is referencing an XML Schema element '{http://xmlns.oracle.com/bam}_CustURLUpd_fluidCollection' that cannot be found in the project.. Cause: This can happen if the XML Schema element or complex type is removed. Action: Check the project XML Schemas files+
Error: BPM-71529: Xml Schema '/xsd/BAMServerConnection_BPM_SOA11gLoadTest_CustURLUpd_fluid.xsd' could not be loaded due to an error parsing the XML tag 'undefined' defined at line '-1'.  Cause: Invalid schema element ''.  Action: Fix the Xml Schema to continue
The BAM function works fine if BPM is not incorporated into the project. i.e a typical BPEL orchestration. writing to BAM Data objects.... So this error is definitely related to adding a BPM process diagram into the Project.
Can anyone offer any advice ?
Thanks
Cliff

Hi Cliff
I'm experimenting almost the same problem.
I know your question is a little bit old, but might you have the problem yet.
If it is the case, try to edit the XSD generated by DBAdapter's wizard, removing all "annotation" tags.
Close the project and open it again to properly refresh (for me just refresh the catalog didn't work).
I hope this help you.
Regards,
Luis F Heckler

Similar Messages

  • I updated my macbook with lion and airdrop does not show up in the finder, how could this be?

    I updated my macbook with lion and airdrop does not show up in the finder, how could this be?

    shldr2thewheel wrote:
    If this is the case: How to enable AirDrop over ethernet and AirDrop on unsupported macs running Lion  .
    http://osxdaily.com/2011/09/16/enable-airdrop-ethernet-and-unsupported-macs/
    Interesting.  Googling, I see that someone posted that on these discussions as well:
    https://discussions.apple.com/thread/3331216?start=0&tstart=0
    which mentions what I recall: that Airdrop (as implemented by Apple) would create an on-demand ad-hoc Wi-Fi connection, even if you were already connected to an access point.  Normally, you can't connect to multiple Wi-Fi networks, thus the reason for Airdrop only supported on newer Wi-Fi chips.
    And Apple's KB:
    http://support.apple.com/kb/HT4783

  • Flash video with cuepoints and skin does not work

    Hi guys, i created a SWF file based on the template available
    here
    http://www.adobe.com/devnet/flash/articles/vidtemplate_mediapreso_04.html
    Basically the movie has navigation buttons on the left side
    of the video display to enable users to jump to predefined sections
    (topics) within the video. It also has the video controls under the
    video.
    I imported my video as well as the sample provided in the
    webpage above and the clip does not work in Presenter. I can see
    the skin but the buttons flash and we cannot see the video. I'm not
    a Flash or Presenter expert. Just wondering if anyone can help
    troubleshoot this. We would really like to embed a swf with
    navigation buttons into Presenter. is this possible? ideas
    appreciated.
    Thanks

    I'm sure someone will post a workaround for you (there are about 4 or 5 different workarounds people have posted at various times). But I wanted to thank you for your post. My experience as a very recent PC to Mac convert has been frustrating, mostly due to Keynote. When I first started using Keynote I was amazed at what it could do. I spent a lot of time working on a project (several days) only to spend another several days trying to figure out why it wouldn't Export. I finally logged onto the forums and see that people have been posting about this problem for MONTHS. It's been very frustrating to say the least and is a major flaw.
    Your note is the first indication I received that Apple is truly working on this issue. I feel for people who posted months ago waiting for an update every day. Like them, I sent a support email (not answered).Your note shows both hope and progress. Apple could really convert a lot of people if it got software like Keynote to work correctly. I'm still blown away by its power. But it's like owning a Ferrari with now wheels. It has a lot of power, but there's nothing you can do with it until you get wheels.
    Cheers!

  • HT4623 My iPad 2 audio only works with headphones and orientation does not work at all

    My iPad 2 volume button does not work with the integrated speakers of my iPad, once a headphone is connected to the jack output of my iPad the OSD volume displays fine and works to the external headphone but once the headphone jack is removed, there is no more a volume bar and the side volume buttons don't work at all, this has affected the screen orientation as well, screen does not orientate  as well,
    Please help

    If you deleted files from the operating system, you wrecked your installation and the first thing you need to do is either restore those files from a backup or reinstall the OS. Doing that is never the solution to any problem. Back up all data before making any changes.

  • DBMS_TYPES with timestamp and interval does not seem to work.

    I have a PL/SQL script that seems to work for char,varchar,numerics, dates, but not for intervals. I basically took example code out of the Oracle manuals and stitched it together.
    The code in question is the function colTypeString. Apparently, interval is not being recognized as a type, so the function is returning back unknown. The documentation seems a bit spartan, so I thought perhaps you can help me out.
    Thanks.
    Here's the code:
    create table interval_test( intym interval year(4) to month, intdm interval day(3) to second(4) );
    execute oraforum_pkg.desc_query( 'select * from interval_test' );
    col_type     =     182, UNKNOWN_TYPE
    col_maxlen     =     5
    col_name     =     INTYM
    col_name_len     =     5
    col_schema_name =
    col_schema_name_len =     0
    col_precision     =     4
    col_scale     =     0
    col_null_ok     =     true
    col_type     =     183, UNKNOWN_TYPE
    col_maxlen     =     11
    col_name     =     INTDM
    col_name_len     =     5
    col_schema_name =
    col_schema_name_len =     0
    col_precision     =     3
    col_scale     =     4
    col_null_ok     =     true
    PL/SQL procedure successfully completed.
    Here's the package:
    -- Define the ref cursor types and function
    CREATE OR REPLACE PACKAGE oraforum_pkg IS
    FUNCTION colTypeString( typeId in integer) return varchar2; -- typeId from dbms_types
    PROCEDURE print_rec(rec in DBMS_SQL.DESC_REC);
    PROCEDURE desc_query( selectSql in varchar2 );
    END oraforum_pkg;
    CREATE OR REPLACE PACKAGE BODY oraforum_pkg IS
    FUNCTION colTypeString( typeId in integer)
    return varchar2 -- typeId from dbms_types
    is
    rval varchar2(40) := 'Unknown';
    BEGIN
    case typeId
    when DBMS_TYPES.NO_DATA then rval := 'NO_DATA' ;
    when DBMS_TYPES.SUCCESS          then rval := 'SUCCESS' ;
    when DBMS_TYPES.TYPECODE_BDOUBLE     then rval := 'BDOUBLE' ;
    when DBMS_TYPES.TYPECODE_BFILE     then rval := 'BFILE' ;
    when DBMS_TYPES.TYPECODE_BFLOAT     then rval := 'BFLOAT' ;
    when DBMS_TYPES.TYPECODE_BLOB     then rval := 'BLOB' ;
    when DBMS_TYPES.TYPECODE_CFILE     then rval := 'CFILE' ;
    when DBMS_TYPES.TYPECODE_CHAR     then rval := 'CHAR' ;
    when DBMS_TYPES.TYPECODE_CLOB     then rval := 'CLOB' ;
    when DBMS_TYPES.TYPECODE_DATE     then rval := 'DATE' ;
    when DBMS_TYPES.TYPECODE_INTERVAL_DS     then rval := 'INTERVAL_DS' ;
    when DBMS_TYPES.TYPECODE_INTERVAL_YM     then rval := 'INTERVAL_YM' ;
    when DBMS_TYPES.TYPECODE_MLSLABEL     then rval := 'MLSLABEL' ;
    when DBMS_TYPES.TYPECODE_NAMEDCOLLECTION then rval := 'NAMEDCOLLECTION' ;
    when DBMS_TYPES.TYPECODE_NUMBER     then rval := 'NUMBER' ;
    when DBMS_TYPES.TYPECODE_OBJECT     then rval := 'OBJECT' ;
    when DBMS_TYPES.TYPECODE_OPAQUE     then rval := 'OPAQUE' ;
    when DBMS_TYPES.TYPECODE_RAW          then rval := 'RAW' ;
    when DBMS_TYPES.TYPECODE_REF          then rval := 'REF' ;
    when DBMS_TYPES.TYPECODE_TABLE     then rval := 'TABLE' ;
    when DBMS_TYPES.TYPECODE_TIMESTAMP     then rval := 'TIMESTAMP' ;
    when DBMS_TYPES.TYPECODE_TIMESTAMP_LTZ then rval := 'TIMESTAMP_LTZ' ;
    when DBMS_TYPES.TYPECODE_TIMESTAMP_TZ then rval := 'TIMESTAMP_TZ' ;
    when DBMS_TYPES.TYPECODE_VARCHAR2     then rval := 'VARCHAR2' ;
    when DBMS_TYPES.TYPECODE_VARCHAR     then rval := 'VARCHAR' ;
    when DBMS_TYPES.TYPECODE_VARRAY then rval := 'VARRAY' ;
    else rval := 'UNKNOWN_TYPE';
    end case;
    return rval;
    END;
    PROCEDURE print_rec(rec in DBMS_SQL.DESC_REC) IS
    BEGIN
    DBMS_OUTPUT.PUT_LINE('col_type = '
    || rec.col_type || ', ' || colTypeString(rec.col_type) );
    DBMS_OUTPUT.PUT_LINE('col_maxlen = '
    || rec.col_max_len);
    DBMS_OUTPUT.PUT_LINE('col_name = '
    || rec.col_name);
    DBMS_OUTPUT.PUT_LINE('col_name_len = '
    || rec.col_name_len);
    DBMS_OUTPUT.PUT_LINE('col_schema_name = '
    || rec.col_schema_name);
    DBMS_OUTPUT.PUT_LINE('col_schema_name_len = '
    || rec.col_schema_name_len);
    DBMS_OUTPUT.PUT_LINE('col_precision = '
    || rec.col_precision);
    DBMS_OUTPUT.PUT_LINE('col_scale = '
    || rec.col_scale);
    DBMS_OUTPUT.PUT('col_null_ok = ');
    IF (rec.col_null_ok) THEN
    DBMS_OUTPUT.PUT_LINE('true');
    ELSE
    DBMS_OUTPUT.PUT_LINE('false');
    END IF;
    DBMS_OUTPUT.PUT_LINE('');
    END;
    PROCEDURE desc_query( selectSql in varchar2 ) IS
    c NUMBER;
    d NUMBER;
    col_cnt INTEGER;
    f BOOLEAN;
    rec_tab DBMS_SQL.DESC_TAB;
    col_num NUMBER;
    BEGIN
    c := DBMS_SQL.OPEN_CURSOR; -- Is this needed for parsing? Yes, as argument to PARSE
    DBMS_SQL.PARSE(c, selectSql, DBMS_SQL.NATIVE);
    -- d := DBMS_SQL.EXECUTE(c); -- Doesn't look necessary.
    DBMS_SQL.DESCRIBE_COLUMNS(c, col_cnt, rec_tab);
    * Following loop could simply be for j in 1..col_cnt loop.
    * Here we are simply illustrating some of the PL/SQL table
    * features.
    col_num := rec_tab.first;
    IF (col_num IS NOT NULL) THEN
    LOOP
    print_rec(rec_tab(col_num));
    col_num := rec_tab.next(col_num);
    EXIT WHEN (col_num IS NULL);
    END LOOP;
    END IF;
    DBMS_SQL.CLOSE_CURSOR(c);
    END;
    END oraforum_pkg;
    Message was edited by:
    user554561

    The issue is that DBMS_SQL and DBMS_TYPES have different typecodes. Which means you can't interrogate the DBMS_SQL.DESC_REC using DBMS_TYPES constants. You could create yourself a package of DBMS_SQL_TYPES.
    SQL> create table t ( ts timestamp, iv interval day to second );
    Table created.
    SQL>
    SQL> insert into t values ( systimestamp, interval '1' second );
    1 row created.
    SQL>
    SQL> declare
      2     c         integer           := dbms_sql.open_cursor ();
      3     rec_tab   dbms_sql.desc_tab;
      4     col_cnt   integer;
      5  begin
      6     dbms_sql.parse (c, 'select * from t', dbms_sql.native);
      7     dbms_sql.describe_columns (c, col_cnt, rec_tab);
      8
      9     for i in 1 .. col_cnt
    10     loop
    11        dbms_output.put_line ('Name: ' || rec_tab (i).col_name || '; Type: ' || rec_tab (i).col_type);
    12     end loop;
    13
    14     dbms_sql.close_cursor (c);
    15
    16     dbms_output.put_line ('DBMS_TYPES.TYPECODE_TIMESTAMP; Type: ' || DBMS_TYPES.TYPECODE_TIMESTAMP);
    17     dbms_output.put_line ('DBMS_TYPES.TYPECODE_INTERVAL_DS; Type: ' || DBMS_TYPES.TYPECODE_INTERVAL_DS);
    18
    19  end;
    20  /
    Name: TS; Type: 180
    Name: IV; Type: 183
    DBMS_TYPES.TYPECODE_TIMESTAMP; Type: 187
    DBMS_TYPES.TYPECODE_INTERVAL_DS; Type: 190
    PL/SQL procedure successfully completed.Regards

  • How can sync my i pad to my pc with window xp, itunes does not registerer the ipad

    how can sync my i pa2 to my laptop window pc with xp and itunes does not see the i pad2

    Have you got the latest itunes updated ?
    This link might help http://support.apple.com/kb/ts1538

  • HT1386 I want to give me old iphone 4 to my daughter and need to get all her info from her old iphone onto a new computer.  The PC she synced with is dead and she does not want to loose all her contacts and music.

    I want to give my old iphone 4 to my daughter and need to get all her info from her old iphone 3 onto a new computer.  The PC she synced with is dead and she does not want to loose all her contacts and music. How can I do this?

    To effectively transfer ownership of the iPhone requires that it be "restored" as a new device.
    ...  The PC she synced with is dead
    The iPhone is not a backup device. Your computer backs up the iPhone, not the other way around. What you use to back up your computer is up to you - Macs use Time Machine. I assume PCs use something similar.
    If her PC backup is dead you will have difficulty extracting content from the iPhone since it is not designed to work that way.
    All her Apple purchases can easily be transferred to another iPhone. However, her contacts will be gone, as will any music or other contact obtained from sources other than Apple.
    There are a number of third party utilities that claim to be able to extract content from an iPhone. See wjosten's procedure here:
    https://discussions.apple.com/docs/DOC-3141

  • Hello  I have a problem with Mac Pro, iPhoto does not want to stay open and close as I can figure this out?  thanks

    Hello  I have a problem with Mac Pro, iPhoto does not want to stay open and close as I can figure this out?  thanks

    Refer below link once
    App doesn’t open | Progress wheel spins continually

  • I have problem with iphone4....it closed and it does not open

    my iphone closed and it does not open

    Hello,
    Thanks for your quick answer. What is DFU mode? My problem is that the iPhone does not respond at all.
    I am trying with the cable of the iPod now, but still the same: the laptop does not detect the iPhone and the iPhone does not turn on. I think the iPhone cable works because when I connect it to the power as if I was charging the battery, the Apple logo appears on the screen but that's all. I only have one computer at home.
    Cheers,
    Manu Bresson

  • Create a folder on the desktop and share with everyone if it does not exist on a Windows 7 PC - No Domain

    I have a script that needs to be modified to create a folder on the desktop and share with everyone if it does not exist on a Windows 7 PC - No Domain.  Here is the script, need help at bottom
    =======================================================
    Set objShell = CreateObject("WScript.Shell")
    objComputer=objShell.ExpandEnvironmentStrings("%ComputerName%")
     IF Right(objComputer,3) = "000" Then
    Else
     strShortcut = objShell.SpecialFolders( "Desktop" )  & "\%username% Share.lnk"
      strShortcut = objShell.ExpandEnvironmentStrings(strShortcut)
    Set objLink = objShell.CreateShortcut( strShortcut )
     objComputer=objShell.ExpandEnvironmentStrings("%ComputerName%")
      objServer=Left(objComputer,7) & "-000"
     objLink.Description = objShell.ExpandEnvironmentStrings("%username% Share")
      objLink.TargetPath = objShell.ExpandEnvironmentStrings("\\" & objServer & "\Users\%username%\Desktop\%username% Share")
      objLink.Save
    End If
    =======================================================
    if "C:\Users\%username%\desktop\%username% Share" exits do nothing
    if not create the folder and share it with everyone read only
    ======================================================
    The section directly above is what I need to add, anyone have a clue how to make this work?

    Bill:  Can you suggest a site?  I am in the weeds here trying to get this done yesterday.  I have been reading code and trying to figure this out since yesterday morning.  I have to roll out this image to 2 dozen machines and
    this is holding us back.  Any idea which site I can post to for help?
    The bigger issue is that you have been given the answer to this in many different forms and, because you have no technical background, you fail to see what is being shown to you.  That is why I have repeatedly suggested that you hire a consultant.
    The link to the learning material is at the top o this page.  You can also search the web for Windows consultants.
    In the learning link you can also look up how to manage files. If, in the beginning you had chosen to use the learning materials you might not be in this bind.
    Look up and research the FileSystemObject.
    ¯\_(ツ)_/¯

  • My ipod touch has a permanent image of the end of a USB cable with an arrow pointing to an icon of ITunes. I can't reset, and ipod does not appear on itunes when I plug it into the computer.  This happened after I agreed to a failed software update.

    My ipod touch has a permanent image of the end of a USB cable with an arrow pointing to an icon of ITunes. I can't reset using the two button method, and ipod does not appear on itunes when I plug it into the computer - and nothing else happens either.  This happened after I agreed to a software update which failed.  How can I get it going again?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • When i attach my iphone 4 with computer it shows one of the USB devices attached to this computer has malfunctioned and windows does not recognize it,now what can i do ..plz help me

    when i attach my iphone 4 with computer it shows one of the USB devices attached to this computer has malfunctioned and windows does not recognize it,now what can i do ..plz help me

    I would first try unplugging All the USB devices plugged into your computer, and then plug back in just the iPhone and see if that is recognized.  Also, do you have the latest version of iTunes for Windows installed on your PC, as you need to?
    Hope this helps

  • Syncronizing my 3gs with itunes the sync does not finish because itunes allways crash and stuck i made some troubleshoots like reinstall again but nothing and my itunes is update and the system is windows vista home premium.Please help me...

    Syncronizing my 3gs with itunes the sync does not finish because itunes always crash and stuck and i can not sync my device, i dont no whats wrong because the itunes even can not  acess itunes store, still loading waiting for itunes store and nothing.I tryed reinstall itunes but just waste of time.
    My itunes is update, iphone 3gs 4.3.4, system is windows vista home premium.
    Please help me.

    I also have the Mcaffe security centre so on the face of it we have very similar situations and I had not problems.
    You asked what I meant about saving the installer on your PC.
    When you go to the iTunes download page:
    http://www.apple.com/itunes/download/
    And click on download, you should be offered the choice of running the installer or saving it. You need to click on save and then choose a folder on you PC where you want it saved. But I think you already did that.
    After the installer file - iTunessetup.exe - is save on your computer, you double click on it to run it.
    It's very odd that the installer fails at different stages. usually when the installation fails, it is at a specific stage and usually generates an error message.
    I am afraid I am mystified. Have you had any other problems with your PC which might suggest a general problem not specific to iTunes?
    The only other suggestion I have is to download a fresh copy of the installer - in case it got corrupted. You could also try using "run as administrator" to run the installer. It should be an option if you right click on the installer file.
    The other thing it might be worth trying is to install it from another account, but you would need to create another administrator account if you don't a;ready have one. Or if you have another account that is not an admin account, you can temporarily promote it from the control panel>>User accounts.

  • I have a toshiba lap top computer with vista and I can not get my iphone to connect all the way .. it says "connected with limited activity"?

    I have a toshiba lap top computer with vista and I can not get my new iphone to connect all the way .... it says "connected with limited activity". which means I don't get on. Any help would be appreciated. Thanks.  

    Hi all,
    Guess I understand what is going on as I'm also experiencing the problem.
    Basically the issue is about the iPhone 4's personal hotspot.
    I'm trying to hook on personal hotspot to my toshiba laptop but it couldnt work as the connection is limited to local only without Internet access.
    The hotspot works well on other laptop and I-devices, but not my toshiba...
    Hope to get assistance here. Thanks

  • I downloaded Firefox 4.0 and it says to re-install the toolbar but I have not been successful in doing so. Can I go back to the older version? I had no trouble with that and I do not like this new version at all.

    I downloaded Firefox 4.0 and it says to re-install the toolbar but I have not been successful in doing so. I went to the forums and tried all the suggested fixes but none worked. Can I go back to the older version? I had no trouble with that and I do not like this new version at all. I tried a system restore twice and it did not fix the problem.

    I would imagine it's the MyWay Searchbar which is classified by most anti-malware scanners as adware, or even worse as spyware. I say that because I see "SmileyCentral" in your list of plugins and that's an add-on for that particular toolbar. You can disable that via Tools | Add-ons | Plugins.
    There are a number of toolbars which won't work with Firefox 4 anymore due to the enhanced protection mechanisms in the browser.
    Mozilla recommends that you only install add-ons from its own security site @ https://addons.mozilla.org/en-US/firefox/?browse=featured Generally speaking, those have all been tested and approved. The exceptions are those currently under review which are marked with a yellow banner to warn users that they haven't passed Mozilla's labs yet.

Maybe you are looking for

  • Cannot wake from sleep

    Since installing Mountain Lion, my MBP sometimes goes to sleep and will not wake up.  I have to force shut it down and then restart.

  • Need to update, nothing avaliable

    Well the problem first started in the iTunes store, which said I have to have Safari 4.0.2 to enter the iTunes store. So I went to update Safari (currently running 4.0), but there were no updates. So I downloaded Safari 5.0, but am unable to install

  • Deployed Android project using Flash Builder Burrito not working on mobiles

    Hi, I have created a simple "Hello World" Application using Flash Builder Burrito SDK. I have tested the result in the emulator it is working great. After that i deployed the application using "Export Release Build Option" and entered valid certifica

  • Empty Inbox in Mail when created new user.

    Comcast made me change the outgoing mail server port to 587. I could not get it to work by just changing my mail account settings. I had to delete the mail account in the preferences pane and recreate the account. Now I can receive mail. However, del

  • No sound when I try to play iTunes

    help ,baffling . the ringer or volume has vanished . my phone rings but will not play songs