Funny problem with schema pattern regular expression

I have following element in my schema:
<xsd:element name="lD">
     <xsd:simpleType>
          <xsd:restriction base="xsd:string">
               <xsd:pattern value="\d{5,8}" />
          </xsd:restriction>
     </xsd:simpleType>
</xsd:element>then in the XML, I have:
<ID>
123456789
</ID>funny thing is the schema validates the value successfully. seems the upper bound of 8 the in the regular expression does not have any effect. however, 1234 would fail.
i looked up the schema prime on W3C, it specifies that {n,m} means at least n and at most m.
any idea anyone?
I have using Xerces 1.4.4.
Thanks

I tried the example you mentioned and it seemed to
work for me. It validated both the upper bound and
the lower bound. Looking at the Manifest file in
xerces jar, it looks like I have version 2.5.0yes, I know. Xerces 2 works, but Xerces 1 has the above problem. If you get Xerces 1.4.4 from xml.apache.org, you will see the problem.
I can not use Xerces 2 in our production environment yet.

Similar Messages

  • Problem with a pattern

    I have a problem with a pattern.
    I want to put a patter to validate an e-mail but i don´t find the way to do it

    Hi Veloki,
    You can drag and drop custom "email Adress" object from Custom Object Library. It includes the script for email validation in the validate event of email area.
    // Validate the email address.
    var r = new RegExp("^[a-z0-9_\\-\\.]+\\@[a-z0-9_\\-\\.]+\\.[a-z]{2,3}$"); // Create a new Regular Expression Object.
    // Set the regular expression to look for an email address in general form.
    var result = r.test(this.rawValue); // Test the rawValue of the current object to see
    // if it fits the general form of an email address.
    if (result == true) // If it fits the general form,
    true; // all is well.
    else // Otherwise,
    false; // fail the validation.
    Asiye

  • Funny problem with the mapping

    Dear All,
    I am facing with a funny problem with the mapping.
    I am working on a scenario in which Invoice IDOC created in R/3 will be posted to XI and then in XI, mapping are done to create an XML file out of that IDOC.
    In the Idoc, there is a segment E1EDKA1 which is getting created multiple times for different partners alongwith their details. The fields in E1EDKA1 segment are: PARVW,PARTN LIFNR etc.
    In the output I just want LIFNR number where PARVW = RE or RS.
    I have done the required mapping and when I am testing the mapping its giving me the required results correctly but when I make this scenario live then in real-time, the output XML file has no value for LIFNR.
    Can anybody guide me out why is it happening tht during mapping testing its giving the correct result but at real time the mapping is returing no value.
    Warm Regards,
    N.Jain

    Hi Nishant,
    Are you sure the test data which you are using while testing the mapping in IR and the one which comes when you test real time is the same?
    The data which comes real time. Copy the source payload and then test in mapping. See if you get the right data which you expect. If you do then theres some problem.
    Now also go to the same message and in trace you can find out the GUID of the mapping program which is used.
    Go to RWB - Last button..not sure what the name is .. something similar to Cache.. Find your mapping program and see if the GUID Matches. If the GUID matches then it is okay.
    Also try to do the following..
    Reactive the MM/IM.
    Go to ID. Make some dummy change in Interface determination and then activate it.
    Check the cache notification to make sure if the cache is updated.
    If the above doesnt help you let us know.
    Regards,
    Sumit

  • Problem in creating a Regular Expression with gnu

    Hi All,
    iam trying to create a regular expression using gnu package api..
    gnu.regex.RE;
    i need to validate the browser's(MSIE) userAgent through my regular expression
    userAgent is like :First one ==> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
    i wrote an regular expression like this:
    Mozilla.*(.*)\\s*(.*)compatible;\\s*MSIE(.*)\\s*(.*)([0-9]\\.[0-9])(.*);\\s*(.*)Windows(.*)\\s*NT(.*)\\s*5.0(.*)
    Actaully this is validating my userAgent and returns true, my problem is, it is returning true if userAgent is having more words at the end after Windows NT 5.0 like Second One ==> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0) Testing
    i want the regularExpression pattern to validate the First one and return true for it, and has to return false for the Second one..
    my code is:
    import gnu.regexp.*;
    import gnu.regexp.REException;
    public class TestRegexp
    public static boolean getUserAgentDetails(String userAgent)
         boolean isvalid = false;
         RE regexp = new RE("Mozilla.*(.*)\\s*(.*)compatible;\\s*MSIE(.*)\\s*(.*)([0-9]\\.[0-9])(.*);\\s*(.*)Windows(.*)\\s*NT(.*)\\s*5.0(.*)");
         isvalid = regexp.isMatch(userAgent);
         return isvalid;
    public static void main(String a[])
         String userAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)";
         boolean regoutput = getUserAgentDetails(userAgent);
         System.out.println("***** regoutput is ****** " + regoutput);
    }please help me in solving this..
    Thanks in Advance..
    thanx,
    krishna

    Ofcourse, i can do comparision with simple string matching..
    but problem is the userAgent that i want to support is for all the MSIE versions ranging from 5.0 onwards, so there will the version difference of IE like MSIE 6.0..! or MSIE 5.5 some thing like that..
    any ways i will try with StringTokenizer once..!
    seems that will do my work..
    Thanks,
    krishna

  • Problem with phonenumber pattern

    Hello,
    I've got a problem with my display and validation pattern for my phone numbers.
    In Holland we have two sorts of phone numbers:
    Always 10 numbers, but some regions have a 3 digit area code,
    other regions a 4 digit area code.
    Example:
    012-3456789
    0123-456789
    This is also the way I want my users to enter the data.
    I want to display them as followed:
    012-3456789 --> 012 - 345 67 89
    0123-456789 --> 0123 - 456 789
    My display pattern right now is: text{999 - 999 99 99}|text{9999 - 999 999}
    My edit pattern is: text{999-9999999}|text{9999-999999}
    My validation pattern is: text{999-9999999}|text{9999-999999}
    (With a pop-up message to fill in 10 numbers, area code seperated from the rest by a dash, as in the example)
    The problem is that the validation works fine, but it always transforms the phonenumber to the first option (999 - 999 99 99).
    How can I fix this?
    Greetings and thanks in advance,
    Sterre

    Hi Veloki,
    You can drag and drop custom "email Adress" object from Custom Object Library. It includes the script for email validation in the validate event of email area.
    // Validate the email address.
    var r = new RegExp("^[a-z0-9_\\-\\.]+\\@[a-z0-9_\\-\\.]+\\.[a-z]{2,3}$"); // Create a new Regular Expression Object.
    // Set the regular expression to look for an email address in general form.
    var result = r.test(this.rawValue); // Test the rawValue of the current object to see
    // if it fits the general form of an email address.
    if (result == true) // If it fits the general form,
    true; // all is well.
    else // Otherwise,
    false; // fail the validation.
    Asiye

  • Pattern regular expression issue

    I am trying to validate the file names , the file names can be alpha numeric and can have '_' '-''.' symbols alone
    my code dunno why but my pattern does not work for test# file name
    Pattern _namePattern = Pattern.compile("^\\w\\s-//.]+$");
    private boolean validateFilename(String name) {
              boolean valid = true;
              if (this._namePattern != null) {
                   valid = !(this._namePattern.matcher(name).matches());
              if (valid) {
                   valid = (name.indexOf("%2f") < 0) && (name.indexOf(58) < 0);
              return valid;
         private boolean validateFilenames(File files) {
              if (this._namePattern == null) {
                   return true;
              boolean valid = true;
              if (!(validateFilename(files.getName()))) {
                   System.out.println("ERROR.INVALID_FILENAME"
                             + "The following file contains invalid characters: "
                             + files.getName());
                   valid = false;
              } else {
                   System.out.println("Valid file name " + files.getName());
              return valid;
         }

    i have gone through this link its the same as the pattern API the problem is i have tried so many expressions now that i have lost all of it :(
    Ram asked:
    What was the input string you used to test the above expression?i tried with test it fails for expression [\\w._-]+$so i used negate sight as i am doing a inverse logic in the code and it worked for test
    [^\\w._-]+$now if i tested with a tes#t it still shows a valid string which is not correct
    with the space literal it works for strings having spaces but when i have a input test #test it fails
    I might be sounding too stupid but the matching logic is already present in a third party jar code i don't want to change the logic which i posted in my first i just want to change the regular expression so that it does not allow file names with any of the special characters

  • [solved] Need a little help with sed and regular expressions

    Hello!
    I am shure this is something easy for most of you
    I want to make a script, which converts filenames of my ripped MP3s (replaces '_' with spaces, removes leading track numbers...)
    But I have some problems:
    j=$(echo $j | sed 's/_\+/ /g')
    j=$(echo $j | sed 's/^[0-9]{0,3}//g')
    j=$(echo $j | sed 's/[^ ]-[^ ]/ - /g')
    j=$(echo $j | sed 's/_\+/ /g') << this is working fine (converts all "_" to spaces)
    j=$(echo $j | sed 's/^[0-9]{0,3}//g') << is NOT working, why??
    For Example in "01-somebody_feat_someone-somemusic.mp3" the leading "01" number is NOT being removed..
    j=$(echo $j | sed 's/[^ ]-[^ ]/ - /g') << how can I insert spaces before and after the "-"?
    So that "someone-somemusic" becomes "someone - somemusic" (but only where "-" is surrounded by letters)
    Last edited by cyberius (2011-07-27 18:50:54)

    For sed, you must escape { and } to use them as you want (just slap a \ before them).
    For the last expression, capture the letter before/after the dash -- use \( and \) -- and then substitute it for something like "\1 -" and then "- \1". You'll want to split this into two pieces, one for the front and one for the back so you can get "somemusic -someband" the way you want without a bunch of cases.
    Edit: Or, you could just do a replace for "-" to be " - " and then have another expression to reduce spaces. I see you've used \+ before, so I'm guessing you can figure that out
    Also, sed has the -e switch so you can do multiple different expressions with one invocation.
    Also (also), have you looked into something like Picard with automatic track renaming? You can even customize how they are renamed.
    Edit (2): Also^3, check out prename. There are different versions, ones which use PCRE and ones that use other standards, but it is for renaming files based on regular expressions, which is what you're doing. In any case, you might want to put you script into the User made scripts thread when you feel more comfortable and get some more critiquing, if you're interested.
    Last edited by jac (2011-07-26 23:13:27)

  • Problem with date pattern

    Hi all,
    I have a little maddening problem with oracle.jbo.domain.Date.
    I have a viewObject with an attribute (fechaCompra) type Date and I need the time too so in controlHints I have defined:
    format type: Simple Date
    Format: yyyy-MM-dd 'at' hh:mm:ss
    Right, on runTime now i see ok the data and in the inputDate appears the calendar and the hour .
    But when I take the value of this attribute, to call a void that takes a oracle.jbo.domain.Date type, raises an error when parses the value of the atribute.
    All this doesn't happen when in the view object the controlHints are defined like this:
    format type: Simple Date
    Format: yyyy-MM-dd
    Any idea?
    Thanks in advance,
    Rowan

    hello,
    My guess would be that when you drop your formatted date into the methode the parse function is called from String to date, this work with no time attached.
    But fails with the time attached. I would double check the specific class you pass to each method to be sure they are correct.
    hat you mention parse gives an even bigger hint that you are using the parse function from oracle.jbo.domain.Date, which takes a string.
    This function will fail with your custom patterns.
    //get the value
    String value = .....
    //Not 100% sure if the at needs to be escaped or not
    DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd at hh:mm:ss");
    //Prolly needs a try catch, writing this by hand
    java.util.Date utilDate = sdf.parse(value);
    java.sql.Date sqlDate = new java.sql.Date(utilDate.getTime());
    oracle.jbo.domain.Date jboDate = new oracle.jbo.domain.Date(sqlDate);
    //pass to your method-Anton

  • Design flaw in overloading? Problem with visitor pattern

    I have been trying some implementations of the Visitor pattern in Java and have encountered a problem with overloaded methods in Java. It seems that the caller (client) of a overloaded method decides what implementation of that method is chosen. I find that strange from an OO / encapsulation point of view and it gets me into problems when using Visitor. This code shows my problem:
    // a class with overloaded methods
    public class OverLoadingTest {
         public void print(String s) {
              System.out.println("This looks like a String to me:");
              System.out.println("\"" + s + "\"");
         public void print(Object o) {
              System.out.println("This looks like an Object to me:");
              System.out.println("\"" + o + "\"");
    //a client for that class
    public class OverLoadingTestClient {
         public void test() {
              OverLoadingTest test = new OverLoadingTest();
              Object o1 = "String in an Object reference";
              String s1 = "String in a String reference";
              test.print(o1);
              test.print(s1);
         public static void main(String[] args) {
              new OverLoadingTestClient().test();
    //And the output is:
    This looks like an Object to me:
    "String in an Object reference"
    This looks like a String to me:
    "String in a String reference"
    //The output I would have expeced (wanted):
    This looks like a String to me: //it is a String!
    "String in an Object reference"
    This looks like a String to me:
    "String in a String reference"
    Why is this? Is there a work around?

    The specific method is decided on in compile time and by the client of that method, not the provider. I'd expect the client to just invoke the method and let the privider figure out what implementation to choose. Whatever the client thinks that he is providing as argument types.
    I am implementing a slightly different version compared to http://ootips.org/visitor-pattern.html. I find implementing "v.visit(this);" for every subclass of the Visisted superclass strange. Why an abstract method "accept(Visitor v);" when all subclasses will iplement it in the same way ("v.visit(this);")?
    Daan

  • Problems with Factory pattern

    Sorry... I know this topic has been done to death but I still have some questions.
    In my development, I keep encountering a recurring problem that I believe should be solved by the 'factory pattern'. (Note: I'm not a patterns nut so I am only guessing about the correct pattern).
    Here is the problem:
    I develop an abstract base class. I extend the base class with several subclasses. Exterior objects use the instances via a base class reference and I don't want to them to have to know which is the correct subclass or how to create the instance.
    My solution is to make a create(param, param,...) method in the base class and using the param(s) construct the instance something like:static Foo create(int type)
    Foo instance = null;
    String className = "com.myco.foos.DefaultFoo";
    if(CONST_A == type)
      className = "com.myco.foos.FooA";
    else if(CONST_B == type)
      className = "com.myco.foos.FooB";
    {on and on...}
    {using reflection create a new instance from the className String}
    return instance;
    }The obvious problem with the create() method is that it becomes a maintenence point and I don't like the idea of a base class knowing about subclasses.
    Anyone know better a solution? Comments?
    Thanks in advance.

    Yes, that is the Factory pattern you describe. The client programs are going to call your createFoo() method and get back an instance of a subclass of Foo. Typically this pattern is used where there is some external entity that determines what subclass will be returned -- for example a system property -- and the client programs call createFoo() with no arguments. In this case reflection is used to create the instance, and your base class does not need to know anything about any subclasses.
    However, if your client programs can influence the choice of subclass, then they will have to pass some kind of parameter into createFoo(). At this point, createFoo() requires some decision logic that says "create this, or that, depending on the input parameter". And if that parameter is simply a code that enables the client programs to say "Give me a ChocolateFoo instance", then returning "new ChocolateFoo()" is the most straightforward design. But in this case, why can't the client program do that?
    If you don't like the base class having to know about subclasses (and you shouldn't be happy if it does), then you could have a helper class -- FooFactory -- that contains only the static method createFoo(). This class would know about Foo, and about any of its subclasses that it can produce instances of. It's still a maintenance point, no avoiding that, but at least it is off by itself somewhere.

  • I am having a problem with Adobe Presenter Video Express locking up my PC.  It requires a complete reboot to kill the program.  Anyone else?

    I recently installed Presenter 10 and the Presenter Video Express locks up my PC.  I can't even end with the task manager.  I must force my PC to shut down.  Anyone else having a problem with Video Express?

    Hm, that was my silver bullet. Other than doing an uninsall and then installing Presenter again, you may need to reach out to Adobe and see if they can identify what could be causing this.

  • Problem with schema processor

    Hello,
    I'm using the newest xml xdk (9.2.0.3.0) for windows. I have the following test example for the schema-processor
    <?xml version="1.0" encoding="UTF-8"?>
    <REPORT ID="4711" xmlns="http://www.oracle.com/REPORT" xmlns:COMOD="http://www.oracle.com/REPORT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oracle.com/REPORT example.xsd">
    <Module>
              <FELDA MODULE_ID="104">FELDA
                   <FELDB MODULE_ID="4711">Test</FELDB>
              </FELDA>
              <FELDA MODULE_ID="105">hkfjdn
                   <FELDC MODULE_ID="4811">test2</FELDC>
              </FELDA>
              <FELDA MODULE_ID="106">
                   <FELDB MODULE_ID="4576">fhgjf</FELDB>
                   <FELDC MODULE_ID="3457">tzdhs</FELDC>
                   fhgjdfl
              </FELDA>
              <FELDA MODULE_ID="103">FELD_VALUE</FELDA>
    </Module>
    </REPORT>
    and the corresponding xsd-file
    <?xml version="1.0" encoding="UTF-8"?>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.oracle.com/REPORT" xmlns:REPORT="http://www.oracle.com/REPORT" elementFormDefault="qualified">
         <complexType name="FELDAType" mixed="true">
              <choice minOccurs="0" maxOccurs="unbounded">
                   <element name="FELDB" type="REPORT:FELDBType"/>
                   <element name="FELDC" type="REPORT:FELDCType"/>
              </choice>
              <attribute name="MODULE_ID" type="string" use="required"/>               
         </complexType>
         <complexType name="FELDBType">
              <simpleContent>
                   <extension base="string">
                        <attribute name="MODULE_ID" type="string" use="required"/>
                   </extension>
              </simpleContent>
         </complexType>
         <complexType name="FELDCType">
              <simpleContent>
                   <extension base="string">
                        <attribute name="MODULE_ID" type="string" use="required"/>
                   </extension>
              </simpleContent>
         </complexType>
         <complexType name="ModuleType">
              <sequence>
                   <element name="FELDA" type="REPORT:FELDAType" minOccurs="1" maxOccurs="unbounded"/>
              </sequence>
         </complexType>
         <element name="REPORT">
              <complexType>
                   <sequence>
                        <element name="Module" type="REPORT:ModuleType"/>
                   </sequence>
                   <attribute name="ID" type="string" use="required"/>
              </complexType>
         </element>
    </schema>
    The xml-spy 44 says everything is valid, but I got the following error using the schema test example xsdtest.cpp
    In line 15 of example.xml:
    LSX-00204: Extra data at end of complex element
    LSX-00213: Only 0 occurance(s) of element "s", minimum is 1
    Here is the xsdtest.cpp
    // Copyright (c) Oracle Corporation 1999, 2000, 2001. All Rights Reserved.
    // NAME          validate.c
    // DESCRIPTION     Sample usage of C XML Schema processor
    #include <iostream.h>
    #include <string.h>
    #ifndef ORAXML_CPP_ORACLE
    # include <oraxml.hpp>
    #endif
    #ifndef ORAXSD_CPP_ORACLE
    # include <oraxsd.hpp>
    #endif
    int main(int argc, char **argv)
    XMLSchema schema;
    XMLParser parser;
    Element *root;
    xmlctx *ctx;
    char doc, uri;
    uword ecode;
    cout << "XML C++ Schema processor\n";
    if ((argc < 2) || (argc > 3))
         cout << "usage: validate <xml document> [schema]\n";
         return -1;
    doc = argv[1];
    uri = (argc > 2) ? argv[2] : 0;
    cout << "Initializing XML package...\n";
    if (ecode = parser.xmlinit())
    cout << "Failed to initialize XML parser, error " << ecode;
    return 1;
    cout << "Parsing '" << doc << "'...\n";
    if (ecode = parser.xmlparse((oratext *) doc, (oratext *) 0,
                        XML_FLAG_DISCARD_WHITESPACE))
    cout << "Parse failed, error " << ecode << "\n";
    return 2;
    cout << "Initializing Schema package...\n";
    if (ecode = schema.initialize(&parser))
         cout << "Failed, code " << ecode << "!\n";
         return 3;
    cout << "Validating document...\n";
    root = parser.getDocumentElement();
    if (ecode = schema.validate(root, (oratext *) uri))
    cout << "Validation failed, error " << ecode << "\n";
    schema.terminate();
    return 4;
    cout << "Document is valid.\n";
    schema.terminate();
    return 0;
    Could you please help. There should be a problem with mixed content in a ComplexType or with the attribute minOccurs and maxOccurs at the choice element.
    Thank you in advanced
    R|diger Brand
    ESG GmbH

    I just installed the parser and schema and
    it worked out of the bag for me.
    I'm using Java 1.3.0 :
    java version "1.3.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
    Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
    But, like the original poster, I wonder why
    these samples use the old standard?
    The readme doc says it conforms to the 2000/10 spec.
    For grins I changed report.xml and report.xsd to now reference the 2000/10 namespaces and the parser runs but reports some errors. I guess that is OK, and that somebody just needs to update the schema itself to the new standards. Still, it makes me wonder...
    Now, my problem is that I have an xml/xsd combo that it chokes on but that is another post.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Denali ([email protected]):
    Hi Karin,
    I copied report.xml and report.xsd from the context of your message body and tried them out. They both worked well with XSDSample and XSDSetSchema. The only difference, I guess, is that I am using IBM's jdk1.1.7. You might want to get a lower version of jdk, like 1.1.7 or 1.1.8 and try them out again.
    The only problem I have is the data type of "date". It seems to me that all the date types of "date/time" have not been implemented by Oracle yet.
    Cheers.
    ---Denali
    <HR></BLOCKQUOTE>
    null

  • Problem with OWB Paris (case expression)

    I've got a little problem with defining an attribute property. I've defined a simple case statement: case when LKP_IN.TEST_TAB_ID is null then 'INS' else 'UPD' end. When I validate the expression I get the following error message:
    Line 1, Col 8:
    PLS-00103: Encountered the symbol "when" when expecting one of the following:
    . ( * @ % & = - + ; < / > at in is mod remainder not rem
    <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_
    LIKE4_ LIKEC_ between || multiset member SUBMULTISET_
    The symbol ". was inserted before "when" to continue.
    Line 1, Col 50:
    PLS-00103: Encountered the symbol "THEN" when expecting one of the following:
    ; and or
    Needless to say that this worked well with OWB 10g R1. Any clue?
    Thanks in advance
    Jörg

    Hello, Jörg
    To what database are you trying to deploy your mapping? It seems that db version is pre-9i?
    If so, note that CASE statement is unavailable in PL/SQL until Oracle 9i – it’s available only in SQL (in pre-9i Oracle had different code from SQL and PL/SQL interpretation, after 9i it share interpreter code). The compilation error may appear in “ROW-based” parts of package: OWB generates code that calls CASE statement directly in PL/SQL – it cause error.
    To avoid deployment error “wrap” this expression component by some operator (order, dedup, join, set). In this case OWB pack expression along with “wrap” operator in SQL statement and package will compile.
    Where were discussion here (in forum) about using analytical function in mapping – the same approach works for CASE / DECODE if deploying to pre-9i database.
    Sergey

  • Problem with my Final Cut express HD's livetype & soundtrack programs

    Hi everyone, hope someone could help me
    In 2006 i but my Final cut Express HD for my laptop Macbook. I have used a lot, it always worked.
    I haven't used it this year and the only new thing a did to my laptop was installed the snowleopard software is now 10.6.8. But yesterday, i try to save a project in my LIVETYPE and SOUNDTRACK (programs that come with the Final Cut Express HD) it automatically close up deleting everything and appear a window saying: that quit unexpectedly and push reopen and repeat the error over and over again.
    the program (Livetype and Soundtrack) opens and are install perfectcly but it doesn't let you save or export anything it automatically close it up.
    Final cut is the only one that let you save projects.
    I have install and uninstall it many time and it still doesn't work.
    I will like to know what happens? and how can i fix it?!
    Thank you so much
    best regards
    isabella

    Thanks for your help! i try it and i thought it help, because this time the installation ask me new things like for example: my seriel number, etc. something the program didn't before.  But in the end everything is install perfectly but it repeat the same problem when i try to save a project  in livetype or soundtrack but not in final cut. This is what appears in my screen:
    Thanks again!
    regard

  • Apple TV causing problems with Airplay from Airport Express?

    I am having a problem with Airplay on my home network. I have two Airplay devices - Apple TV and an Airprot Express. I soon as both of these devices are on my wireless network Airplay starts to create all kinds of errors, delays, inability to connect and ultimately both AP devices crash.
    The AE is connected to the existing network and is only being used as an airplay device to send music to a set of speakers.
    I have looked at the knowledge base & I tried all of the following (plus every conceivable combination):
    Restored both the Apple TV & AE to factory settings.
    Checked both are on independent IPs.
    Checked all the settings on my router.
    Restarted my router.
    Changed the channel on my router (it's worth mentioning here that both devices are on a 5GHz connection).
    It's also worth noting that when I did a factory reset of everything and set the ATV up on an ethernet connection everything worked swimmingly until I unplugged the ethernet cable and connected the device to the wireless network.
    Both work independently (i.e. when the other is not connected to the wireless network), but need restarting if the two have been run at the same time.
    So - in a nut shell - it appears to me that the two devices are interfering with each other - but how?!
    Are any geniuses out there able to help?
    Thanks in advance.

    Thanks Winston. I put the APE onto the 2.4 connection. This didnt solve this issue, but then with the two devices on the different connections I changed the channels a few times and eventually I found a coblination that works! I now have a problem where the ATV doesn't wake up to AirPlay, but I feel this is most likely a separate issue.

Maybe you are looking for

  • Getting error while using as_access_pub.Create_SalesTeam API

    Hi, I am getting this error while executing this API in a procedure which is triggered from a business event. "User id 0 is invalid. The user cannot be identified in Resource Manager." The error does not occur when I execute the procedure stand-alone

  • Document Splitting problem while posting asset acquisition using F-90

    Hi, We are using ECC 6.0 with document splitting functionality and are facing problem while posting asset acquisition using F-90. The transaction entry details are as below: Document Type - KR Vendor Line Item PKey - 31 Amount - 10000 Asset Line Item

  • Datetime field overflow / String data right truncation

    Hi All, Getting the follwing erros while working with timestamp for selecting from or inserting data into DB2 through WebSphere 6.1. I am passing values like this: 2006-05-02-21.57.26.744341. The queries run fine while executing through some SQL Fron

  • Getting the UPDATEd value and its primary key

    I have two procedures, proc1 and proc2. In proc1 there is an update happening like CREATE OR REPLACE procedure proc1 as TYPE NumList IS TABLE OF employees.employee_id%TYPE; enums NumList; TYPE NameList IS TABLE OF employees.last_name%TYPE; names Name

  • Global Security Profiles

    Can somebody list out the steps to be done to create a Global security profiles. Is any document available. Please let me know. Tks.