Error: Java trying to grab DTD and I don't want it to

I have a problem. For my class we are writing a SAX application that reads in an Amazon.com XML file and tries to find the lowest price. The Amazon file is the result of a query to Amazon's database which has been saved to the hard drive (so it's not being grabbed in Java over the web). We are using SAX for this project and I started out by writing a very basic program that simply just notifies when it reaches the beginning/end of a tag just to make sure it's reading the XML file just fine. It runs great when I'm connected to the internet. However, when I'm not connected to the net I get the following error.
======================================================================
java.net.UnknownHostException: xml.amazon.com
     at org.apache.crimson.parser.Parser2.fatal(Parser2.java:3182)
     at org.apache.crimson.parser.Parser2.externalParameterEntity(Parser2.java:2870)
     at org.apache.crimson.parser.Parser2.maybeDoctypeDecl(Parser2.java:1167)
     at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:489)
     at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
     at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
     at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
     at javax.xml.parsers.SAXParser.parse(SAXParser.java:281)
     at Test.main(Test.java:22)
Exception in thread "main"======================================================================
I think it's trying to grab the DTD, but I'm not sure. Anyway, my code is extremely basic. Here's what I have:
======================================================================
import javax.xml.parsers.*;
import org.xml.sax.*;
import org.xml.sax.helpers.*;
import java.io.*;
public class Test extends DefaultHandler
  public static void main(String args[]) throws Exception
    if (args.length == 0)
      System.err.println("Usage: Test <xmlfile>");
    return;
    SAXParserFactory factory = SAXParserFactory.newInstance();
    factory.setNamespaceAware(false);
    factory.setValidating(false);
    SAXParser parser = factory.newSAXParser();
    Test t = new Test();
    parser.parse(new File(args[0]), t);
  public void startDocument()
    System.out.println("At the start of the document");
  public void startElement(String uri, String name, String qName, Attributes attrs)
    System.out.println("Found start element: " + name);
  public void endElement(String uri, String name, String qName)
    System.out.println("Found end element: " + name);
  public void endDocument()
    System.out.println("At the end of the document");
}======================================================================
I cannot turn to the teacher for help as he is just a GTF and doesn't really understand this stufff himself. He just shrugs and says it works on his machine. Anyway, how do I get it so that it will work when not connected to the internet? All I want it to do is read through the XML file. I don't need any validation or anything like that.
If it makes a difference I am using JDK 1.4.

Here's a sample file from an Amazon query:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ProductInfo PUBLIC "-//Amazon.com //DTD  Amazon Product Info//EN" "http://xml.amazon.com/schemas/dev-lite.dtd">
<ProductInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xml.amazon.com/schemas/dev-lite.xsd">
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0672321815">
      <Asin>0672321815</Asin>
      <ProductName>Building Web Services with Java: Making Sense of XML, SOAP, WSDL and UDDI</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Steve Graham</Author>
         <Author>Simeon Simeonov</Author>
         <Author>Toufic Boubez</Author>
         <Author>Glen Daniels</Author>
         <Author>Doug Davis</Author>
         <Author>Yuichi Nakamura</Author>
         <Author>Ryo Neyama</Author>
      </Authors>
      <ReleaseDate>12 December, 2001</ReleaseDate>
      <Manufacturer>Sams</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/0672321815.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/0672321815.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/0672321815.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$49.99</ListPrice>
      <OurPrice>$34.99</OurPrice>
      <UsedPrice>$32.49</UsedPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0596001975">
      <Asin>0596001975</Asin>
      <ProductName>Java & XML, 2nd Edition: Solutions to Real-World Problems</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Brett McLaughlin</Author>
      </Authors>
      <ReleaseDate>September, 2001</ReleaseDate>
      <Manufacturer>O'Reilly & Associates</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/0596001975.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/0596001975.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/0596001975.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$44.95</ListPrice>
      <OurPrice>$31.47</OurPrice>
      <UsedPrice>$31.00</UsedPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/1861004370">
      <Asin>1861004370</Asin>
      <ProductName>Beginning Java Databases: JDBC, SQL, J2EE, EJB, JSP, XML</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Kevin Mukhar</Author>
         <Author>Todd Lauinger</Author>
         <Author>John Carnell</Author>
      </Authors>
      <ReleaseDate>August, 2001</ReleaseDate>
      <Manufacturer>Wrox Press Inc</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/1861004370.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/1861004370.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/1861004370.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$39.99</ListPrice>
      <OurPrice>$27.99</OurPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0789725037">
      <Asin>0789725037</Asin>
      <ProductName>Special Edition Using Java 2 Enterprise Edition (J2EE): With JSP, Servlets, EJB 2.0, JNDI, JMS, JDBC, CORBA, XML and RMI</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Mark Wutka</Author>
      </Authors>
      <ReleaseDate>08 May, 2001</ReleaseDate>
      <Manufacturer>Que</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/0789725037.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/0789725037.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/0789725037.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$49.99</ListPrice>
      <OurPrice>$34.99</OurPrice>
      <UsedPrice>$12.85</UsedPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0789722755">
      <Asin>0789722755</Asin>
      <ProductName>Domino 5 Web Programming with XML, Java, and JavaScript</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Randall A. Tamura</Author>
         <Author>Randy Tamura</Author>
      </Authors>
      <ReleaseDate>08 August, 2000</ReleaseDate>
      <Manufacturer>Que</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/0789722755.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/0789722755.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/0789722755.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$49.99</ListPrice>
      <OurPrice>$34.99</OurPrice>
      <UsedPrice>$7.47</UsedPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0130851353">
      <Asin>0130851353</Asin>
      <ProductName>Enterprise Applications Integration with XML and Java</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>JP Morgenthal</Author>
      </Authors>
      <ReleaseDate>31 July, 2000</ReleaseDate>
      <Manufacturer>Prentice Hall PTR</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/0130851353.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/0130851353.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/0130851353.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$44.99</ListPrice>
      <OurPrice>$31.49</OurPrice>
      <UsedPrice>$3.75</UsedPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0596002785">
      <Asin>0596002785</Asin>
      <ProductName>Java and XML Data Binding</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Brett McLaughlin</Author>
      </Authors>
      <ReleaseDate>May, 2002</ReleaseDate>
      <Manufacturer>O'Reilly & Associates</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/0596002785.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/0596002785.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/0596002785.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$34.95</ListPrice>
      <OurPrice>$24.47</OurPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0764516582">
      <Asin>0764516582</Asin>
      <ProductName>Java & XML for Dummies</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Barry Burd</Author>
      </Authors>
      <ReleaseDate>15 June, 2002</ReleaseDate>
      <Manufacturer>John Wiley & Sons</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/0764516582.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/0764516582.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/0764516582.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$29.99</ListPrice>
      <OurPrice>$20.99</OurPrice>
      <UsedPrice>$20.46</UsedPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0201770040">
      <Asin>0201770040</Asin>
      <ProductName>XML and Java: Developing Web Applications (2nd Edition)</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Hiroshi Maruyama</Author>
         <Author>Andy Clark</Author>
         <Author>Makoto Murata</Author>
         <Author>Naohiko Uramoto</Author>
         <Author>Kent Tamura</Author>
         <Author>Yuichi Nakamura</Author>
         <Author>Ryo Neyama</Author>
         <Author>Kazuya Kosaka</Author>
         <Author>Satoshi Hada</Author>
      </Authors>
      <ReleaseDate>13 May, 2002</ReleaseDate>
      <Manufacturer>Addison Wesley Professional</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/0201770040.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/0201770040.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/0201770040.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$49.99</ListPrice>
      <OurPrice>$34.99</OurPrice>
      <UsedPrice>$25.00</UsedPrice>
   </Details>
   <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/186100401X">
      <Asin>186100401X</Asin>
      <ProductName>Professional Java XML</ProductName>
      <Catalog>Book</Catalog>
      <Authors>
         <Author>Kal Ahmed</Author>
         <Author>Sudhir Ancha</Author>
         <Author>Andrei Cioroianu</Author>
         <Author>Jay Cousins</Author>
         <Author>Jeremy Crosbie</Author>
         <Author>John Davies</Author>
         <Author>Kyle Gabhart</Author>
         <Author>Steve Gould</Author>
         <Author>Ramnivas Laddad</Author>
         <Author>Sing Li</Author>
      </Authors>
      <ReleaseDate>April, 2001</ReleaseDate>
      <Manufacturer>Wrox Press Inc</Manufacturer>
      <ImageUrlSmall>http://images.amazon.com/images/P/186100401X.01.THUMBZZZ.jpg</ImageUrlSmall>
      <ImageUrlMedium>http://images.amazon.com/images/P/186100401X.01.MZZZZZZZ.jpg</ImageUrlMedium>
      <ImageUrlLarge>http://images.amazon.com/images/P/186100401X.01.LZZZZZZZ.jpg</ImageUrlLarge>
      <ListPrice>$59.99</ListPrice>
      <OurPrice>$41.99</OurPrice>
      <UsedPrice>$41.00</UsedPrice>
   </Details>
</ProductInfo>

Similar Messages

  • "Error while trying to sync Audio and Midi"

    "Error while trying to sync Audio and Midi" I have been having this problem now and then for some time. Now, I can't run any audio files without a lot of popping. I tried all the suggestions on the support document for this issue. I even downloaded new drivers from Motu for my Express XT Midi interface and my 828MK11 Audio interface. There has been no change. HEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEELP!!!!!!
    Also, I have tried reseting the 828 to factory default and that does not help.
    Jonathan Jenkins

    Hi,
    I solved my own problem by resetting the factory presets:
    Follow these steps to restore the MOTU 828mkII to Factory Default Settings.
    Disconnect the firewire cable from the 828mkII
    Press the Setup knob
    Turn the Setup knob all the way to the right
    Press the Select knob
    Press the Value knob
    Power off the interface and plug the firewire cable back in
    Power the interface back on
    The same steps can be followed to restore the Factory Default Settings on a Traveler.
    -Robert

  • "Error While Trying To Synchronise Audio And Midi"...non-tempo event found

    "Error While Trying To Synchronise Audio And Midi"...non-tempo event found
    now when I shutdown Logic And relaunch the Project, the notes hang and "WHAT THE FRIIGIN"
    (this was a bug way back when Logic7 was first released)
    this is bad!
    SvK

    Thanks Steven.
    big help. In our session we keep getting this problem where the song counter stops, the music keeps playing and we get an error message saying:
    Non Tempo-Event found in Sync Reference
    We looked in the tempo list and somehow there was a tempo event of 0.00 tempo in there.
    We deleted it, got the same error message, but the prob seems to be fixed.
    Apple, please fix this!
    Thanks
    Felix

  • "error while trying to synchronize Audio and MIDI"

    Hello All,
    Just got Logic 8... installed (as upgrade from 7)
    I keep (consistantly) getting this:
    "error while trying to synchronize Audio and MIDI" when in play or record mode... has anyone any ideas regarding a 'fix' or maybe even to point out stupidity on my part re settings; I'm open to comments here and would obviously love to get this fixed/sorted out.
    System is basically: G5 Dual 1.8/OS 10.4.10/MOTU 828 Mk2
    Thanks in advance.

    Hi,
    I first did what the manual was telling me but that made no difference as the sync would drop within 5 to 15 bars... very frustrating.
    Since my original posting I have spoken with MOTU regarding this Audio/MIDI sync problem. There is evidently a simple reset that needs to be done (that is if like me you are using a MOTU 828 Mk2 interface), you have to toggle through both digital input and output settings in the Audio Control Panel. The problem then goes away.
    I hope that is helpful. I think that this probably is relevant to all MOTU interfaces, or is at least worth trying if you are having this problem... maybe other manufacturers too... ?
    Cheers, Kick

  • I tried to update my iPhone 4S but I nowkeep getting an error saying I need to restore my phone before it can be used because it's in recovery mode! But if I restore it I lose all my media and data and I don't want to do that! Is there anything I can do??

    I tried to update my iPhone 4S but I now keep getting an error saying I need to restore my phone before it can be used because it's in recovery mode! But if I restore it I lose all my media and data and I don't want to do that! Is there anything I can do?? Somone please help, i'm freaking out over here!

    Anything that was on the phone is already gone. You have no choice but to restore. If you were backing up and syncing the phone on a regular basis, you should be able to restore your backup with minimal data loss.

  • Error message trying to synchronise audio and midi sample rate 42463

    I have a Rode Podcaster mic that is terrific. It has been working fine in GB. suddenly I am getting this when I try to record my podcast:
    'Error message trying to synchronise audio and midi sample rate 42463 recognised. Check conflict between Garageband and external device'
    Has anyone experienced this before? How do I resolve it? I'm still using my Version 6.0.5.
    Apple, is this a way of forcing me to upgrade to V10?

    Just click the icon on each track that stops it acting as a live input. It looks like a sound wave. Only have them clicked orange when using the track to record! I don't know if that will solve your problem!

  • Error while trying to synchronize audio and MIDI.  Sample rate 42804 recognized.  Check conflict between Garageband and external device.

    Sometimes, while playing back my software instrument songs, I get an intermittent pop-up error message, saying "Error while trying to synchronize audio and MIDI.  Sample rate 42804 recognized.  Check conflict between Garageband and external device."
    (Sometimes the five digit number is different, but remains a five-digit number beginning with "4".)
    Simultaneously, the song stops until I press the "Okay" button in the pop-up window.
    When I continue to play the song, the sound is jerky and clipped, and the playhead doesn't keep up with the song, and then suddenly jumps to the part of the song currently being played.
    There's also a sound of static.
    The issue seems to occur whether or not I have my MIDI controller turned on and plugged into my desktop Imac.
    Tony

    Hello,
    open your Audio MIDI Setup utility and set the input to 44100
    https://discussions.apple.com/message/12710638#12710638

  • Error while trying to synchronize Audio and MIDI. plz help i cant hear anything

    plz help me i cant hear nothing and its says: Error while trying to synchronize Audio and MIDI.
    Sample Rate 38536 recognized.
    Check conflict between Logic Pro X and external device. ????????   PLZ HELP

    It means you are overtaxing the CPU, likely with just one (3rd party-)software instrument plugin. Ignore the word "external", in this context it often means "3rd party plugin".
    So what synth is it? Since you're Dutch, it's probably one of the trancy dancy synths, such as Albino, Diva, Sylenth or Massive... I could be wrong though...
    The best way to avoid this message is to Freeze the track with the guilty synner - however, a frozen track cannot be edited, so if that is a problem, you will have to make the synth itself run lighter, which can be achieved by turning of internal effects that are ON the synth itself, especially reverb.
    http://help.apple.com/logicpro/mac/10/#lgcpf1cbfd51

  • Error while trying to sync audio and MIDI, sample rate 39100 recognised??

    When I press record a message appears saying 'error while trying to syncronise audio and MIDI, sample rate 39100 recognised. Check conflict between garage band and external device. I'm using a Behringer UMC-202 interface. The inputs are selected as the device but no audio is present either.

    Just click the icon on each track that stops it acting as a live input. It looks like a sound wave. Only have them clicked orange when using the track to record! I don't know if that will solve your problem!

  • Error while trying to synchronise audio and midi

    Hi
    Logic worked all day and suddenly start giving this message:
    error while trying to synchronise audio and midi.
    Nothing was changed and we also have no sound.
    We don't have any midi device, its just the G5 and Logic installed.
    Any idea how to solve this issue.
    Jeanne

    Howdo
    Someone else has been having this problem and I've tried to help 'cos it used to happen to me too. Try adjusting your I/O buffer level in your Logic Audio Driver preferences - raise it a bit higher and the problem should go away. Problem is you get more latency. (I'm assuming it's set lower than 512, but not knowing your audio hardware... and your not using internal audio are you???)

  • Pop up saying error while trying to sync audi and midi

    HELP! is there anyone who is experiencing or has experienced an error pop up saying error while trying to sync audio and midi in your logic pro8? it's doing it on every song I pull up now. I've tried buffering, reloading, Help? all was fine the night before.
    Sincere, The Silver Conductor

    Check the clock source on your audio interface if you're using one. It should be set to internal. What's your setup?

  • Error while trying to sync audio and video.

    Suddenly out of the blue I'm have all sorts of problems with Logic 8. I keep getting the "error while trying to synchronize audio and midi" error message. Even when I'm just using using the audio side. Do you know of a local logic tech that could check out my system? Might be a problem with my motu 828mk11 audio interface or corrupt drivers, bad preferences. I'm unable to do any work in Logic until I get this problem solved.

    (Did you do any upgrades with the Firewire plugged in?)
    Usually a MOTU reset will fix this.
    Follow these steps to restore the 828mkII to Factory Default Settings.
    •Disconnect the firewire cable from the 828mkII
    •Press the Setup knob
    •Turn the Setup knob all the way to the right
    •Press the Select knob
    •Press the Value knob
    •Power off the interface and plug the firewire cable back in
    •Power the interface back on
    http://www.motu.com/techsupport/technotes/document.2004-06-16.6405589976/view
    If that doesn't work.
    1) Unplug ALL cables from the 828MkII.
    2) Double check that the power cord is really unplugged.
    3. Switch the voltage switch on the side from your setting (110 in the US) to the other setting and back a few times.
    4) Make sure you've set the voltage switch back to the right setting for your country.
    5) Plug everything back in.
    pancenter-

  • How to solve: Error while trying to synchronize Audio and MIDI.

    The project consists of an hour long DVD of a play which I have loaded into Logic ( on a MacbookPro) and stripped the audio
    and cut it up into regions  to name the different parts of the play ( verse/music etc)
    Usually I am able to play the project with a small window showing the Movie and watching the audio in the back ground adding markers and notes.
    Most of the time this works fine.. but then I get the following message re-occurring every few seconds:
    "Error while trying to synchronize Audio and MIDI.
    Sample Rate 26848 recognized.
    Check conflict between Logic Pro and external device"
    There is no MIDI, there is no external device, the Sample Rate is the usual 44.1
    Can anyone explain how to stop getting this error message which keeps interrupting workflow?

    Hello,
    open your Audio MIDI Setup utility and set the input to 44100
    https://discussions.apple.com/message/12710638#12710638

  • LogicPro 8 "Error while trying to synchronize Audio and MIDI"

    Hello,
    My rig: Dual 2.5 GHz PowerPC G5 3.5 GB DDR SDRAM. OS X 10.4.11. Logic Pro 8.0.2, Motu 828mkII interface, emagic Unitor 8 midi interface, Makie Control Universal, 7200rpm Firewire 800 Hard drives.
    I Just launched a Logic Pro 8 session that was started a few days ago and when I click "Play" there is no audio from the recorded tracks coming through the speakers. All that comes through the speakers is a series of hi pitched (roughly 4k to 6k) beeps and then an error message: "Error while trying to synchronize Audio and MIDI". I've tried restarting everything and still get the same results. I tried switching audio device to "built-in audio" instead of the motu and that works fine, (the tracks play back correctly).
    I've also tried other sessions that have different sample resolutions and bit depth and I also tried reseting all midi drivers.
    All sessions produced the same results, "Error while trying to synchronize Audio and MIDI", and played correctly when using built-in audio device. It's looking like the problem is with the motu.
    How can I trouble shoot this?

    Sounds like the MKII needs a reset.
    You can reset the 828 MkII to default settings in the following way (as provided from the MOTU support page):
    Follow these steps to restore the 828mkII to Factory Default Settings.
    Disconnect the firewire cable from the 828mkII
    Press the Setup knob
    Turn the Setup knob all the way to the right
    Press the Select knob
    Press the Value knob
    Power off the interface and plug the firewire cable back in
    Power the interface back on
    pancenter-

  • Solution for "Error while trying to synchronize Audio and MIDI" and "System Overload" messages

    Article for those who hate Logic error windows
    Seen in Logic Pro 9.1.7 on Mac OS X Lion 10.7.4
    and Logic Pro 9.0.0 on Mac OS X Snow Leopard 10.6.5
    Logic Pro:
    System Overload.
    The audio engine was not able to process all required data in time.
    (-10011)
    Error while trying to synchronize Audio and MIDI.
    Sample Rate xxxxx recognized.
    Check conflict between Logic Pro and external device.
    The search in the help given as follows: overload occurs when you use a lot of tracks and a lot of effects on them, and the synchronization is lost when the selected MIDI track for recording or playback. Yes, this is all that is written in the resources. And here are useful tips that have been found:
    The Bounce function allows the entire instrument track to be recorded as an audio file. This bounced audio file can then be used (as an audio region) on a standard audio track, allowing you to reassign the available processing power for further software instrument tracks. For more details, see "Bouncing Your Project."
    You can also make use of the Freeze function to capture the output of a software instrument track, again saving processing power. For details, see "Freezing Tracks in the Arrange Area."
    These tips - about the timing. About overload - there are no tips, except as "reducing the number of plug-ins" and "increasing latency". Zero useful tips - I got two errors in the test project with a blank audio track with no effects, MIDI drums and standard synthesizer, it was no aux buses, and the entire project was only a single plugin in the master track.
    Here is the configuration of my computer:
    iMac12, 2
    CPU: Intel Core i5 3,1 GHz
    Memory: 4 GB
    And here's a project that almost immediately stops Logic, all instruments and plug-ins with the init-patch, ie not the most demanding settings:
    It's sad.
    When this happened the first time, I could start the project only if the empty audio track has been selected, a track specially designed so that you can at least start the project. Then, this problem has evaporated along with the changing conditions of work and I forgot about it until the last case.
    I was looking for the cause of the problem in the console and the system monitor for two days, and finally I found that Logic ping to the network frequently. I remembered the exact time of occurrence of the problem, and system logs revealed that the problems began immediately, as soon as I deactivate the service of the Internet.
    Solution: enable the Internet, or add a new network service on a computer with no Internet. I just created the Ethernet connection to the ip address 1.0.0.0
    Logic immediately began to sing.

    Hi gabaghoul
    Yes, it worked for me on four different OS and Logic versions (10.6 - 10.8 and 9.0 - 9.1.6)
    It does not work in some cases, hard enough to tell in which one, but you can try, it very easy: go to the net settings and create new Ethernet connection to the ip address 1.0.0.0 and connect LAN cable to the port.
    Also you can try to figure out what happens in your system while Logic error occured - fot that you just start Console and search "logicpro"
    Pay attention to repetitive events in a console and events with suitable timing, not so far from error
    The problem may be related to the GUI or system memory, sometimes turning off Safari (or Chrome, others browsers) might help.
    Message was edited by: spred

Maybe you are looking for

  • Questions on exporting and the trash folder?

    A friend has i Photo 5 on here iMac (older) and I was trying to copy some of the pictures out of the Trash folder, it wouldn't do it. Well it would copy the file number but it would read zero kilobites. Not sure why this happening, but even in the tr

  • Related to DB02

    Hi All,   We are using SAP ECC 6.0 on Oracle 10g. When we check in transaction code DB02 we get that our Tablespace PSAPSR3 is in Autoextend OFF mode. But all the datafiles for this Tablespace are Autoextendable. So due to this problem we are getting

  • Change color to won't work

    So I rendered a c4d scene, and in it was a tilted plane with the default material on it if you say "create new material". I noticed that the more tilted it was flat, the more gray it appeared, and the more it showed to the camera, the more white it w

  • Aspire 6920 crashes after booting correctly - screeen zig zags and freezes - any ideas to help plse?

    My aspire 6920 crashes after booting correctly - screen zig zags and freezes - any ideas to help plse? This does not happen in safemode which I am working in now - I have seen a list of dowloadable drivers on the acer site but not at all sure if I sh

  • Email a report

    Is there a way I can send multiple records using UTL_MAIL.send? At the end of the day I want to send emp no, emp name through email from a view. Thanks in advance.