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.

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

  • 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 ?

  • 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 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 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 lightroom 3.3 delete files it 'fails' to move? and why does it fail?

    I'm in the process of moving a bunch of images around between machines, so from a remote machine I copied 10gb or so of .cr2, .jpg and .thm files into a temporary holding location on a local sata drive. I then started an import on the machine from the temporary holding location to the location I wanted the files at (which is a drive different than the temporary location). Lightroom trundled along for quite a while. Then reported to me that it had failed to move some files (The list was ALL the files).
    I went to look at the temporary holding location on the boot drive and all the files were gone. I looked at the location I tried to import them to, and they were in fact there. HOWEVER they were not added to the catalog in lightroom!

    Greetings..
      I'm not sure what you mean by "force LR to import..."
    It all depends on your work flow, and how you use LR, not any forcing.  For example, I use keywords and collections.  I organize my photos in the _folders_ by the method I mentioned.  Then use collections to make up my groupings and sorted images.  As for importing, every photograph taken has at least the date taken in it, and LR import options have a lot of different ways to use that date to import them.  I selected one that works for me, and then just have to select the MajorProject as the toplevel folder on the import destination.  LR creates all of the underlying folders.
    I then use the Move option, and LR will move all of my images from the source directory into the destination.  Note:  This will not work from a portable drive, due to LR not being allowed to delete images from portable disks.  You'd have to use Copy, and delete the originals after you've seen them in their new home.
    Just out of curiosity, is there any reason you renamed your files, or was that a byproduct of how you did it?  I try not to rename my images, if possible.  I know that having multiple images with the same name causes some problems with a few export modules (I updated one, and had to recreate my export collection.  It took the first file by that name it found, which, of course, turned out not to be the correct image).
    The key here of course, is to keyword your images.  I now have several ways to search for images;  those taken by date, by project, and of course by keywords.
    Cheers!

  • Why does appimp fail with "id already exists?"

    After upgrading to a recent release of Portal on 8i, we have to use the appexp utility to export Portal objects. We exported an entire application and then dropped it. When we try to run appimp to put it back we get errors that objects will fail because "ID already exists". We found note 168309.1 on Metalink but it didn't give us a fix. Has anybody else encountered this and maybe found a solution?
    Thanks in advance
    Ron

    This may be happenning due to some residual data in the wwv_modules$ table pertaining to the application you want to export. Delete the residual data and the try re-importing.

  • Why does Lookout fail (freeze) when a print job fails?

    I've experienced this only a few times for several years now, but it is repeatable. Basically, if Lookout sends a print job (panel or alarm/every) to the default printer and the printer is not online for whatever reason, the Lookout.exe consumes 100% CPU according to task manager and when commanded to close or exit, a popup indicating "x number of print jobs in progress" displays repeatedly and I must "end program" and restart Lookout to continue operations. Shouldn't Lookout offer the option to abort the print job and resume service within a couple of mins or when commanded rather than stubbornly lock-up if a printout fails?
    John T. Sampson

    I'm runnning the latest build of Lookout 5.1 on a Windows 2000 PC. I have experienced this on several other of the same systems as well. For example, I have a report panel configured to print automatically at 0700 and typically there's no problem, but if the default printer fails for some reason and is not able to complete the print job, Lookout's app consumes 100% CPU and will not shutdown when commanded - instead it reports a "print job in progress." It would ne nice if Lookout would let the print job timeout and resume normal operations. Instead, I must "end task" Lookout and restart it to resume.
    Any other thoughts? Can we configure a timeout on the print job?
    Thanks again for your comments, JTS
    John T. Sampson

  • Why does sync fail when i put music on

    i try and put my music on it put about 3 of my 250 songs i want to down load then says failed to sync and wont put the rest on i have tryed resting al and returning it to the factory settings but nothing is working what can i do

    Do the non-syncing songs play in iTunes on the computer?
    Try
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or               
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    another USB port
    Another cable

  • Why does FaceTime fail all the time?

    Can't talk to anyone it freezes and then fail b4 the pick up and says its connecting on one side but not the other.

    Unable to make or receive FaceTime calls after April 16, 2014

  • Why does Step Fail cause a Lost ActiveX Connection Runtime Error?

    A Step failure is a legitimate event. It should be recorded and execution should pass to the next step or cleanup as set up in the sequence or Station config. But I get this 17702 runtime error popup everytime. The steps are setup as single threads, dynamically loaded and unloaded.

    Hello Bob,
    Error -17702 is a CVI OLE (ActiveX) adapter error. This scenario that I'm familiar with is the following steps:
    1) TestStand's CVI adapter is configured to "Execute Steps in an External Instance of CVI".
    2) From TestStand, step into a CVI code module.
    3) While inside the code module in CVI, click the "Stop" button. This stops the CVI debugger, and TestStand interprets this as error -17702. Here's the error message you see:
    Error Message: Lost ActiveX connection to CVI. The CVI adapter will attempt to reconnect on next execution. [Error Code: -17702]
    Note that if this scenario occurs, ALL CVI steps after this in the sequence will be marked with this same error number.
    In the scenario I just described, the step is listed by TestStand wi
    th a status of "Error", not "Failed".
    Are your steps being marked with a status of "Error" or "Failed"? If they are listed as "Error", then an unrecoverable error (which kills the CVI debugger) is what has happened, and that needs to be corrected.
    For instance, in the scenario I described above, the correction is to NOT click the "Stop" button; always let the CVI debugger execute through the code.
    However, if your steps being marked with a status of "Failed", then perhaps something else is going wrong. I would first repair the installation of TestStand and CVI on your computer to see if that fixes the problem.
    David Mc.
    NI Applications Engineer

  • Why does javascript fail to work at gmail on IBM AIX 5.3 and 6.1 systesms?

    Sorry about asking this question again; but I have not gotten a responce
    in over 6 months.
    Both firefox 3 and seamonkey 2 seem to have the same problem
    on IBM AIX 5.3 and 6.1 systems.
    If I try to login to gmail using their standard method (Not HTML)
    I can not select any folder. If I select a folder firefox hang.
    I just see a message saying "Loading".
    I am also experiencing problems when I access my financial
    institutions (Online banking!).
    I believe the problem is in the javascript implementation.
    Not sure about gmail; but I do know that the problem at
    my financial institusions sites has to do with executing
    a javascript.
    "I really need some help. firefox and seamonkey are the
    only browsers that have been ported to my systems."
    If some one can tell me where to look or what is causing the
    problem I can submit a problem report to IBM and have them
    fix the problem in their version of firefox. So far IBM has not
    been able to figure out what is causing the problem.
    I really should upgrade to firefox 3.6.18 and seamonkey 2.0.14; but
    I can not find a working version. The only thing that works on my
    system is firefox 2.0.0.20 and seamonkey 1.1.18. I keep getting security warning when I uses these browsers.
    I really would appreciate some help!

    Can you start in Firefox safe mode? See [[Safe Mode]]

Maybe you are looking for

  • Is there anything special I need to do to bring over the elements 4.0 program to my new computer?

    Is there anything special I need to do to transfer my elements 4.0 program to my new updated computer? other than the disable and reinstall

  • How can I remove email addresses that are saved in itouch automatically

    It seems that every time I send or receive an email, the recipient email address is saved. how do I remove these email addresses. I do not want to keep some of these addresses. I have also found that if I had typed in the email address wrong, this is

  • =?iso-8859-1?Q?=5BFlash=5D_Rotar_un_tri=E1ngulo?=

    This is a multi-part message in MIME format. ------=_NextPart_000_026F_01C8845B.79B82220 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable No ando mucho con Flash, pero se me ocurri=F3 hacer una botonera que =

  • Lbacsys.lbac_events

    I work with Forms 6i and 10g database and I try to insert a picture into a BLOB column. When I try this I get error: TABLE OR VIEW DOES NOT EXISTS and NO DATA FOUND and it says something about LBACSYS.LBAC_EVENTS. What can I do about it? Thanks in ad

  • Cannot load Create applications

    I have just tried to open Create Photo Collage and I got the message Adobe Photoshop Elements 9 has stopped working. The program is running on Windows 7. All other functions work without a problem. Any ideas please.