Why does it fail benn in internet??

Everytime I am on the internet safari for no reason It goes off the internet window and sends me back to the main screen of my ipad2
It happened very often... Its that a mistake from the software?

Are you running other apps at the same time?  My iPad doesn't like it when I go from YouTube to iBooks to Tiny Wings to Movies to Mail to iTunes and so forth until I get back to Safari.
If this is the case try closing a few apps, including safari, then reopen your browser.

Similar Messages

  • Why Does AppleScript Fail With Google Earth?

    This simple script:
         tell application "Google Earth"
                GetCurrentVersion
         end tell
    fails with the following error:
         error "Google Earth got an error: Can’t continue GetCurrentVersion." number -1708
    and with the following Console message:
         3/2/13 5:24:42.505 PM Google Earth[53575]: +[NSDictionary scriptingRecordWithDescriptor:]: unrecognized selector sent to class 0xacdb248c
    Anyone know why?
    The GE AppleScript dictionary has the following entry:
    GetCurrentVersion v : Get the current version of the Google Earth client
          GetCurrentVersion record : record of major, minor and build numbers
    → list of integer : version fields
    AppleScript and Google Earth work fine for other users on this machine. It only fails on my account.
    I have tried deleting all vestiges of GE from the machine and reinstalling, but this hasn't worked.
    Any other ideas?

    tell application "System Events" to get has scripting terminology of application process "Google Earth"
    Result=true
    AFAIK, AS works with all other applications. It only fails with GE and only on my account.
    softwater, I apologize if my original post was not specific enough.
    I thought that the title "Why Does AppleScript Fail With Google Earth?" made it clear that the AS failure was with GE. I guess not.
    Message was edited by: Buadhai

  • TS4022 Why does my icloud open in internet explorer when it is not my main browser?

    Why does icloud open in internet explorer when I use Google as my main browser? I did something to make it happen and can't find how to change it back.

    Hey man I was having the same problem and I found the answer.... Im going to put the steps you have to follow.
    1.Open www.icloud.com on your Internet Explorer and if you're signed in you have to sign out.
    2. Open www.icould.com on your Google Chrome and then sign in and click on the box that says "stay signed in" or something like that.
    3. Try to open icloud the normal way you do it and it has to open on Chrome.
    This worked for me, hopefully it works for you man, let me know.

  • Comparing function values. Why does it fail ?

    Does anybody know why the comparison fails of two variables pointing to the very same function ?
    I'm keeping a list of function references in a sequence. At some point specific references have to be removed from the sequence. This is done by passing the function reference to a function doing this job. This won't work however as each usage of "observer.update" yields me a different reference.
    Comparing with '==' and 'FX.isSameObject' fails. Is there another way to check if these two objects are in fact equal ?
    TIA !!!
    Jan
    class Observer {
        public function update() :Void {
            println("updated");
    def observer = Observer{};
    def fVal     = observer.update;
    def fValToo  = observer.update;
    println("Comparing {fVal} and {fValToo}");
    // shouldn't at least one of the two checks succeed ???
    println("Are these the same functions ? {fVal == fValToo}");
    println("Maybe with the isSameObject  ? {FX.isSameObject(fVal, fValToo)}");

    Well... I didn't know Void was assignable. Thank you for that ! :-)
    Alas, there's a misunderstanding here : I'm comparing the references to the functions; not to their return values.
    It's not a typo when I write
    def fVal = observer.update;{code}
    Instead of
    {code:java}
    def fVal = observer.update();{code}
    The former is a reference to the +update+ function while the former is a reference to the return value of the +update+ function. The former will allow me to invoke the +update+ function by
    {code:java}
    // keep a reference to the update function
    def fVal = observer.update;
    // execute the update function
    fVal();{code}
    The question is really how to determine that two references to +a function+ are the same. Apparently every usage of +observer.update+ gives you a different object. Of which the +equals+ function unfortunately doesn't seem to work. Or maybe this by design ?

  • Generics / Erasure, or why does it fail?

    Note that the post below is a cross-post. Main thread is in the generics forum
    Main thread: http://forum.java.sun.com/thread.jspa?threadID=769830
    Hi all,
    I've been reading the generics tutorial, http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf, and the chapter on generics in The Java Programming Language, Fourth Edition, and still I can't find anything which explains why the commented line, case 1, in this code fails to compile.
    Why doesn't it compile? Does it have anything to do with erasure? Why doesn't the compiler know that E is a subclass of Shape? I've been reading a bit about erasure and thought that E would be replaced with Shape during compilation. The output from javap does also indicate this.
    The complete java code:
    import java.awt.Rectangle;
    import java.awt.Shape;
    import java.util.ArrayList;
    public class Aggregator<E extends Shape> {
         private ArrayList<E> elements;
         public Aggregator() {
              this.elements = new ArrayList<E>();
         public void add(E e) {
              elements.add(e);
         public String toString() {
              return elements.toString();
         public void populateWithTestData() {
              //add(new Rectangle());          // ## case 1     
              add((E)new Rectangle());     // ## case 2     
         public static void main(String[] args) {
              Aggregator<Rectangle> aggregator = new Aggregator<Rectangle>();
              aggregator.add(new Rectangle());     // ## case 3 this works fine
    }Case 1 does not compile and gives:
    The method add(E) in the type Aggregator<E> is not applicable for
    the arguments (Rectangle)     
    Case 2 compiles with a warning, and gives:
    Type safety: The cast from Rectangle to E is actually checking
    against the erased type Shape
    Why does case 3 compile if case 1 doesn't?
    Output from javap (Removed output for constructor and toString to reduce the post):
    javap -c -classpath . -private -s Aggregator
    Compiled from "Aggregator.java"
    public class Aggregator extends java.lang.Object{
    private java.util.ArrayList elements;
      Signature: Ljava/util/ArrayList;
    public void add(java.awt.Shape);
      Signature: (Ljava/awt/Shape;)V
      Code:
       0:   aload_0
       1:   getfield        #17; //Field elements:Ljava/util/ArrayList;
       4:   aload_1
       5:   invokevirtual   #28; //Method java/util/ArrayList.add:(Ljava/lang/Object;)Z
       8:   pop
       9:   return
    public void populateWithTestData();
      Signature: ()V
      Code:
       0:   aload_0
       1:   new     #39; //class java/awt/Rectangle
       4:   dup
       5:   invokespecial   #41; //Method java/awt/Rectangle."<init>":()V
       8:   invokevirtual   #42; //Method add:(Ljava/awt/Shape;)V
       11:  return
    public static void main(java.lang.String[]);
      Signature: ([Ljava/lang/String;)V
      Code:
       0:   new     #1; //class Aggregator
       3:   dup
       4:   invokespecial   #46; //Method "<init>":()V
       7:   astore_1
       8:   aload_1
       9:   new     #39; //class java/awt/Rectangle
       12:  dup
       13:  invokespecial   #41; //Method java/awt/Rectangle."<init>":()V
       16:  invokevirtual   #42; //Method add:(Ljava/awt/Shape;)V
       19:  return
    }Does anyone know where I should look to find information on why case 1 doesn't compile? Can anyone explain the problem?
    Thanks
    Kaj

    I see only one difference: on case 3, the type is
    defined as Rectangle. Ok, I declaration to:
    Aggregator<Shape> aggregator = new Aggregator<Shape>();
    And that gives the same result.
    On case 1, there's no type
    definition yet: I can understand that, but doesn't this:
    <E extends Shape>
    Tell the compiler that E is undefined but it has to be something which at least is of type Shape?
    the argument has to be of type <E>,Why? When it's declared as <E extends Shape>?
    which could be anything - but you supply a Rectangle.
    Make that E a String, and the argument doesn't
    match.
    With the cast in case 2, you define the argument type
    to be E (<-- is that the "erasure"?) and thus it
    works again. No verifyable type safety in case 1.
    But who am I to talk about Generics, I have no idea.Your guesses are as good as mine. I haven't used generics that much.

  • Why does iTunes fail to see that I am a customer

    Why has it taken 20 days and iTunes still hasn'tfixed my account?
    Why have I ended up with two iTunes account instead of just one?
    Why are the people running the system so thick that the two accounts created god knows why both belong to the same person?
    Why is the customer serviceso indifferent and off balance so much that it is barely service at all?
    Why does iTunes not fix their system so that they deal with issues once, once only and move to the next customer thereby reducing everyones waiting time.

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico my first language is Spanish. I do not speak English, however I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Have you ever actually bought anything from the Mac App Store? Have you created an iTunes account in the past? Do you have a bank card from a bank in the country where you live with a local billing address?

  • Why does my iPad shut down internet unexpectedly

    Why does my iPad mini shut dow

    Hi Jenidoran,
    Welcome to the Apple Support Communities!
    It sounds as if you are having unexpected Wi-Fi signal drops on your iPad. In this situation I would recommend the steps in the following article.
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    Have a great day,
    Joe

  • Why does qmaster fail on my clustered computers?

    I'm using FCP 7 with compressor 3.5, and I'm getting failures when I try to run compressor against a Render Farm. I can't figure out why.
    All of my computers are set to managed, and I've used QAdministrator to build a cluster. My main iMac is also set as the controller. I've shared my folders off of the iMac with the network so that the other computers can R/W to the local disk. I do NOT have a SAN or NAS currently configured.
    All of my computers are statically assigned their IP addresses and are not connected to a DNS/DHCP server or Domain Controller. It's all local network without internet connection.
    What could I be doing wrong?
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <services>
       <service type="jobcontroller:com.apple.qmaster.cluster.admin" displayName="Tim Bergmann’s iMac" address="tcp://10.1.1.2:52248" hostName="Tim-Bergmanns-iMac.local">
          <logs tms="385495925.807" tmt="03/20/2013 12:12:05.807" pnm="qmasterqd">
             <mrk tms="385495925.808" tmt="03/20/2013 12:12:05.808" pid="1997" kind="begin" what="log-session"/>
             <log tms="385495925.810" tmt="03/20/2013 12:12:05.810" pid="1997" msg="Starting up"/>
             <log tms="385495925.817" tmt="03/20/2013 12:12:05.817" pid="1997" msg="Keep completed targets in history = true"/>
             <log tms="385495925.817" tmt="03/20/2013 12:12:05.817" pid="1997" msg="Keep completed segments in history = false"/>
             <mrk tms="385495953.686" tmt="03/20/2013 12:12:33.686" pid="1997" kind="begin" what="CJobControllerService::publishClusterStorage"></mrk>
             <log tms="385495953.687" tmt="03/20/2013 12:12:33.687" pid="1997" msg="Cluster storage URL = file2nfs://localhost/Cluster%20Storage/54170E4A-5AEE9756/shared/"/>
             <log tms="385495953.687" tmt="03/20/2013 12:12:33.687" pid="1997" msg="Publishing shared storage."/>
             <log tms="385495953.698" tmt="03/20/2013 12:12:33.698" pid="1997" msg="Subscribing to shared storage, local path = /var/spool/qmaster/54170E4A-5AEE9756/shared"/>
             <log tms="385495954.692" tmt="03/20/2013 12:12:34.692" pid="1997" msg="Result cluster storage URL = nfs://Tim-Bergmanns-iMac.local/Cluster%20Storage/54170E4A-5AEE9756/shared"/>
             <mrk tms="385495954.692" tmt="03/20/2013 12:12:34.692" pid="1997" kind="end" what="CJobControllerService::publishClusterStorage"></mrk>
             <log tms="385496028.510" tmt="03/20/2013 12:13:48.510" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (6C2F81C0-62AD-49C5-A255-13F26B4F5A22 != EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5) - did the service go down?"/>
             <log tms="385496028.511" tmt="03/20/2013 12:13:48.511" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62071%22%3E%3C/ad%3E"/>
             <log tms="385496028.526" tmt="03/20/2013 12:13:48.526" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (3240C3A7-9CAD-4389-9096-EAB3F1C6683C != CCD764A6-5236-4CA9-9D86-2CDC308E4B37) - did the service go down?"/>
             <log tms="385496028.527" tmt="03/20/2013 12:13:48.527" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22CCD764A6-5236-4CA9-9D86-2CDC308E4B37%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64334%22%3E%3C/ad%3E"/>
             <log tms="385496028.532" tmt="03/20/2013 12:13:48.532" pid="1997" msg="Not releasing service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C, sessionID has changed (6C2F81C0-62AD-49C5-A255-13F26B4F5A22 != EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5)"/>
             <log tms="385496028.533" tmt="03/20/2013 12:13:48.533" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:02:58;04 to 01:05:56;09, host = Render-1.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496028.537" tmt="03/20/2013 12:13:48.537" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496028.565" tmt="03/20/2013 12:13:48.565" pid="1997" msg="Service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB sessionID mismatch (69B6CF92-6F19-4A19-9F6E-A07F51C1DC10 != E9582F6E-70BE-45CF-8D1E-440DA722C755) - did the service go down?"/>
             <log tms="385496028.565" tmt="03/20/2013 12:13:48.565" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB for 4 sec. and connecting failed - the service is down. %3Cad id=%22B55BC0BF-7DC1-4131-B0A7-D958643FE8AB%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22E9582F6E-70BE-45CF-8D1E-440DA722C755%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62070%22%3E%3C/ad%3E"/>
             <log tms="385496028.598" tmt="03/20/2013 12:13:48.598" pid="1997" msg="Service FEBA9794-9834-4499-97E4-672D979ABF8A sessionID mismatch (9A9651EB-AD73-4B0B-B84A-1ACA7B75B1F9 != 74CFF689-E81F-4725-9B96-615F1C29A006) - did the service go down?"/>
             <log tms="385496028.611" tmt="03/20/2013 12:13:48.611" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service FEBA9794-9834-4499-97E4-672D979ABF8A for 4 sec. and connecting failed - the service is down. %3Cad id=%22FEBA9794-9834-4499-97E4-672D979ABF8A%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%2274CFF689-E81F-4725-9B96-615F1C29A006%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64335%22%3E%3C/ad%3E"/>
             <log tms="385496028.613" tmt="03/20/2013 12:13:48.613" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:00:00;00 to 01:02:58;03, host = Render-2.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496028.616" tmt="03/20/2013 12:13:48.616" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496028.771" tmt="03/20/2013 12:13:48.771" pid="1997" msg="Not releasing service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB, sessionID has changed (69B6CF92-6F19-4A19-9F6E-A07F51C1DC10 != E9582F6E-70BE-45CF-8D1E-440DA722C755)"/>
             <log tms="385496028.772" tmt="03/20/2013 12:13:48.772" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:05:56;10 to 01:08:54;15, host = Render-1.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496028.776" tmt="03/20/2013 12:13:48.776" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496028.811" tmt="03/20/2013 12:13:48.811" pid="1997" msg="Not releasing service FEBA9794-9834-4499-97E4-672D979ABF8A, sessionID has changed (9A9651EB-AD73-4B0B-B84A-1ACA7B75B1F9 != 74CFF689-E81F-4725-9B96-615F1C29A006)"/>
             <log tms="385496028.812" tmt="03/20/2013 12:13:48.812" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:08:54;16 to 01:11:52;19, host = Render-2.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496028.815" tmt="03/20/2013 12:13:48.815" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496032.900" tmt="03/20/2013 12:13:52.900" pid="1997" msg="Service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB sessionID mismatch (E9582F6E-70BE-45CF-8D1E-440DA722C755 != 3A68B052-3EF7-4975-A7FC-9F2530112724) - did the service go down?"/>
             <log tms="385496032.901" tmt="03/20/2013 12:13:52.901" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB for 4 sec. and connecting failed - the service is down. %3Cad id=%22B55BC0BF-7DC1-4131-B0A7-D958643FE8AB%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%223A68B052-3EF7-4975-A7FC-9F2530112724%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62086%22%3E%3C/ad%3E"/>
             <log tms="385496032.907" tmt="03/20/2013 12:13:52.907" pid="1997" msg="Not releasing service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB, sessionID has changed (E9582F6E-70BE-45CF-8D1E-440DA722C755 != 3A68B052-3EF7-4975-A7FC-9F2530112724)"/>
             <log tms="385496032.908" tmt="03/20/2013 12:13:52.908" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:17:49;02 to 01:20:47;05, host = Render-1.local, exception = service down, fail count = 1. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496032.911" tmt="03/20/2013 12:13:52.911" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496032.920" tmt="03/20/2013 12:13:52.920" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5 != 9D7BDC2F-6A77-4B7E-B053-A176D3BDD7BB) - did the service go down?"/>
             <log tms="385496032.920" tmt="03/20/2013 12:13:52.920" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%229D7BDC2F-6A77-4B7E-B053-A176D3BDD7BB%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62087%22%3E%3C/ad%3E"/>
             <log tms="385496032.941" tmt="03/20/2013 12:13:52.941" pid="1997" msg="Service FEBA9794-9834-4499-97E4-672D979ABF8A sessionID mismatch (74CFF689-E81F-4725-9B96-615F1C29A006 != 5E121676-96B6-44B7-9338-1FEFCFCC60C7) - did the service go down?"/>
             <log tms="385496032.941" tmt="03/20/2013 12:13:52.941" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service FEBA9794-9834-4499-97E4-672D979ABF8A for 4 sec. and connecting failed - the service is down. %3Cad id=%22FEBA9794-9834-4499-97E4-672D979ABF8A%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%225E121676-96B6-44B7-9338-1FEFCFCC60C7%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64345%22%3E%3C/ad%3E"/>
             <log tms="385496032.980" tmt="03/20/2013 12:13:52.980" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (CCD764A6-5236-4CA9-9D86-2CDC308E4B37 != 325251D4-DFD5-4726-8481-6FE854BDF331) - did the service go down?"/>
             <log tms="385496032.980" tmt="03/20/2013 12:13:52.980" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22325251D4-DFD5-4726-8481-6FE854BDF331%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64344%22%3E%3C/ad%3E"/>
             <log tms="385496033.132" tmt="03/20/2013 12:13:53.132" pid="1997" msg="Not releasing service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C, sessionID has changed (EB8B2DD5-1D53-4977-B54F-CC13B5C3FBE5 != 9D7BDC2F-6A77-4B7E-B053-A176D3BDD7BB)"/>
             <log tms="385496033.133" tmt="03/20/2013 12:13:53.133" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:14:50;26 to 01:17:49;01, host = Render-1.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496033.156" tmt="03/20/2013 12:13:53.156" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496033.164" tmt="03/20/2013 12:13:53.164" pid="1997" msg="Not releasing service FEBA9794-9834-4499-97E4-672D979ABF8A, sessionID has changed (74CFF689-E81F-4725-9B96-615F1C29A006 != 5E121676-96B6-44B7-9338-1FEFCFCC60C7)"/>
             <log tms="385496033.165" tmt="03/20/2013 12:13:53.165" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:20:47;06 to 01:23:45;11, host = Render-2.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496033.168" tmt="03/20/2013 12:13:53.168" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496033.171" tmt="03/20/2013 12:13:53.171" pid="1997" msg="Not releasing service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF, sessionID has changed (CCD764A6-5236-4CA9-9D86-2CDC308E4B37 != 325251D4-DFD5-4726-8481-6FE854BDF331)"/>
             <log tms="385496033.172" tmt="03/20/2013 12:13:53.172" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:02:58;04 to 01:05:56;09, host = Render-2.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496033.210" tmt="03/20/2013 12:13:53.210" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496037.193" tmt="03/20/2013 12:13:57.193" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (9D7BDC2F-6A77-4B7E-B053-A176D3BDD7BB != D00018FA-C018-4D96-8079-4789501B97BF) - did the service go down?"/>
             <log tms="385496037.193" tmt="03/20/2013 12:13:57.193" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22D00018FA-C018-4D96-8079-4789501B97BF%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62101%22%3E%3C/ad%3E"/>
             <log tms="385496037.203" tmt="03/20/2013 12:13:57.203" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:08:54;16 to 01:11:52;19, host = Render-1.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496037.207" tmt="03/20/2013 12:13:57.207" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496037.215" tmt="03/20/2013 12:13:57.215" pid="1997" msg="Service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB sessionID mismatch (3A68B052-3EF7-4975-A7FC-9F2530112724 != FD78A150-CEF8-4CAF-9D26-1A8F195C41B4) - did the service go down?"/>
             <log tms="385496037.215" tmt="03/20/2013 12:13:57.215" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB for 5 sec. and connecting failed - the service is down. %3Cad id=%22B55BC0BF-7DC1-4131-B0A7-D958643FE8AB%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22FD78A150-CEF8-4CAF-9D26-1A8F195C41B4%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62100%22%3E%3C/ad%3E"/>
             <log tms="385496037.232" tmt="03/20/2013 12:13:57.232" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (325251D4-DFD5-4726-8481-6FE854BDF331 != 69C39B21-D68F-4FAE-B604-BF260DF77EA4) - did the service go down?"/>
             <log tms="385496037.233" tmt="03/20/2013 12:13:57.233" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%2269C39B21-D68F-4FAE-B604-BF260DF77EA4%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64356%22%3E%3C/ad%3E"/>
             <log tms="385496037.262" tmt="03/20/2013 12:13:57.262" pid="1997" msg="Service FEBA9794-9834-4499-97E4-672D979ABF8A sessionID mismatch (5E121676-96B6-44B7-9338-1FEFCFCC60C7 != BE768F9B-EC6E-49B5-AA47-7CDA25AE5AE0) - did the service go down?"/>
             <log tms="385496037.263" tmt="03/20/2013 12:13:57.263" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service FEBA9794-9834-4499-97E4-672D979ABF8A for 5 sec. and connecting failed - the service is down. %3Cad id=%22FEBA9794-9834-4499-97E4-672D979ABF8A%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22BE768F9B-EC6E-49B5-AA47-7CDA25AE5AE0%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64357%22%3E%3C/ad%3E"/>
             <log tms="385496037.426" tmt="03/20/2013 12:13:57.426" pid="1997" msg="Not releasing service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB, sessionID has changed (3A68B052-3EF7-4975-A7FC-9F2530112724 != FD78A150-CEF8-4CAF-9D26-1A8F195C41B4)"/>
             <log tms="385496037.427" tmt="03/20/2013 12:13:57.427" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:00:00;00 to 01:02:58;03, host = Render-1.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496037.430" tmt="03/20/2013 12:13:57.430" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496037.494" tmt="03/20/2013 12:13:57.494" pid="1997" msg="Not releasing service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF, sessionID has changed (325251D4-DFD5-4726-8481-6FE854BDF331 != 69C39B21-D68F-4FAE-B604-BF260DF77EA4)"/>
             <log tms="385496037.495" tmt="03/20/2013 12:13:57.495" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:23:45;12 to 01:26:43;17, host = Render-2.local, exception = service down, fail count = 1. There are 2 hosts which haven't failed this request yet."/>
             <log tms="385496037.498" tmt="03/20/2013 12:13:57.498" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496037.499" tmt="03/20/2013 12:13:57.499" pid="1997" msg="Not releasing service FEBA9794-9834-4499-97E4-672D979ABF8A, sessionID has changed (5E121676-96B6-44B7-9338-1FEFCFCC60C7 != BE768F9B-EC6E-49B5-AA47-7CDA25AE5AE0)"/>
             <log tms="385496037.500" tmt="03/20/2013 12:13:57.500" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:05:56;10 to 01:08:54;15, host = Render-2.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496037.503" tmt="03/20/2013 12:13:57.503" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496041.515" tmt="03/20/2013 12:14:01.515" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (D00018FA-C018-4D96-8079-4789501B97BF != A0030092-5C6E-46AF-8737-05654083AB51) - did the service go down?"/>
             <log tms="385496041.515" tmt="03/20/2013 12:14:01.515" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22A0030092-5C6E-46AF-8737-05654083AB51%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62112%22%3E%3C/ad%3E"/>
             <log tms="385496041.523" tmt="03/20/2013 12:14:01.523" pid="1997" msg="Not releasing service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C, sessionID has changed (D00018FA-C018-4D96-8079-4789501B97BF != A0030092-5C6E-46AF-8737-05654083AB51)"/>
             <log tms="385496041.523" tmt="03/20/2013 12:14:01.523" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:20:47;06 to 01:23:45;11, host = Render-1.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496041.530" tmt="03/20/2013 12:14:01.530" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496041.536" tmt="03/20/2013 12:14:01.536" pid="1997" msg="Service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB sessionID mismatch (FD78A150-CEF8-4CAF-9D26-1A8F195C41B4 != DBA9799B-76A0-492B-A3B8-CDC083A06E80) - did the service go down?"/>
             <log tms="385496041.537" tmt="03/20/2013 12:14:01.537" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service B55BC0BF-7DC1-4131-B0A7-D958643FE8AB for 4 sec. and connecting failed - the service is down. %3Cad id=%22B55BC0BF-7DC1-4131-B0A7-D958643FE8AB%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22DBA9799B-76A0-492B-A3B8-CDC083A06E80%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62113%22%3E%3C/ad%3E"/>
             <log tms="385496041.641" tmt="03/20/2013 12:14:01.641" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (69C39B21-D68F-4FAE-B604-BF260DF77EA4 != B67ED0BE-3332-49F8-8BE0-DCC902A7565F) - did the service go down?"/>
             <log tms="385496041.641" tmt="03/20/2013 12:14:01.641" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22B67ED0BE-3332-49F8-8BE0-DCC902A7565F%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64369%22%3E%3C/ad%3E"/>
             <log tms="385496041.672" tmt="03/20/2013 12:14:01.672" pid="1997" msg="Service FEBA9794-9834-4499-97E4-672D979ABF8A sessionID mismatch (BE768F9B-EC6E-49B5-AA47-7CDA25AE5AE0 != 41626CB7-EF93-46D3-B602-A26B1A24E513) - did the service go down?"/>
             <log tms="385496041.673" tmt="03/20/2013 12:14:01.673" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service FEBA9794-9834-4499-97E4-672D979ABF8A for 4 sec. and connecting failed - the service is down. %3Cad id=%22FEBA9794-9834-4499-97E4-672D979ABF8A%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%2241626CB7-EF93-46D3-B602-A26B1A24E513%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64368%22%3E%3C/ad%3E"/>
             <log tms="385496041.706" tmt="03/20/2013 12:14:01.706" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:02:58;04 to 01:05:56;09, host = Render-1.local, exception = service down, fail count = 3. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496041.709" tmt="03/20/2013 12:14:01.709" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496041.710" tmt="03/20/2013 12:14:01.710" pid="1997" msg="Not releasing service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF, sessionID has changed (69C39B21-D68F-4FAE-B604-BF260DF77EA4 != B67ED0BE-3332-49F8-8BE0-DCC902A7565F)"/>
             <log tms="385496041.711" tmt="03/20/2013 12:14:01.711" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:14:50;26 to 01:17:49;01, host = Render-2.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496041.717" tmt="03/20/2013 12:14:01.717" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496041.718" tmt="03/20/2013 12:14:01.718" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:17:49;02 to 01:20:47;05, host = Render-2.local, exception = service down, fail count = 2. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496041.722" tmt="03/20/2013 12:14:01.722" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496045.606" tmt="03/20/2013 12:14:05.606" pid="1997" msg="Service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C sessionID mismatch (A0030092-5C6E-46AF-8737-05654083AB51 != FF52830A-6269-4E3C-ACC4-68035A29387E) - did the service go down?"/>
             <log tms="385496045.607" tmt="03/20/2013 12:14:05.607" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C for 4 sec. and connecting failed - the service is down. %3Cad id=%22E44EC2F0-236B-4CCC-BFF1-87D4A53DEE9C%22 unmg=%220%22 suid=%22-1%22 host=%22Render-1.local%22 session=%22FF52830A-6269-4E3C-ACC4-68035A29387E%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%201%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.3:62120%22%3E%3C/ad%3E"/>
             <log tms="385496045.626" tmt="03/20/2013 12:14:05.626" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:00:00;00 to 01:02:58;03, host = Render-1.local, exception = service down, fail count = 3. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496045.630" tmt="03/20/2013 12:14:05.630" pid="1997" msg="Rescheduling the failed request."/>
             <log tms="385496045.642" tmt="03/20/2013 12:14:05.642" pid="1997" msg="Service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF sessionID mismatch (B67ED0BE-3332-49F8-8BE0-DCC902A7565F != C52501DD-9692-4244-BB38-091F5BB1A722) - did the service go down?"/>
             <log tms="385496045.645" tmt="03/20/2013 12:14:05.645" pid="1997" msg="CJobControllerServer::tickleService: we haven't heard from service AE991F65-4E48-4DC7-807A-5B5CACCE9FEF for 4 sec. and connecting failed - the service is down. %3Cad id=%22AE991F65-4E48-4DC7-807A-5B5CACCE9FEF%22 unmg=%220%22 suid=%22-1%22 host=%22Render-2.local%22 session=%22C52501DD-9692-4244-BB38-091F5BB1A722%22 hostPerfScore=%2213.8%22 ver=%222.2%22 kind=%22servicecontroller:com.apple.stomp.transcoder%22 name=%22Render%202%22 desc=%22Compressor%22 scope=%223%22 status=%224%22 url=%22tcp://10.1.1.4:64374%22%3E%3C/ad%3E"/>
             <log tms="385496045.774" tmt="03/20/2013 12:14:05.774" pid="1997" lvl="2" msg="Handling exception: batch = Untitled, job = Brokenness Aside Video, target = Brokenness Aside Video-MPEG-4 .mp4, segment = Video: 01:05:56;10 to 01:08:54;15, host = Render-2.local, exception = service down, fail count = 3. There are 1 hosts which haven't failed this request yet."/>
             <log tms="385496045.782" tmt="03/20/2013 12:14:05.782" pid="1997" msg="Rescheduling the failed request."/>
          </logs>
       </service>
       <service type="requestprocessor:com.apple.qmaster.contentcontroller" displayName="Tim Bergmann’s iMac" address="tcp://10.1.1.2:52374" hostName="Tim-Bergmanns-iMac.local">
          <logs tms="385495954.758" tmt="03/20/2013 12:12:34.758" pnm="ContentController">
             <mrk tms="385495954.760" tmt="03/20/2013 12:12:34.760" pid="2005" kind="begin" what="log-session"/>
             <log tms="385495954.764" tmt="03/20/2013 12:12:34.764" pid="2005" msg="Starting up"/>
             <mrk tms="385496003.935" tmt="03/20/2013 12:13:23.935" pid="2005" kind="begin" what="service-request" req-id="95659D0D-E473-42FC-880F-E233593BCCFA:1" msg="Preprocessing job."></mrk>
             <mrk tms="385496008.955" tmt="03/20/2013 12:13:28.955" pid="2005" kind="end" what="service-request" req-id="95659D0D-E473-42FC-880F-E233593BCCFA:1" msg="Preprocessing job request end."></mrk>
             <mrk tms="385496009.007" tmt="03/20/2013 12:13:29.007" pid="2005" kind="begin" what="service-request" req-id="EB965BDE-0B54-4B45-BA50-547CE9744E87:1" msg="Preprocessing."></mrk>
             <mrk tms="385496014.010" tmt="03/20/2013 12:13:34.010" pid="2005" kind="end" what="service-request" req-id="EB965BDE-0B54-4B45-BA50-547CE9744E87:1" msg="Preprocessing service request end."></mrk>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Render 1 2" address="tcp://10.1.1.3:62113" hostName="Render-1.local">
          <logs tms="385497699.989" tmt="03/20/2013 12:41:39.989" pnm="CompressorTranscoderX">
             <log tms="385497699.989" tmt="03/20/2013 12:41:39.989" pid="4897" kind="mrk" sub="error" what="get-log" avail="false" msg="Not logging to file."/>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Render 2 2" address="tcp://10.1.1.4:64368" hostName="Render-2.local">
          <logs tms="385497699.975" tmt="03/20/2013 12:41:39.975" pnm="CompressorTranscoderX">
             <log tms="385497699.975" tmt="03/20/2013 12:41:39.975" pid="4637" kind="mrk" sub="error" what="get-log" avail="false" msg="Not logging to file."/>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Render 1" address="tcp://10.1.1.3:62120" hostName="Render-1.local">
          <logs tms="385497700.008" tmt="03/20/2013 12:41:40.008" pnm="CompressorTranscoderX">
             <log tms="385497700.008" tmt="03/20/2013 12:41:40.008" pid="4910" kind="mrk" sub="error" what="get-log" avail="false" msg="Not logging to file."/>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Render 2" address="tcp://10.1.1.4:64374" hostName="Render-2.local">
          <logs tms="385497699.992" tmt="03/20/2013 12:41:39.992" pnm="CompressorTranscoderX">
             <log tms="385497699.992" tmt="03/20/2013 12:41:39.992" pid="4650" kind="mrk" sub="error" what="get-log" avail="false" msg="Not logging to file."/>
          </logs>
       </service>
       <service type="servicecontroller:com.apple.stomp.transcoder" displayName="Tim Bergmann’s iMac" address="tcp://10.1.1.2:52251" hostName="Tim-Bergmanns-iMac.local">
          <logs tms="385495925.821" tmt="03/20/2013 12:12:05.821" pnm="CompressorTranscoderX">
             <mrk tms="385495925.823" tmt="03/20/2013 12:12:05.823" pid="1996" kind="begin" what="log-session"/>
             <log tms="385495925.827" tmt="03/20/2013 12:12:05.827" pid="1996" msg="Starting up"/>
             <mrk tms="385496024.462" tmt="03/20/2013 12:13:44.462" pid="1996" kind="begin" what="service-request" req-id="12BFC5E9-94E1-459C-BE2B-6FAD6D10BF4D:1" msg="Processing."></mrk>
             <mrk tms="385496974.947" tmt="03/20/2013 12:29:34.947" pid="1996" kind="end" what="service-request" req-id="12BFC5E9-94E1-459C-BE2B-6FAD6D10BF4D:1" msg="Processing service request end."></mrk>
             <mrk tms="385496974.981" tmt="03/20/2013 12:29:34.981" pid="1996" kind="begin" what="service-request" req-id="562D097C-96A0-4045-8578-CC81CC852CB5:7" msg="Processing."></mrk>
          </logs>
       </service>
    </services>

    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network      
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem and it does not connect to any networks make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Why does Shockwave crash ALL my internet browsers?

    Hi I have a really annoying problem with Shockwave that started only a few days ago. Whenever I load up a web browser and try to start an application which uses Shockwave, specifically using a Webcam in websites, the browser always crashes. This happens in Chrome, Firefox and also IE. Also, whenever I try to change 'Audio & Video Settings' in MSN Messenger, Messenger freezes and I have to close the program. I am also now not able to view videos in youtube and other video sites. Is this problem related to my webcam? The webcam I am using is a Logitech Pro9000, and my operating system is Windows 7, upgraded from Vista. I have also noticed occasionally opening My Documents, and whenever i try to cut and paste something from there, it crashes. If I try to open it again I get a message saying 'Remote control procedure failed and did not execute'.
    Now, I have looked on similar forums and they have mentioned something about ITC audio, which I cannot find in my program list or device manager. So I don't think that is the problem. Also, I have deleted a few programs and other large files off the computer but still no result. Maybe I accidentally removed something that is required for these programs to work consistently? Are there any other solutions? This problem is really getting on my nerves and I am really beginning to despise Logitech and Adobe for probably no reason.
    Any help would be greatly appreciated.
    Regards
    Wilsospeedy

    You have an internet problem, not a hardware/software problem.  Skype opens a port that allows it to communicate directly with the Skype server. 

  • Why does my ipad disconnect from internet

    When using internet after around 10 mins my iPad throws me out can anyone tell me why ?

    Have you tried this?
    1. Turn router off for 30 seconds and on again
    2. Settings>General>Reset>Reset Network Settings
    3. Reset iPad; hold the Sleep and Home button down until you see the Apple Logo

  • Why does my iPad lose the Internet connection ?

    Why won't my iPad battery recharge?  Sent this message before & would

    I didn't do the most recent upgrade as I had problems with it when I did the previous one.  I have the  IPAD WI-FI 32GB .  It seems to be charging ok .  I did a Sync yesterday and now it won't connect to the Internet although it was working fine last evening and I didn't change any settings. 
    When I plug it in to my iMac, the iPhoto applicaiton opens and I have to open the iTunes application even though I have it set to open when I connect the iPad. 
    Appreciate any help or suggestions you can offer.  Thank you in advance.

  • Why does Photoshop fail to update?.

    I have just fixed the problem with Creative cloud failing to show apps and now that i have fixed it, i cant update my apps... all i want to do is do my work with no issues.
    ~Steele Priddy
       Evocca student

    You can go into the Help menu of your apps and choose "Update".
    I'm not experienced enough with the CC Desktop app except to suggest you should sign out/exit
    Launch the CC Deaktop app and sign in. Also it does take a while for updates to show up on the CC panel.
    Gene

  • Why does FlexUnit fail?

    I get 8 failures when I run the tests provided with the FlexUnit download (I have of course not touched anything). I'm curious why this happens ... just want to be sure this code is safe to use. Would like to get them passing asap.

    I really appreciate the help. First off ... I was completely mistaken. I was using looking at an older copy of FlexUnit I had. Oddly enough the first time I ran the tests for FlexUnit4 they failed ... but because of something running in the background. Just a small string of unlucky events.
    Thanks again!
    Best,
    Michael

  • Why does server fail to connect to manage my iPad data account

    Trying to view my account through the cellular settings 'View Account' fails. I received email that my 5GB with hotspot service was renewed. I was viewing with my iPhone and the email offered this embedded link to manage the account: http://clicks.att.com/OCT/eTrac?EMAIL_ID=XXXXXXXX&finalURL=http://www.att.com/
    (ID number obscured). The link timed out on my iPhone just as it does on my iPad.

    You are not alone. Found others with same problem thanks to this forum and I did bring it up to AT&T. I was told a tower had trouble tickets issued on it in my area. Data started to work again but view account is still down.
    I am inside NYC city limits in 11375. Used service in multiple other localities without issue.

  • Why does streaming video freeze and Internet not allow me to search Web when I airplay content from my MacBook Pro?

    I just bought Apple TV and my internet connection seems to cut out. I can't browse the internet once this happens? Once I unplug Apple TV and refresh router I get it back. What can I do to resolve this problem?

    I am having the same problem.  The MacBook Pro does not come with a startup disk so how can I get into the computer to begin anything?

Maybe you are looking for