Composite AV vs. Component???

I have a 1st gen. ipod touch and I want to connect it to my TV for watching movies and TV shows I get off itunes. I don't know which cord I'm supposed to use. Can someone help me out? Thank you!

It really depends what type of input available of your TV.
The composite av is
http://en.wikipedia.org/wiki/Composite_video
The component av is
http://en.wikipedia.org/wiki/Component_video

Similar Messages

  • Unable to create Composite Application Webdynpro Component

    Hi,
    I am getting an error
    Invalid component: componentName=com.sap.caf.core.gp.ui.visibleco.config.pattern.COConfigUIPatterns   dcName=sap.com/cafcoregpuivisibleco~admin
    when i click on Create callable object->Composite Application Webdynpro Component.
    The DC mentioned here is not there in the deployed components.How to deploy this DC?
    I am able to create other callable objects.
    Regards
    Rohit

    Hi,
    Tell me one thing that are you able to test the project from CAF service browser?
    Please test it first. If it does not work then please deploy the CAF project again and test it. Then go to the GP and create the callable object. If it does not work then please let me know which version of NWDS as well as WAS are you using?
    Thanks
    Chandan

  • Photos on TV: Composite vs. Component

    I use the component video connection to watch iPod movies on our TV. However, our sync'd photos will not display via this connection. Would they display using composite video? Thanks.

    I want to buy the one that is gonna work on the bulk of TVs out there. The trend seems like most even new TVs will have RCA inputs but I know lots of old TVs wont have component.
    Accessing my vast experience with televisions I would estimate that 99.9% have a composite input, and about 95% also have component input.
    Bear in mind though, the Hollywood cartel is pushing hard to make component video illegal. In fact, beginning this year DVD players can no longer output HD video on component cables. HD can only output on the less reliable HDMI connector.
    About the only time I see a television without component inputs are on the cheap televisions that hotels buy.

  • Using a composite component from an xhtml that is included in another xhtml

    JBoss 7.1.1
    JSF 2.1
    I have the following composite component:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <ui:component xmlns="http://www.w3.org/1999/xhtml"
            xmlns:h="http://java.sun.com/jsf/html"
            xmlns:composite="http://java.sun.com/jsf/composite"
            xmlns:f="http://java.sun.com/jsf/core"
            xmlns:ui="http://java.sun.com/jsf/facelets"
            xmlns:rich="http://richfaces.org/rich">
            <composite:interface>
                <composite:attribute name="for" required="true" />
            </composite:interface>
            <composite:implementation>
                <rich:panel styleClass="aas-msg-tt-p">
                    <rich:message id="#{cc.attrs.for}-msg"
                        for="#{cc.attrs.for}" />
                    <rich:tooltip id="#{cc.attrs.for}-msg-tt">
                        <rich:message for="#{cc.attrs.for}"
                            styleClass="aas-rf-det-tooltip" />
                    </rich:tooltip>
                </rich:panel>
            </composite:implementation>
    </ui:component>It is in WebContent/resources/aas-composite/messagetooltip.xhtml ( where WebContent is the root directory or root context directory of the deployed WAR )
    h3. *1. Using the composite component and working as expected*
    If I use the composite component directly as follows, it all works:
    1) Create test.xhtml in WebContent
    2) Content of test.xhtml as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:aas="http://java.sun.com/jsf/composite/aas-composite">
    <h:head>
        <meta http-equiv="X-UA-Compatible" content="IE=8" />
    </h:head>
    <h:body>
        <h:outputStylesheet library="css" name="richfacesoverrides.css"/>
        <h:form id="testform">
           <table>
                <tr>
                    <td><aas:messagetooltip for="id2"/></td>
                    <td><h:outputLabel>Input 2: </h:outputLabel></td>
                    <td><h:selectOneMenu id="id2"
                            required="true"
                            requiredMessage="Cause of Death is required"
                            value="${death.causeOfDeath}">
                           <f:selectItem itemValue="" itemLabel="-- Select One --" />
                           <f:selectItem itemValue="COD01" itemLabel="Cancer" />
                           <f:selectItem itemValue="COD02" itemLabel="Diabetes" />
                           <f:selectItem itemValue="COD11" itemLabel="Other" />
                        </h:selectOneMenu>
                    </td>
                </tr>
           </table>
           <h:commandButton id="submit" value="Submit"/><br/>
    </h:form>
    </h:body>
    </html>3) Deploy and test, all good
    h3. *2. Using the composite component but NOT working as expected*
    Now if I use the composite component as follows:
    4) Create XHTML file called includeThisFromRoot.xhtml under WebContent directory
    5) with content as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:aas="http://java.sun.com/jsf/composite/aas-composite">
        <ui:composition>
           <table>
                <tr>
                    <td><aas:messagetooltip for="id2"/></td>
                    <td><h:outputLabel>Input 2: </h:outputLabel></td>
                    <td><h:selectOneMenu id="id2"
                            required="true"
                            requiredMessage="Cause of Death is required"
                            value="${death.causeOfDeath}">
                           <f:selectItem itemValue="" itemLabel="-- Select One --" />
                           <f:selectItem itemValue="COD01" itemLabel="Cancer" />
                           <f:selectItem itemValue="COD02" itemLabel="Diabetes" />
                           <f:selectItem itemValue="COD11" itemLabel="Other" />
                        </h:selectOneMenu>
                    </td>
                </tr>
           </table>
           <h:commandButton id="submit" value="Submit"/><br/>
        </ui:composition>
    </html>6) Make a copy test.xhtml, but call the new one testWithInclude.xhtml, with content as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:aas="http://java.sun.com/jsf/composite/aas-composite">
    <h:head>
        <meta http-equiv="X-UA-Compatible" content="IE=8" />
    </h:head>
    <h:body>
        <h:outputStylesheet library="css" name="richfacesoverrides.css"/>
        <h:form id="testform">
            <ui:include src="includeThisFromRoot.xhtml" />
        </h:form>
    </h:body>
    </html>h3. Summary of change
    You can see here that I simply moved all of the content between the form tags from the original XHTML to a separate XHTML, and included that separate XHTML using <ui:include>.
    h3. Result
    7) Deploy and access testWithInclude.jsf from browser, and I get:
    15:17:55,310 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/richfacestest].[Faces Servlet]] (http--0.0.0.0-8081-5) Servlet.service() for servlet Faces Servlet threw exception: javax.faces.view.facelets.TagException: /includeThisFromRoot.xhtml @13,52 <aas:messagetooltip> Tag Library supports namespace: http://java.sun.com/jsf/composite/aas-composite, but no tag was defined for name: messagetooltip
            at com.sun.faces.facelets.compiler.CompilationManager.pushTag(CompilationManager.java:304) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.compiler.SAXCompiler$CompilationHandler.startElement(SAXCompiler.java:266) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:496)
            at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(AbstractXMLDocumentParser.java:180)
            at org.apache.xerces.impl.dtd.XMLDTDValidator.emptyElement(XMLDTDValidator.java:810)
            at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(XMLNSDocumentScannerImpl.java:275)
            at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1653)
            at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:324)
            at org.apache.xerces.parsers.XML11Configuration.parse(XML11Configuration.java:845)
            at org.apache.xerces.parsers.XML11Configuration.parse(XML11Configuration.java:768)
            at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:108)
            at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1196)
            at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:555)
            at org.apache.xerces.jaxp.SAXParserImpl.parse(SAXParserImpl.java:289)
            at javax.xml.parsers.SAXParser.parse(SAXParser.java:195) [rt.jar:1.7.0_09]
            at com.sun.faces.facelets.compiler.SAXCompiler.doCompile(SAXCompiler.java:434) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.compiler.SAXCompiler.doCompile(SAXCompiler.java:410) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.compiler.Compiler.compile(Compiler.java:124) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.impl.DefaultFaceletFactory.createFacelet(DefaultFaceletFactory.java:305) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.impl.DefaultFaceletFactory.access$100(DefaultFaceletFactory.java:93) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.impl.DefaultFaceletFactory$1.newInstance(DefaultFaceletFactory.java:160) [jsf-impl-2.1.7-jbossorg-2.jar:]What gives ? Am I missing something simple ?

    I think I may have found a workaround.
    In the XHTML file that is included and using the composite component, add the namespace as part of the custom component, like so:
    <aas:messagetooltip xmlns:aas="http://java.sun.com/jsf/composite/aas-composite" for="id2"/>So that it now becomes:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:aas="http://java.sun.com/jsf/composite/aas-composite">
        <ui:composition>
           <table>
                <tr>
                    <td><aas:messagetooltip xmlns:aas="http://java.sun.com/jsf/composite/aas-composite" for="id2"/></td>
                    <td><h:outputLabel>Input 2: </h:outputLabel></td>
                    <td><h:selectOneMenu id="id2"
                            required="true"
                            requiredMessage="Cause of Death is required"
                            value="${death.causeOfDeath}">
                           <f:selectItem itemValue="" itemLabel="-- Select One --" />
                           <f:selectItem itemValue="COD01" itemLabel="Cancer" />
                           <f:selectItem itemValue="COD02" itemLabel="Diabetes" />
                           <f:selectItem itemValue="COD11" itemLabel="Other" />
                        </h:selectOneMenu>
                    </td>
                </tr>
           </table>
           <h:commandButton id="submit" value="Submit"/><br/>
        </ui:composition>
    </html>I tried this after finding a similar bug about nested composite components, which I do not use, but thought I would give it a try:
    http://stackoverflow.com/questions/10898906/myfoo-tag-library-supports-namespace-http-java-sun-com-jsf-composite-mycom
    http://stackoverflow.com/questions/9735593/nested-composite-component-broken-in-jboss-7-1-1
    Have to keep track of all these workarounds that I am doing.

  • Registering External Fault Policy(s) with a Composite in SOA 11g

    Hi
    I was wondering whether it is possible to register more than one external fault policy with a composite. I have loaded some fault policies into my database backed MDS store. I have added a fault-bindings.xml file locally to teh composite to indicate which components I want to use which policy. this file resembles:
    <composite faultPolicy="bpelSynchronousProcessingFaults"/>
    <component faultPolicy="mediatorSynchronousProcessingFaults">
    <name>MediatorRouting</name>
    </component>
    I have also added to the composite.xml file the respective imports / properties to identify the location of the fault policy files and the fault bindings. These resemble:
    </service>
    <property name="oracle.composite.faultPolicyFile">oramds:/apps/fault-policies/fault-policies-med-sync.xml</property>
    <property name="oracle.composite.faultPolicyFile">oramds:/apps/fault-policies/fault-policies-bpel-sync.xml</property>
    <property name="oracle.composite.faultBindingFile">fault-bindings.xml</property>
    <component name="MediatorRouting">
    For a test I have the BPEL component using one and the mediator component using another, both within the same composite. Depending on the order of the 2 properties shown above, only one is registered. This being the second one.
    Is it possible to register more than one policy in this way? I have been unable to get both working at the same time. Each works independently if I only register one of them. I want keep the fault policies external to the composites to allow them to be re-used appropriately across composites within an SOA project
    My thinking is, in order to be able to have differing policies effecting different components within a composite i'd have thought it would have been possible to define more than one external policy for a composite. However it appears this is not the case as it only registers or atleast works with the last policy in an import. Also placing the files locally within the composite with differing names has no impact.
    Therefore i'm assuming (unless I have configured these incoorectly) there is no option to have multiple fault policies for a composite. Therefore there is no ability to define a different policy per component within a composite
    Kind Regards
    Dave

    Using the fault binding attach your fault policy to particular component. See example below.Use the tag  <component faultPolicy="ServiceFaults">
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicyBindings version="2.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <component faultPolicy="ServiceFaults">
      <name>Component1</name>
      <name>Component2</name>
      </component>
      <!-- Below listed component names use polic CRM_SeriveFaults -->
      <component faultPolicy="CRM_ServiceFaults">
      <name>HelloWorld</name>
      <name>ShippingComponent</name>
      <name>AnotherComponent"</name>
      </component>
      <!-- Below listed reference names and port types use polic CRM_ServiceFaults
    -->
      <reference faultPolicy="CRM_ServiceFaults">
      <name>creditRatingService</name>
      <name>anotherReference</name>
      <portType
    xmlns:credit="http://services.otn.com">credit:CreditRatingService</portType>
      <portType
    xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/insert/">db:insert_
    plt</portType>
      </reference>
      <reference faultPolicy="test1">
      <name>CreditRating3</name>
      </reference>
    </faultPolicyBindings>

  • Is there a MAC Book to Component video adapter

    I have a club customer who wants to play music videos off of the DJ's MAC. There will be different MAC's coming in. Is there a MAC to component adapter available?

    The matrox MXO2 is likely what you are referring to. It would be an extremely useful i/o device for you if the price is acceptable. It will have good resale value for a few years too if you ever wanted to get rid of it. With your camera's chip set and resolution of 850 lines you can capture via component to 4:2:2 color space by editing in a codec like DVCPRO 50 which is very efficient and looks great too. It is a big step above anything dv related which is 4:1:1 color space. If you ever drop your video signal down to dv quality you will take a big hit picture quality wise. Another device is the original AJA IO which connects via firewire and gives you component i/o as well as s-video, composite and digital component as well. The AJA IO's are selling on ebay for $600.00 - $750.00. They were around $2500.00 originally. You could also use an AJA LA which is basically the analog side of the IO and they are a little cheaper. Blackmagic multibridge is another product that is similar. These are all pro level equipment. You will need FCP.
    http://www.aja.com/html/productsIoIo.html
    http://www.matrox.com/video/en/products/mxo2/output/

  • Connect iMac MiniDisplay port to VGA or composite projector, PLEASE!??

    I have an iMac and an Epson Powerlite 77c projector I am wanting to link up. I need to go from the minidisplay port in the back of the imac to either composite or vga (female) connection. Apple has a minidisplay to vga adapter which i'm assuming will work.
    Epson Projector connections - VGA (female,) Video and audio in (composite), S-video
    iMac display connections- Mini display port
    Would it be better to use vga or composite for watching movies and using the computer through the projector?
    And...if i am thinking of the correct cable i'm also going to need an extension to actually get to the monitor. Since the minidisplay to vga cable is female and so is the vga input on the projector, Is there such thing as male-male vga cable and would it send the signal properly from the imac to the projector?
    Is there any other way to link these two devices up? Component switch or wireless transmitter?
    Thanks

    Apple has a minidisplay to vga adapter which i'm assuming will work.
    Yes, it will work fine!
    Would it be better to use vga or composite for watching movies and using the computer through the projector?
    The iMac is not able to connect via composite cable at all. VGA, Mini Display Port, and HDMI (through adapter) are the only types of cabling that will work. Keep in mind that composite is the absolute WORST video quality you could hope for. Here is the scale from worst to best...
    Composite, S Video, Component, VGA, DVI/HDMI/MDP (these last 3 are essentially the same quality)
    Is there such thing as male-male vga cable and would it send the signal properly from the imac to the projector?
    Yes, they are extremely common, and it will work fine. I would be surprised if there wasn't an extra cable of this sort already in the projector bag. It is standard gear for all of my office's projector sets.
    Is there any other way to link these two devices up? Component switch or wireless transmitter?
    The best connection you can make with the powerlite 77c is through VGA.

  • Fault handling for Mediator component

    I am trying to capture all the system and business faults of the composite and email the details to system groups. I am having issues with the fault policy file and get the following error. My Composite is made up of Web Services ---> Mediator ---->DBAdapter
    INFO: FaultPoliciesParser.parsePolicies ------->Begin Parsing of policy file
    <Jun 18, 2012 3:48:58 PM EST> <Error> <oracle.soa.mediator.common.error.recovery> <BEA-000000> <Failed to recover the mediator fault.
    oracle.fabric.common.FabricException: Missing fault policy: TESTFaultPolicy
    at oracle.integration.platform.faultpolicy.RecoverFault.resolveToActionRef(RecoverFault.java:101)
    at oracle.integration.platform.faultpolicy.FaultRecoveryManagerImpl.resolveToActionRef(FaultRecoveryManagerImpl.java:151)
    at oracle.tip.mediator.common.error.recovery.MediatorRecoveryHandler.resolveToActionRef(MediatorRecoveryHandler.java:158)
    at oracle.tip.mediator.common.error.ErrorMessageEnqueuer.enqueue(ErrorMessageEnqueuer.java:174)
    at oracle.tip.mediator.dispatch.db.DeferredDBWorker.handleError(DeferredDBWorker.java:117)
    at oracle.tip.mediator.common.listener.DBWorker.process(DBWorker.java:114)
    at oracle.tip.mediator.common.listener.AbstractWorker.run(AbstractWorker.java:83)
    at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
    at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
    at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    I am attaching the following files
    FAULT-POLICIES.XML*
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <faultPolicy version="2.0.1" id="TESTFaultPolicy">
    <Conditions>
    <faultName>
    <condition>
    <action ref="ora-java"/>
    </condition>
    </faultName>
    </Conditions>
    <Actions>
    <Action id="ora-java">
    <javaAction className="test.EmailFaultHandler"
    defaultAction="ora-human-intervention">
    </javaAction>
    </Action>
    </Actions>
    </faultPolicy>
    </faultPolicies>
    FAULT-BINDINGS.XML_
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicyBindings version="2.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy">
    <composite faultPolicy="TESTFaultPolicy"/>
    <component faultPolicy=" TESTFaultPolicy">
    <name>HandleRealTimeRequests</name>
    </component>
    </faultPolicyBindings>
    I am yet to figure out how to capture the fault and email to the groups in EmailFaultHandler.java file below
    EmailFaultHandler.java_
    package test;
    import com.collaxa.cube.engine.fp.BPELFaultRecoveryContextImpl;
    import java.util.Map;
    import oracle.integration.platform.faultpolicy.IFaultRecoveryContext;
    import oracle.integration.platform.faultpolicy.IFaultRecoveryJavaClass;
    public class EmailFaultHandler implements IFaultRecoveryJavaClass {
    public void handleRetrySuccess(IFaultRecoveryContext iFaultRecoveryContext) {
    public String handleFault(IFaultRecoveryContext iFaultRecoveryContext) {
    //Print Fault Meta Data to Console
    System.out.println("****************Fault Metadata********************************");
    System.out.println("Fault policy id: " + iFaultRecoveryContext.getPolicyId());
    System.out.println("Fault type: " + iFaultRecoveryContext.getType());
    System.out.println("Partnerlink: " + iFaultRecoveryContext.getReferenceName());
    System.out.println("Port type: " + iFaultRecoveryContext.getPortType());
    System.out.println("**************************************************************");
    //print all properties defined in the fault-policy file
    System.out.println("Properties Set for the Fault");
    Map props = iFaultRecoveryContext.getProperties();
    for (Object key: props.keySet())
    System.out.println("Key : " + key.toString() + " Value : " + props.get(key).toString());
    //Custom Code to Log Fault to File/DB/JMS or send Emails etc.
    return "Manual";
    Please suggest
    Thanks
    Edited by: user5108636 on 18/06/2012 00:20
    Edited by: user5108636 on 18/06/2012 00:20

    By the way, I managed to break through a little further. Now I am past this fault policy error. However, the java fault handler class is giving ClassNotFoundException. The way I added the java file (test.EmailFaultHandler) through JDeveloper in the composite project (Right click --> New ---> Java file). How do I add this to the classpath. I thought it automatically gets added to the SOA composite project classpath.
    Please suggest.
    INFO: FaultPoliciesParser.parsePolicies ------->Begin Parsing of policy file
    <Jun 19, 2012 10:58:01 AM EST> <Warning> <oracle.soa.mediator.monitor> <BEA-000000> <Venkat:Inside Synchronized block with msg id :CCA40B60B9A911E1BF115F9190ABA14C>
    <Jun 19, 2012 10:58:01 AM EST> <Warning> <oracle.soa.mediator.monitor> <BEA-000000> <Venkat:Inside Synchronized block with msg id :CCA40B60B9A911E1BF115F9190ABA14C>
    <Jun 19, 2012 10:58:01 AM EST> <Warning> <oracle.soa.mediator.monitor> <BEA-000000> <Venkat:Inside Synchronized block with msg id :CCA40B60B9A911E1BF115F9190ABA14C>
    <Jun 19, 2012 10:58:01 AM EST> <Error> <oracle.soa.mediator.common.listener> <BEA-000000> <Enququeing to Error hospital successful...>
    <Jun 19, 2012 10:58:05 AM EST> <Error> <oracle.soa.mediator.common.error.recovery> <BEA-000000> <Error while loading "test.EmailFaultHandler" java class specified for action "ora-java".>
    <Jun 19, 2012 10:58:05 AM EST> <Error> <oracle.soa.mediator.common.error.recovery> <BEA-000000> <Failed to recover the mediator fault.
    java.lang.ClassNotFoundException: test.EmailFaultHandler
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:43)
    at oracle.tip.mediator.common.error.recovery.CustomJavaHandler.execute(CustomJavaHandler.java:69)
    at oracle.tip.mediator.common.error.recovery.MediatorRecoverFault.recover(MediatorRecoverFault.java:73)
    at oracle.tip.mediator.serviceEngine.MediatorFacadeService.recoverFault(MediatorFacadeService.java:988)
    at oracle.integration.platform.faultpolicy.RecoverFault.recoverAndChain(RecoverFault.java:161)
    at oracle.integration.platform.faultpolicy.RecoverFault.resolveAndRecover(RecoverFault.java:124)
    at oracle.integration.platform.faultpolicy.FaultRecoveryManagerImpl.resolveAndRecover(FaultRecoveryManagerImpl.java:123)
    at oracle.tip.mediator.common.error.recovery.MediatorRecoveryHandler.recover(MediatorRecoveryHandler.java:116)
    at oracle.tip.mediator.common.error.ErrorDBWorker.handleMessage(ErrorDBWorker.java:37)
    Thanks

  • Iphone4 video output via composite av cable

    Hi, this questions probably been asked loads of times but I haven't found an answer , hence , can someone please tell me how to switch on video out on iPhone 4 on 5.1 , I bought composite cable but no video just audio . Can any1 out there help. Thank you

    iphone4 and composite and component cable don't support mirror so they
    only display images when an supported app is being used like youtube or the video app and the likes
    use both the composite and the component cable with my iphone4 on 5.1 and both works fine
    so do my ipod touch with 5.1 and ipad2 with 5.1

  • Is there a way of recording component video output to a MacBook Pro

    I have a Sony DXC990P video camera head i.e. it has no recorder. It has several output of which component video is regarded as the highest quality. Is there a way recording this output with a MacBook Pro?
    T5G5

    The matrox MXO2 is likely what you are referring to. It would be an extremely useful i/o device for you if the price is acceptable. It will have good resale value for a few years too if you ever wanted to get rid of it. With your camera's chip set and resolution of 850 lines you can capture via component to 4:2:2 color space by editing in a codec like DVCPRO 50 which is very efficient and looks great too. It is a big step above anything dv related which is 4:1:1 color space. If you ever drop your video signal down to dv quality you will take a big hit picture quality wise. Another device is the original AJA IO which connects via firewire and gives you component i/o as well as s-video, composite and digital component as well. The AJA IO's are selling on ebay for $600.00 - $750.00. They were around $2500.00 originally. You could also use an AJA LA which is basically the analog side of the IO and they are a little cheaper. Blackmagic multibridge is another product that is similar. These are all pro level equipment. You will need FCP.
    http://www.aja.com/html/productsIoIo.html
    http://www.matrox.com/video/en/products/mxo2/output/

  • Problems exposing a Business Rule in a composite as a Web Service

    Hi
    I am currently facing a problem invoking a Composite from within the BPEL.
    Scenario: I have created a composite which has one Business Rule Component. The composite deploys successfully to the Web Logic Server. (Successful compilation: 0 errors, 0 warnings). However there is a number of "ignoring messages" which do not affect the deploy. These ignoring messages could be the souce of my problem which I will explain later. Example of an ignoring message
    ignoring C:\Work\Project\ValidationProcess\Rules\xsd\PDQuality_DecisionService_1Types.xsd; not on source path
    Now if I create a new project composite which has a BPEL component. The BPEL component has a partner link to call the Composite mentioned above. When assigning variables i.e Input variables to the partnerlink service, I notice that the payload of the invoke variables ( TO Section) has an error "Exception - Problem building schema!"
    To prove that the partner service is working. I can view the WSDL in Internet Explorer. I can use the Eclipse WTP workbench to invoke the service ( Composite with Rules ). Now could it be that I am getiing this problem because initially when deploying the service (Composite with Rules) I was getting these ignoring messages and could it be that I should add all the ignoring source to the source path.... OR am I just embarking on a tangent!
    Any words of wisdom would be much appreciated.. Thanks in advance
    Using SOA 11G - 11.1.1.2 (WebLogic Server 10.3.2) and Jdev 11.1.1.2.0

    hi all,
    im also facing the same above issue.
    i created a 11g composite with BusinessRules component.
    when invokin that composite from 10g BPEL process ..im also facing the above mentioned issue
    "Exception - Problem building schema!""
    any help is appreciated
    thanks,
    karthik
    Edited by: karthik !! on Mar 11, 2010 4:00 PM

  • Camera to take videos as well as stills. Light.. What is composite output?

    Light to see subjects in low natural light can be built in, or a jack to add a separate light. Prefer less expensive to more expensive. Any recommendations?
    Separate question--What is the difference between a camcorder that has just composite output vs one that also has  component output?

    Garydad,
    Composite video and component video are both analog video signals.  Composite is the older standard definition signal that you have commonly seen output over a single wire with a yellow RCA connector, along with the separate audio connections.  Component video was the older analog high definition signal that was output over three separate wires with different color RCA connectors, along with the separate audio connections.
    Are you looking for more of a still camera or for more of a camcorder?
    If this is a time sensitive-matter, additional support options are available at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • How can I connect my iMac to a TV for playback of videos? My TV does not have HDMI.

    How can I connect my iMac to a TV for playback of videos? My TV does not have HDMI.

    You need to find out what video out you have on your iMac, and what kind of video inputs there are on your TV.
    It will help to know exactly what model iMac and exactly what make/model TV you have.
    Depending on the exact model iMac you have, it may have miniVGA, miniDVI, miniDisplayPort or Thunderbolt output.  Your TV may have composite, S-video, component, DVI, VGA or HDMI inputs.  Once you confirm what kind of ports your iMac and TV have, then we can probably suggest the correct cable or adapter so you can connect them to each other.

  • Mac Mini (2009) to video output - surely it must be possible?

    I've just bought a Mac Mini to replace my Apple TV, in an attempt to get a single Mac running my entire home entertainment setup. I have a 5-USB Mac Mini, 2.26 GHz core 2 duo, 4 GB RAM, 120 GB HD.
    I'm trying to connect to a 6-year-old Hitachi Illumina projector. My first attempt was with Apple's Mini-DVI to VGA adapter, and whilst this worked, it turns out that my widescreen projector (for reasons known only to Hitachi) doesn't advertise any widescreen resolutions - it's 1024x768 or similar all the way. (The projector's native resolution is WVGA at 854x480). I've tried SwitchResX, but I can't get the projector to do anything other than 4:3 or similar no matter what I try.
    Next, I tried Apple's Mini-DVI to Video adapter. Unfortunately, I didn't read the description for that adapter, so didn't see that it doesn't work with the Mini. I just assumed that since the Mini has Mini-DVI, and since it's the ideal machine for a media center, it would work. But it doesn't - the adapter isn't detected by the Mini at all.
    So my question is: is there any way to get video (either composite or S-Video) out of the Mini? Would an Apple DVI to Video adapter, plugged into the Mini's "Mini-DVI to DVI" adapter, do the job?
    My projector has Composite, S-Video, Component and VGA connectors on the back (no HDMI). There has got to be a way to get this to work... any ideas much appreciated!
    Message was edited by: David Addey

    I notice you mention being limited to a 4:3 resolution with the VGA connection. If you use composite or S-video you will be using an SD signal, which will normally just be 640x480, which is a 4:3 aspect ratio. The VGA and component connections should offer the highest resolutions. What is the model number of your projector, as I can find very little information about the Illumina series - and what I can find relates to 4:3 only.

  • Suggestion for a Video Monitor For FCP

    I am looking for a video monitor to use with FCP. The Sony PVM-14L2 13" has been recommended. Is anyone familiar with this monitor or do you have a monitor which is working well for you that you would recommend.
    1) Should I be looking for anything key features not listed below?
    2) Will I need any other hook ups to make this work with my system?
    (Right now I am using a JVC SR-VS30U Dual Deck. A firewire from the computer to the deck and component from the deck to to t.v. the deck also has s-video)
    3) When I move into High Definition will this monitor work?
    Key Features of the Sony PVM-14L2 13"
    Variety of Input Options
    The monitor accepts composite, S-video, component and RGB signals standard without options. Serial Digital signals can be viewed with the optional
    (with audio) or BKM-120D (without embedded audio). Even
    , Sony's version of Fire Wire can be displayed with the optional BKM-155DV board.
    Beam Current Feedback Feature
    In studio environments, monitors tend to be left on for long periods. This practice leads to white-balance drift and unstable color reproduction. The Beam-Current Feedback circuit corrects for drift over long-term usage of the monitor.
    Professional Set-up Features
    Calibrating monitors assures that each display is showing correct colors which will match any other correctly calibrated display. The PVM-14L2 has set-up functions like Blue-Gun, H/V Delay, and selectable color temperature for these critical calibrations.

    Sounds like a great choice as long as the size works for you. A small truly high-res monitor is much more useful than a big impressive soft one for analysis monitoring.
    1) I don't think you need anything else unless the JVC thing doesn't work out. In that case you can try your camcorder, or a capture device such as ADS Pyro, Matrox MXO, or one of the Aja or Decklink cards. Depends...
    2) JVC SR-VS30U - I don't know, there are a lot of devices that won't simply pass FireWire through, including many or most DVD recorders. Your best bet is to try it and monitor it on whatever you have.
    If you're on NTSC you'll have to pay attention to the black setup. Many consumer digital devices these days won't put in the 7.5IRE setup for North America.
    That's OK as long as you aren't using it to do analog conversions. If you can get FCP bars through the thing and set the monitor up properly to them, you should be OK. I'm sure the monitor can be set to 0IRE in menus if need be.
    3) It won't show you an HD signal. If you're using the MXO it will give you a realtime SD downconvert to monitor. But that monitor won't display anything but NTSC and PAL. If it did I would probably say that 13" is too small.

  • IMac MiniDisplay to VGA stops sending signal to Analog Way switcher

    We have 3 iMac's, all running Yosemite (10.10.1), that we've recently installed with MiniDisplay to VGA adapters. We've run the VGA's into individual Analog Way switchers that also have Apple TV's and DVD players hooked up to them as well. The issue we're having is that though the Mac sees the "secondary display", the switcher is unable to see signal after waking the iMac from sleep. If we unplug and replug the MiniDisplay port adapter, it will re-detect the displays and the switcher will see signal again.
    We are also not able to go up to 1920x1080 even though the switcher supports it and other devices send it.
    Any help and/or suggestions would be greatly appreciated.
    Thanks,
    - James

    Apple has a minidisplay to vga adapter which i'm assuming will work.
    Yes, it will work fine!
    Would it be better to use vga or composite for watching movies and using the computer through the projector?
    The iMac is not able to connect via composite cable at all. VGA, Mini Display Port, and HDMI (through adapter) are the only types of cabling that will work. Keep in mind that composite is the absolute WORST video quality you could hope for. Here is the scale from worst to best...
    Composite, S Video, Component, VGA, DVI/HDMI/MDP (these last 3 are essentially the same quality)
    Is there such thing as male-male vga cable and would it send the signal properly from the imac to the projector?
    Yes, they are extremely common, and it will work fine. I would be surprised if there wasn't an extra cable of this sort already in the projector bag. It is standard gear for all of my office's projector sets.
    Is there any other way to link these two devices up? Component switch or wireless transmitter?
    The best connection you can make with the powerlite 77c is through VGA.

Maybe you are looking for

  • Default password for PAP2T

    I have an unlocked PAP2T. I am trying to get into the web interface. My ISP states that the default username and password is admin / admin but it is not working. Does anyone have any suggestions or is there perhaps a different default password than t

  • SNP Planned order not following resource bucket capacity/factory calendar

    Hi gurus, SCM 5.0 I am running SNP heuristics for a product and expecting planned orders for it.  It has corresponding production data structure and multimixed resource.  The resource has an assignd factory calendar and SNP bucket capacity.  The buck

  • Itunes doesnt sync videos to iphone 4s

    I am able to view the itunes videos in my computer but not able to sync to my iphone 4s.  I have checked the format is in mp4 and dimension is 640x480. Why is it not working?  It used to be fine before all the OS upgrading, can apple do something abo

  • Inferior Sound Quality

    Is anyone else finding that the matched version is inferior quality to your original ripped version?  I have a pair of Adam A7 monitors that are pretty revealing. On a quick listen (15min) I found these obvious differences: The iTunes Match version o

  • Show serverside directory contents in applet

    Hello, On my website I want an applet which shows the files which are in the same directory as where the class file is. So it shows serverside directory contents of where my website is located. The most topics here about listfiles are all about listi