AME multiple AE compositions

in CS5.5 I could select several comps. Now in CS6 I used all combinations like mouseclick and shift/alt/strg, etc. without success. The only feature is double click which puts me back into the main menu after one file is assigned into the queue, i.e. I have to go once more into the select input menu. Did I oversee something ?
HB

hbernhard - I suspect that you've been caught in the wrong dialog. Nothing in this area has changed between CS5.5 and CS6, but you might be getting confused by the multiple ways to add an AE comp to AME.
There's actually two different dialog windows AME can show when you import an After Effects comp or Premiere Pro sequence.
The full version of the dialog looks like this, and appears only when you choose File > Add After Effects Composition or File > Add Premiere Pro Sequence.
The smaller version of the dialog looks like this, and it appears when you use more generic File > Add Source and choose an AE or Premiere Pro project, or when you invoke the same Add Source command by any of the alternate methods (keyboard shortcut, double-clicking in the Queue panel, or dragging an AE or Premiere Project file from the file browser into the Queue).
Besides appearance, the other significant difference between the two dialogs is the problem you've encountered: the smaller dialog does not allow you to multi-select compositions or sequences. You can only select one from the list in this dialog. We're aware of this limitation and it's on our long list of improvements we'd like to make to AME. Please don't let that stop you from reminding us that you'd like to see this functionality in a future version of AME.
BTW, there's another way to add comps and sequences to AME, and that is to drag them from the Project panel in AE or Premiere Pro to the Queue panel in AME. This bypasses the dialogs altogether, and you can add as many as you want to select and drag from the Project panel. (Tip: Since I usually have AE full screen and can't see the AME window, the way I do it is to select the comps I want to queue, start dragging, then while the mouse button is down I use the Alt+Tab keyboard shortcut to switch to AME. The drag objects stay active, and I can drop them into AME's Queue panel.) Make sure to save your AE project before dragging the comps over, as AME only references the last-saved version of the AE project.

Similar Messages

  • Give swipeleft/right gestures to multiple external compositions that are loaded with composition loader by Edge Commons

    Hello,
    I have multiple external compositions that I load in my Edge project, with the composition loader by Edge Commons.
    I would like to connect these external compositions with swipeleft / right gestures.
    When I give the containers (where the external compositions are loaded in) the swipe gestures, it
    works perfectly. But when the external compositions are loaded, the swipe gestures on the containers doesn't work anymore.
    So is it possible to give the external compositions the swipe gestures. And that when they are loaded in my Edge project, the external compositions can communicate with each other.
    For Example:
    External composition one is loaded and when I swipe to the left, external composition 2 will slide in from right to left.
    I think it must be that the external compositions have a function to control the timeline in the Edge Project.
    I hope that this is possible and can help me with the code. Or have another solution.
    Thanks!

    I think I have the same or a similar issue.
    I am using a modified version of Edge Commons - Extension Library for Edge Animate and Edge Reflow | EdgeDocks.com
    to listen to touch swipe events in an external compositions.
    var promise = EC.loadComposition("publish/comp_01.html", sym.getSymbol("content"));
         promise.done(function(comp) {
               var stage = comp.getStage();
           // Listen for events dispatched by the external composition
                    stage.$("bg").swipeleft(function() {
                          EC.loadComposition("publish/comp_02.html", sym.getSymbol("content"));
                    stage.$("bg").swiperight(function() {
                          EC.loadComposition("publish/test1.html", sym.getSymbol("content"));
    This works great for the composition loaded by this script, but the comp.getStage function does not pick up on swipe events on anything other than the .$("bg") in this composition.
    For example I have 30 compositions each with a .$("bg") but only the one loaded by this script works with this script. I am looking for a way to universalize the event listener to work with every .$("bg") loaded into my main stage symbol.
    Do you or does anyone else have a solution?

  • Multiple Edge Compositions not working in Chrome

    I am having trouble with a edge animate multiple composition website.
    What's happening eventually is when I renderize the website in Google Chrome the background layers start to disappear, when I resize the browser window up above the 698px in height, and as you keep resizing it, it keeps with the same behavior, I mean removing these one by one as long as you keep resizing the browser.
    Here's the website link to the website.: http://www.mvcreatives.com/fellini
    Any advice will be very much appreciated!

    Are you referring to the header banner?
    Loads fine in FF for me, latest version.
    Darrell

  • Multiple webcams composite video streaming

    I am relatively new to media foundation and I had just finished building my first single webcam streaming application using 'Developing Microsoft Media foundation Applications'. I have multiple dynamic webcam sources(the webcam number can change) and I need
    to combine them using the video mixer to form a composite video stream much like how multiple CCTV live streaming working on one screen. And yet at the same time I can access individual video stream and highlight/bring in to focus/zoom in when the cursor is
    hovering over to a particular video stream(event listening on video stream). 
    I need a set of guidelines to work with media session, topology, video mixer and video presenter to implement the functionality above. Any help is greatly appreciated. I am not looking into directX to achieve the functionality above. I am into the native
    media foundation architecture.

    Hi,
    Camera are WVC54GCA
    Router is a WRT300N.
    Like I stated earlier, one of these cams I can stream fine to my backberry storm,(Port 554 is forward to the ip address of the camera) but can't seem to configure the other for cell phone viewing.
    All cameras can be viewed via http via computers.

  • Multiple responsive compositions on 1 page with edgecommons

    Hi Guys,
    I am trying to determine what in the is going on here, got two responsive compositions using edgecommons in a single html page. Below is the runtime code - however not having much luck getting them both displayed at the same time. I am able to see each composition on the page when I remove one of the two load functions, but if I use both, there is no joy. I must be doing something wrong but cannot determine what. P.S. all files and assets loaded in the root directory.
    <script>
      var custHtmlRoot="";
      var script = document.createElement('script');
      script.type= "text/javascript";
      script.src = custHtmlRoot+"edge.5.0.0.min.js";
      var head = document.getElementsByTagName('head')[0], done=false;
      script.onload = script.onreadystatechange = function(){
      if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
      done=true;
      //1st composition
      (function() {
      var custHtmlRoot="";
      var opts ={
      scaleToFit: "none",
      centerStage: "none",
      minW: "0px",
      maxW: "undefined",
      width: "100%",
      height: "100%"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('clients', 'clients', opts,
      {"dom":{}}, {"dom":{}});
      //2nd composition
      (function() {
      var custHtmlRoot="";
      var opts ={
      scaleToFit: "none",
      centerStage: "none",
      minW: "0px",
      maxW: "undefined",
      width: "100%",
      height: "100%"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('solutions', 'solutions', opts,
      {"dom":{}}, {"dom":{}});
      script.onload = script.onreadystatechange = null;
      head.removeChild(script);
      head.appendChild(script);
    </script>
    <style>
        .edgeLoad-clients { visibility:hidden; }
        .edgeLoad-solutions { visibility:hidden; }
    </style>
    <body style="margin:0;padding:0;height:100%;">
      <div id="Stage1" class="clients"></div>
      <div id="Stage2" class="solutions"></div>
        <meta content="minimum-scale=1, width=device-width, maximum-scale=1, user-scalable=yes" name="viewport">
    </body>
    Any help would be appreciated - Cheers
    Wish the adobe team would streamline this in the next update. Makes real life instances very difficult to figure out.

    vivekuma,
    I believe I either found the problem or at least narrowed it down. 2014.1.1 appears to have broken the Multiple Responsive Animate Compositions in an uploaded state.
    I will send you the comps that I have used for testing, but it appears that the current version (2014.1.1) broke this code in an "uploaded" state. Running this code on a local web server functions perfectly fine.
    Again, this code only works locally and not on an internet web host!
    P.S. I have removed all instances of Edge Commons, so there are no calls to this extension library.
    P.S.S. I am now using multiple compositions to serve my responsive breakpoint needs using media queries to hide and zero out stages between break points.
    Thanks Vivekuma and any other Adobe Edge Animate staff who read this!
    Eldin

  • BizTalk 2013 R2 - Oracle client (Insert into Multiple tables) CompositE Transaction

    I know there is Composite Transaction of  inserting into multiple tables in SQL.
    Is there a way where we can have inserts into multiple table at once ? If yes, can anyone please provide step by step procedure to achieve this  
    MBH

    Here is a link on using Oracle DB w/ composite operations: 
    Performing Composite Operations on Oracle Database by Using BizTalk Server
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Connecting to Multiple ECC systems via one Gateway system(Dynamic System Selection)

    Hi Experts,
    We have multiple ECC systems and one Gateway server. We want to connect to these different ECC systems using one GW system.
    I have created System Aliases for these ECC system in GW system. For a service, i added 2 system aliases.
    Now we are looking for the solution where UI can provide the system alias (it wants to connect) as a parameter while calling oData Service.
    Please help.
    Regards,
    Rohit

    Hi Rohit,
    we have a similar scenario where we have two system aliases for one service. Both aliases point to the same system, but different clients; it should not make a difference though, having different systems. The feature you are looking for is Multiple Origin Composition (MOC).
    There are a couple of things you have to consider:
    in the SEGW the entity to be called has to be marked as addressable
    the URI of the service needs to include the tag for MOC (;mo) --> http://sapgw.domain.org:8000/sap/opu/odata/sap/ZSOME_SERVICE;mo/entityset
    Without the ;mo the call will be routed to your default alias. The ;mo will route the call to both systems. Using MOC will generate an additional key property into your entities --> SAP__ORIGIN. The property is the alias. If you want to route to a specific system you have to provide the SAP__ORIGIN like providing normal key properties in your requests.
    This will look like this:
    <content type="application/xml">
      <m:properties xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices">
        <d:SAP__Origin>SOME_ALIAS</d:SAP__Origin>
        <d:Identifier>SOME_IDENTIFIER</d:Identifier>
        <d:Doublet />
      </m:properties>
    </content>
    The original Entity only consists of the key property "Identifier" and the property "Doublet". "SAP__ORIGN" is added via the ;mo.
    Hope it helped...
    Holger

  • Trouble with Lightbox Composition and triggers

    I find working with the lightbox composition and triggers utterly infuriating!
    I am trying to build a page with multiple lightbox compositions on it and I want each lightbox (and each slide within) to be identical - i.e. all to be the same size image frame, the same size text frame and styles etc. I have set up one with 6 slides and can copy and paste this down the page, but I am trying to add more triggers (and images) on some lightboxes and this is where I have difficulty. When I click the 'add trigger' button it adds another trigger but doesn't add the image frame or text frame. I then try to copy and paste the image and text frames onto the space but instead of this working as expected it simply adds the image on top of all the other images (and my previous and next buttons). If I try to 'send backwards' it puts the image frame behind the main container.
    Is there a way to add a trigger so that it basically duplicates the previous slide into the next, where I could then simply change the image and text?
    I also want all but the first of the triggers to be invisible. Is there a view mode that shows frame edges (as you can in InDesign) so I can see where the other triggers are? Currently I make all the triggers a solid colour until just before I publish the site when I make them all invisible. However once published if I need to edit the site I can't go back in a quickly select all the triggers, I have to stab around blindly until I happen to select them. It would be great if there was a way to view the frame edges - this would also make it handy when moving items so you don't overlap them inadvertantly, or would show me if I have an empty frame sitting somewhere.

    As of now every new trigger you add you get a blank target frame without any of the contents from the previous slide. You may submit this as an idea to either allow to add new frames based on a defined template or allow an existing frame to be duplicated.
    For now, you can copy all the objects in an existing frame and copy them. Then select the target frame and do an Edit > Paste in place. This would paste the content on top of the widget (not part of the target frame yet). Now with the content still selected click on one of the objects with mouse and nudge the selected objects a little bit (a pixel or two) - this would add them to the target slide. Then you can again select them and nudge them back in place as required.
    For selecting transparent triggers, you can select the one visible trigger and then right-click/ctrl+click and choose "Select Same (Trigger)". This would select all the triggers in the widget and allow you to set fill or stroke to them all at once.
    Cheers,
    Vikas

  • Different message strams to different SOA composites?

    I have the feeling that all inbound message streams are delivered to the same internal, AQ and JMS channel - I hope I am wrong.
    If this is the case and I have multiple SOA Composites in 11g, which include an inbound B2B Adapter, will all of them receive all streams of messages?
    If only one of teh multiple SOA Composites will, then which one will it be?
    If I can specify, per trading partner agreement / trading partner, which SOA composite will ge the stream of messages, what and how will I configure t do this?
    Thanks in advance for pointing me at the appropriate material
    Regards
    Michael

    Hello Michael,
    In the absence of an explicit internal channel the IP_IN_QUEUE (AQ) and B@B_IN_QUEUE (JMS) will both receive each message, right? If there is no consumer these messages will be discarded, right?No. Either of AQ queue or JMS queue can be active at a time. By default AQ queue reamains active. So B2B polls IP_OUT_Queue for outbound messages and passes inbound messages to IP_IN_Queue. If you want to activate JMS queues then you have to set B2B system parameter "Use JMS Queue as default" to true. If this option is set to true, then B2B starts to poll on the JMS queue, B2B_OUT_QUEUE for outbound messages, and delivers all inbound messages to B2B_IN_QUEUE. Polling on IP_OUT_QUEUE is stopped. To know more about this setting please refer user guides below section -
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/bb_config.htm#CEGEADFJ
    In 11g R2 there is a "default" channel as well, which eliminates the nees to use the AQ and JMS as means of interaction between the B2B and teh SOA Composite. It shows up as a "B2B Adapter" in a SOA Composite and acts as an adapter.For integrating B2B with SOA composite, there is a B2B adapter. You may integrate B2B with SOA composite in three ways -
    1. Default
    2. AQ
    3. JMS
    This integration is descibed in detail in user guide at below link -
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/intro_ui.htm#CHDDJIFC (section 2.5 Using Oracle B2B in the Oracle JDeveloper Environment)
    For routing purpose (routing all messages with the same document routing ID to one SOA composite), you may use Document Routing ID. Use of Document routing ID is defined here -
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/b2b_documents.htm#CHDHBDEI (section 7.10 Using Document Routing IDs)
    Please go through above links once. You may also use Fusion Order demo to understand it in a better way. Section 2.5.3 The B2BX12OrderGateway Composite in the Fusion Order Demo, defines it's use -
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/intro_ui.htm#CHDDJIFC
    These are newbe questions, since I am a newbe. The B2B User's Guide is not clear on this.A person with more than 28 years of experience in IT, can never be a newbie. It's my pleasure to answer your questions and I hope I am able to do so. :)
    Regards,
    Anuj

  • Compositing with Motion

    Hi, has anyone done multiple layers compositing using Motion before(more than 10 layers, each with lots of nesting objects). The problem I face is after awhile(a few minutes to be exact), Motion becomes extremely sluggish, I cannot add/duplicate layers, my videos become distorted and occationally the program will just quit by itself.
    I am using dual 2.7GHz, 4.5Gb ram, X800 XT, Fibre Channel HD
    The items I have in the project are:
    - cg background video
    - life plate(chroma keyed)
    - shadow generated using the life plate
    - light wraps (manually created using lots of layers)
    - simulated lights effect
    - other foreground CG elements(alpha channel video)
    My videos are 10bit uncompressed.
    I know Motion is not exactly a compositing software, but it is much easier to execute compare to other compositing software and Motion is what I have for now.
    Any suggestion on whether should I stick with Motion or move on to Shake instead? Thanks in advance.
    jovan

    Hey Jovan,
    Try clearing your RAM every so often. As soon as you hit play, Motion begins to fill your RAM.
    Run your activity monitor in Utilities, clear your RAM, and then hit play in Motion and see how much playback you get before your RAM is full. If you clear your RAM before it gets full, that should clear up your problems. It did mine. It is kind of a pain to have to navigate through a drop down menu to clear the RAM as often as you might need to. A key command to clear the RAM would be most helpful.
    I have to give Patrick the credit for this work around. He's the one that suggested I check out the activity monitor.
    Hope this helps.
    -G

  • Error while consuming Odata service from Gateway client i.e /iwfnd/gw_client

    Hello Experts.
       I am facing below an error while consuming the Odata service from GW client... The error is "No service found for the namespace /IWFND/,name ZTEST_STOREROOM_SRV,version 001". Even i have tried to deep dive in /IWFND/Error_log but no use..
      Actually what I was doing :- My aim is to connect multiple back end systems in the same server with the help of Aliasing concept.. I have created multiple aliases and added in the /IWFND/MAINT_Service transaction.. but i am not getting how to consume the service..
       I have followed the solution upto some extent in the link => Multiple Origin Composition - SAP NetWeaver Gateway Foundation (SAP_GWFND) - SAP Library
      Can you please let me know how to resolve this.. Also please let me know, the syntax for the URI...
      Your help is highly appreciated..
      Please find the screenshot attached.
    Thanks,
    Srinivas.

    Hello @Nrisimhanadh_Yandamuri
      Thanks for your reply..
      I have got all the required authorization.. But still I am not able to hit the service.. Please let me know what could be the solution..
    Thanks,
    Srinivas.

  • Deploy common artifact(XSD,WSDL) to a folder in DB based MDS

    Hi,
    I work in an environment where there are multiple partitions created in SOA Server and multiple SOA composites deployed on these partitions. What i need to do is We want to create a MDS structure where common artifacts for each partitions are kept in seperate folder/ parent directory.
    IS this possible in DB based MDS, can anyone share how to achieve this thing ?

    Hi,
    I guess you can use partitions to achieve this:
    http://www.oracle.com/technetwork/articles/soa/fonnegra-storing-sca-metadata-1715004.html
    Regards,
    ARPL

  • Urgent : Fault Policies in 11g

    Hi All,
    im trying to use fault policies in 11g. as per documentation i can have
    1). the fault policies and fault bindings in the same composite. this works fine
    2). In a different location that is specified with two properties that you add to the composite.xml file. This option is useful if a fault policy must be used by multiple SOA composite applications. This option overrides any fault policy files that are included in the same directory as the composite.xml file. Example 12-3 provides details about these two properties. In this example, the fault policy files are placed into the SOA Metadata Service (MDS) shared area.
    <property
    name="oracle.composite.faultPolicyFile">oramds://apps/faultpolicyfiles/
    fault-policies.xml
    </property>
    <property
    name="oracle.composite.faultBindingFile">oramds://apps/faultpolicyfiles/
    fault-bindings.xml
    </property>
    Problem Description
    i tried to work on both approches
    Scenario 1
    =====================================================
    1). I have 2 Composites with BPEL process
    2). First composite will have fault policies and binidings in the same project as composite.xml and invokes the second composite
    3). Turn Off the First composite.
    remote fault is propagated and waits for recovery.
    Scenario 1
    =====================================================
    1). I have 2 Composites with BPEL process
    2). First composite will have fault policies and binidings are deployed to shared metadata and invokes the second composite and reffered as shown below
    3). Turn Off the First composite.
    remote fault is not getting propagated and process is getting faulted.
    please find the attached composite.xml file i have used.
    is this the correct way to include the fault policies .. if any body has already worked on fault policies in 11G and accessed them thru share metadata are please suggest me how to resolve this, if not any working example and pointer to setup the properties will be of great help.
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle SOA Modeler version 1.0 at [12/07/09 12:32]. -->
    <composite name="TestHello"
    revision="1.0"
    label="2009-07-12_12-32-01_093"
    mode="active"
    state="on"
    xmlns="http://xmlns.oracle.com/sca/1.0"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
    xmlns:ui="http://xmlns.oracle.com/soa/designer/">
    <import namespace="http://xmlns.oracle.com/SOAMetaData/TestHello/Lakshmi"
    location="Lakshmi.wsdl" importType="wsdl"/>
    <import namespace="http://xmlns.oracle.com/SOAMetaData/Hello/laks1"
    location="http://INT01723:8001/soa-infra/services/default/Hello/laks1.wsdl"
    importType="wsdl"/>
    <service name="lakshmi_client_ep" ui:wsdlLocation="Lakshmi.wsdl">
    <interface.wsdl interface="http://xmlns.oracle.com/SOAMetaData/TestHello/Lakshmi#wsdl.interface(Lakshmi)"
    callbackInterface="http://xmlns.oracle.com/SOAMetaData/TestHello/Lakshmi#wsdl.interface(LakshmiCallback)"/>
    <binding.ws port="http://xmlns.oracle.com/SOAMetaData/TestHello/Lakshmi#wsdl.endpoint(lakshmi_client_ep/Lakshmi_pt)"/>
    <callback>
    <binding.ws port="http://xmlns.oracle.com/SOAMetaData/TestHello/Lakshmi#wsdl.endpoint(lakshmi_client_ep/LakshmiCallback_pt)"/>
    </callback>
    <property name="oracle.composite.faultPolicyFile">oramds://apps/faultpolicyfiles/fault-policies.xml</property>
    <property name="oracle.composite.faultBindingFile">oramds://apps/faultpolicyfiles/fault-bindings.xml</property>
    </service>
    <component name="Lakshmi">
    <implementation.bpel src="Lakshmi.bpel"/>
    <property name="oracle.composite.faultPolicyFile">oramds://apps/faultpolicyfiles/fault-policies.xml</property>
    <property name="oracle.composite.faultBindingFile">oramds://apps/faultpolicyfiles/fault-bindings.xml</property>
    </component>
    <reference name="Service1"
    ui:wsdlLocation="http://INT01723:8001/soa-infra/services/default/Hello/laks1.wsdl">
    <interface.wsdl interface="http://xmlns.oracle.com/SOAMetaData/Hello/laks1#wsdl.interface(laks1)"
    callbackInterface="http://xmlns.oracle.com/SOAMetaData/Hello/laks1#wsdl.interface(laks1Callback)"/>
    <binding.ws port="http://xmlns.oracle.com/SOAMetaData/Hello/laks1#wsdl.endpoint(laks1_client_ep/laks1_pt)"
    location="http://INT01723:8001/soa-infra/services/default/Hello/laks1_client_ep?WSDL"/>
    <callback>
    <binding.ws port="http://xmlns.oracle.com/SOAMetaData/Hello/laks1#wsdl.endpoint(laks1_client_ep/laks1Callback_pt)"/>
    </callback>
    <property name="oracle.composite.faultPolicyFile">oramds://apps/faultpolicyfiles/fault-policies.xml</property>
    <property name="oracle.composite.faultBindingFile">oramds://apps/faultpolicyfiles/fault-bindings.xml</property>
    </reference>
    <wire>
    <source.uri>lakshmi_client_ep</source.uri>
    <target.uri>Lakshmi/lakshmi_client</target.uri>
    </wire>
    <wire>
    <source.uri>Lakshmi/Service1</source.uri>
    <target.uri>Service1</target.uri>
    </wire>
    </composite>
    Thanks
    Nadh
    when i try the second scenario it is not picking up the fault

    A Sample composite.xml for the External fault-policy and fault-binding files.
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle SOA Modeler version 1.0 at [6/3/09 4:09 PM]. -->
    <composite name="Shared_MDS_Fault_Policy_Test"
    revision="1.0"
    label="2009-06-03_16-09-26_218"
    mode="active"
    state="on"
    xmlns="http://xmlns.oracle.com/sca/1.0"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
    xmlns:ui="http://xmlns.oracle.com/soa/designer/">
    <import namespace="http://xmlns.oracle.com/Shared_MDS_Fault_Policy_App/Shared_MDS_Fault_Policy_Test/Med_SharedMDS_Fault_Policy"
    location="Med_SharedMDS_Fault_Policy.wsdl" importType="wsdl"/>
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/file/Shared_MDS_Fault_Policy_App/Shared_MDS_Fault_Policy_Test/OutFile%2F"
    location="OutFile.wsdl" importType="wsdl"/>
    <service name="Med_SharedMDS_Fault_Policy_ep"
    ui:wsdlLocation="Med_SharedMDS_Fault_Policy.wsdl">
    <interface.wsdl interface="http://xmlns.oracle.com/Shared_MDS_Fault_Policy_App/Shared_MDS_Fault_Policy_Test/Med_SharedMDS_Fault_Policy#wsdl.interface(execute_ptt)"/>
    <binding.ws port="http://xmlns.oracle.com/Shared_MDS_Fault_Policy_App/Shared_MDS_Fault_Policy_Test/Med_SharedMDS_Fault_Policy#wsdl.endpoint(Med_SharedMDS_Fault_Policy_ep/execute_pt)"/>
    </service>
    *<property name="oracle.composite.faultPolicyFile">oramds:/apps/fault-policies.xml*
    *</property>*
    *<property name="oracle.composite.faultBindingFile">oramds:/apps/fault-bindings.xml*
    *</property>*
    <component name="Med_SharedMDS_Fault_Policy">
    <implementation.mediator src="Med_SharedMDS_Fault_Policy.mplan"/>
    </component>
    <reference name="OutFile" ui:wsdlLocation="OutFile.wsdl">
    <interface.wsdl interface="http://xmlns.oracle.com/pcbpel/adapter/file/Shared_MDS_Fault_Policy_App/Shared_MDS_Fault_Policy_Test/OutFile%2F#wsdl.interface(Write_ptt)"/>
    <binding.jca config="OutFile_file.jca"/>
    </reference>
    <wire>
    <source.uri>Med_SharedMDS_Fault_Policy_ep</source.uri>
    <target.uri>Med_SharedMDS_Fault_Policy/Med_SharedMDS_Fault_Policy</target.uri>
    </wire>
    <wire>
    <source.uri>Med_SharedMDS_Fault_Policy/OutFile</source.uri>
    <target.uri>OutFile</target.uri>
    </wire>
    </composite>
    And also Please make sure that you are refering to correct oramds: location as mentioned by suhariha

  • Quartz Composer Visualizer crashes.

    Hi, I'm a great fan of Quartz Composer, and would like to start playing with multiple screen composition. I can successfully run a composition fullscreen on my own mac with QC visualizer. However, whenever I try to start one of my compositions in Quartz Composer Visualizer with an external screen connected, I just get a black screen. If I try one of apple's prebuilt compositions in the same 2 display configuration, my computer freezes (and I have to restart). I get the error log from console below:
    Does anyone know how to fix this?
    Many thanks.
    <start log>
    24/01/2009 13:16:31 Quartz Composer Visualizer[219] * <QCNodeManager | namespace = "com.apple.QuartzComposer" | 335 nodes>: Patch with name "QCPlugInPatch:ImageInfo" is missing
    24/01/2009 13:16:31 Quartz Composer Visualizer[219] * Message from <QCPatch = 0x1BB2D430 "(null)">:
    Cannot create node of class "QCPlugInPatch" and identifier "ImageInfo"
    24/01/2009 13:16:31 Quartz Composer Visualizer[219] * Message from <QCPatch = 0x1BB2D430 "(null)">:
    Cannot create connection from ["outputImage" @ "SepiaTone_1"] to ["inputImage" @ "PlugInPatchImageInfo1"]
    24/01/2009 13:16:31 Quartz Composer Visualizer[219] * State restoration failed on <QCPatch = 0x1BB2D430 "(null)">
    24/01/2009 13:16:31 Quartz Composer Visualizer[219] * <QCNodeManager | namespace = "com.apple.QuartzComposer" | 335 nodes>: Patch with name "QCPlugInPatch:ImageInfo" is missing
    24/01/2009 13:16:31 Quartz Composer Visualizer[219] * Message from <QCPatch = 0x15E1BB10 "(null)">:
    Cannot create node of class "QCPlugInPatch" and identifier "ImageInfo"
    24/01/2009 13:16:31 Quartz Composer Visualizer[219] * Message from <QCPatch = 0x15E1BB10 "(null)">:
    Cannot create connection from ["outputImage" @ "SepiaTone_1"] to ["inputImage" @ "PlugInPatchImageInfo1"]
    24/01/2009 13:16:31 Quartz Composer Visualizer[219] * State restoration failed on <QCPatch = 0x15E1BB10 "(null)">
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] * <QCNodeManager | namespace = "com.apple.QuartzComposer" | 335 nodes>: Patch with name "QCPlugInPatch:ImageInfo" is missing
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] * Message from <QCPatch = 0x1BBCCA00 "(null)">:
    Cannot create node of class "QCPlugInPatch" and identifier "ImageInfo"
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] * Message from <QCPatch = 0x1BBCCA00 "(null)">:
    Cannot create connection from ["outputImage" @ "SepiaTone_1"] to ["inputImage" @ "PlugInPatchImageInfo1"]
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] * State restoration failed on <QCPatch = 0x1BBCCA00 "(null)">
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] Sharing OpenGL contexts between drawing renderers #1 and #0
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] * <QCNodeManager | namespace = "com.apple.QuartzComposer" | 335 nodes>: Patch with name "QCPlugInPatch:ImageInfo" is missing
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] * Message from <QCPatch = 0x2903C2C0 "(null)">:
    Cannot create node of class "QCPlugInPatch" and identifier "ImageInfo"
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] * Message from <QCPatch = 0x2903C2C0 "(null)">:
    Cannot create connection from ["outputImage" @ "SepiaTone_1"] to ["inputImage" @ "PlugInPatchImageInfo1"]
    24/01/2009 13:16:37 Quartz Composer Visualizer[219] * State restoration failed on <QCPatch = 0x2903C2C0 "(null)">

    I had the same error message and removed the 'Quartz Composer Visualizer' plug-in. iTunes seemed to load faster afterwards. Bt now the console gives me the error message that the 'Quartz Composer Visualizer' plug-in could not be found. So any way to remove references to the 'Quartz Composer Visualizer' in iTunes or a way to install a working version of the plug-in.

  • Personalizatio:  Attachment Link

    Hi All,
    I have a requirement to create an attachment link on the Work Order completion screen. Basically to display attachments that are against the Work Order. I am trying to do this using the Admin Level personsalizations functionality. I can get the link to display and it works fine, except the personalization functionality does not allow me to create more than 1 primary key for the attachment link. Because in the FND_ATTACHED_DOCUMENTS table Work Order attachments are stored with multiple keys (composite keys), I cannot see any existing attachments. Any new attachments I create using the personalization are not visible anywhere else in the system, and are stored only with the PK I setup the attachment link with (as expected).
    My question. Can we create an attachment link using personalizations with multiple primary keys?
    I have seen this done for the standard screens (which have been developed in JDev using OAF) so it is possible using the framework just not in personalizations.

    Hello,
    check this link:
    Activate GOS business application for object PREL
    I hope it helps you.
    Regards,
    Pedro

Maybe you are looking for

  • "..so I had to interview this guy...."...

    It was last minute, & I got stuck using an SVHS unit...fine, whatever. The shoot was at night with no standard live power...I had a couple "power packs"...No problem...(light for the event WAS provided by a gas generator) BOTTOM LINE: The video I sho

  • SQL 2012 AlwaysOn AG with 3 Nodes

    First, what would be the best option of quorum/quorum witness for my SQL 2012 AlwaysOn group? I have setup the following: SQL 2012 AlwaysOn with 3 nodes. 1 primary 2 secondaries - one of them is read-only (for reporting and backup) Dynamics CRM and R

  • Show drill down with in same page in Oracle BAM 11g

    Is it possible to show drill down report with in same report page?say once i open a report A, user can see only report A.Once i drill down to next level the report page will show report A and next drilled reoprt say report B and like this.

  • Deploying ESS through JSPM

    Hi All, I am deploying the ESS 10 through JSPM and was checking the error log. Found the following, server.4.log shows the following Operation deploy over application sap.com/essinaddr finished successfully on server 101711350# #1.5#00144FEC6FF000590

  • Unsent Email disappears in weak cell areas

    Twice thus far, I've had an email I was composing simply disappear from my screen.  It is no where to be found (Drafts, Sent items, Outbound, Inbox...).  In both cases I was in either weak or dark cell coverage.  I've noticed similar instances being