Casting across jar boundaries

I'm seeing an odd behavior in my app where I can't cast an object back to its original type and get an
java.lang.ClassCastException: Tests.iPerf.IPerfTestResult cannot be cast to Tests.iPerf.IPerfTestResult error message.
Basically: I have 2 jars, the first a driver loads classes from the test jar.
There is an interface
TestResult
GetTestResult()
that the test jar implements to return back a subtype of TestResult.
i.e. IPerfTestResult extends TestResult.
Later on the driver calls back into the TestJar passing the TestResult it received above and the method tries to downcast from a TestResult back to the original IPerfTestResult.
This is failing.
i.e.
void
Check( TestResult Result)
IPerfTestResult Cast = (IPerfTestResult)Result;
I've added a bunch of tests. the original object can get cast back and forth as expected and even simulating the sequence by calling into a test method works fine its only when the object is stored back in code from the Driver jar and recrosses the boundary that the issue manifests.
Doing alot of tests the class name is the expected IPerfTest for Result in Check. Via reflection I can even see/access the additional fields for the subtype but
Result.class != IPerfTestResult.class even though its the same original object.
Does anyone know what's going on?
Thanks
Ben
Edited by: 808374 on Nov 8, 2010 2:21 PM

You cannot cast to a class that was loaded by a different classloader.

Similar Messages

  • Contents of clips are copies across clip boundaries

    V6 iMovie HD: single video frames identifying clips, when viewed in the "clip viewer" mode, do not represent the clips contents. Image is erroneously copies from previous clip. In addition, when adding certain transitions and/or titles, subsequent clips get corrupted with 1 second or so the following clips' video.
    G4 Tower   Mac OS X (10.4.7)  

    It sounds like data may not be correctly saved to/read from the disk.
    Is the iMovie project stored on an external drive? If so, make sure it uses the Mac OS Extended disk format. More here:
    http://discussions.apple.com/message.jspa?messageID=2920540#2920540
    Karl

  • Portlet to Portlet Across Pages

    Does anyone know the recommended way to do portlet to portlet interaction ACROSS
    PAGES? i've seen the 'martini' portlet but this doesnt show how one portlet can
    affect another portlet on a different page.
    I've tried connecting webflows via proxy nodes (doesn't work right, causes portlet
    B to be included in portlet A's page, which will cause errors)
    I've started to do a "forward" customization to the portal like the "redirect"
    example on dev2dev, but this doesn't work well either.
    thansk

    thanks, i appreciate the feedback. that's how i'm going to try it...
    "William Young" wyoungATsapient.com wrote:
    >
    Heya Kurt,
    We did almost the same thing you are trying to do (we had a quick search
    input
    box in our header instead of a portlet that appeared everywhere).
    We implemented it using a tag such as this:
    <portal:form event="bea.portal.framework.internal.refresh"
    namespace="search"
    pageName="SearchResultPage" name="frmBasicSearch" method="GET">
    The SearchResultsPage rendered our SearchResultsPortlet. The search
    results
    portlet's webflow had the refresh event go directly the SearchIP (which
    is a bit
    weird...but it worked). We did this in Portal 4.0.
    Will Young
    "Kurt C" <[email protected]> wrote:
    you could do this, but that doesn't require portlet to portlet communication
    at
    all. the point is that the search form should be painted on all screens
    but display
    it's results on only 1 page. The results "window" is very large, the
    search form
    is very small.
    after some thought, i think the best way to do this is by doing an actual
    page
    change and passing the search criteria with the request. It's not ideal,
    but i
    think the only option for portlet to portlet across page boundaries
    "Adnan Bukhari" <[email protected]> wrote:
    I don't know much about your design but to keep things simple if you
    design your
    search portlet such that it also shows search result the you can use
    the portlet
    on both pages. Store search result in pipeline session.
    Regards
    Adnan
    "Kurt C" <[email protected]> wrote:
    The portlet can be made to post to itself. You can then have an
    InputProcessor which can intercept the data and store it in the session.
    Then when a user clicks on the second page, on refresh the second
    portlet can retrieve the data from the session.but this doesn't accomplish the goal of sending the user from page1
    to 2, they
    are having to do it manually
    Also, I think that instead of posting to the same page, the portletcan
    be made to post to the second page after going through the input
    processor. That way you can have the user fill in the form data,then
    i've tried this with createPageChange url and with Proxy nodes (i.e.,
    IP to IP
    in another webflow , represented on another page)
    and it doesn't work
    i think maybe i can just do a regular "get" to the second page andlet
    it do the
    processing
    Jalpesh Patadia <[email protected]> wrote:
    Kurt C wrote:
    Yes, i figured that. But what if portlet A (on page 1) is submittingform data
    to portlet B (on page 2)? How does the form data get put into the
    session?
    I suppose
    you can just do a pageChangeUrl tag and pass in the parameters,
    but
    then you really
    couldnt' use any webflow , correct??The portlet can be made to post to itself. You can then have an
    InputProcessor which can intercept the data and store it in the session.
    Then when a user clicks on the second page, on refresh the second
    portlet can retrieve the data from the session.
    Also, I think that instead of posting to the same page, the portletcan
    be made to post to the second page after going through the input
    processor. That way you can have the user fill in the form data,then
    hit submit which will then activate the second page. Once the portlet
    in
    the second page is being rendered, it can retrieve the informationfrom
    the session and display appropriate information.
    Thanks,
    Jalpesh.
    Jalpesh Patadia <[email protected]> wrote:
    One way which I can think of is to put the data you want to share
    into
    the pipeline session. Then when the portlet on another page is
    accessed,
    it would fetch that data and then change it's display accordingly.
    Thanks,
    Jalpesh.
    Kurt C wrote:
    Does anyone know the recommended way to do portlet to portlet
    interaction
    ACROSS
    PAGES? i've seen the 'martini' portlet but this doesnt show how
    one
    portlet can
    affect another portlet on a different page.
    I've tried connecting webflows via proxy nodes (doesn't work right,causes portlet
    B to be included in portlet A's page, which will cause errors)
    I've started to do a "forward" customization to the portal like
    the
    "redirect"
    example on dev2dev, but this doesn't work well either.
    thansk

  • Will the Application Scope be shared across the cluster in a multi-node OC4

    Hi,
    I have the following requirement:
    Users of the application can only have single (browser) session. When a user who already has a session connects again, he should no longer be allowed to access the older session.
    My proposed implementation is:
    -     After successful login – possibly using a Session Listener - an entry is made in a HashMap UserSessions that lives in the application scope. Key is the username, value is the session id (HttpSession.getId()).
    -     For every request, using a ServletFilter, we check whether the session is still in the UserSessions HashMap for the current user. If a new session has been created for the same user, the session id for that new session is in the UserSessions map and the servletfilter will not find the session. In that case, the filter should invalidate the session and forward to the user to an error page.
    However, the application will run on a multi-node OC4J cluster. I am starting to wonder:
    Will the Application Scope be shared across the cluster in a multi-node OC4J environment?
    I know session state can be shared. But what application state/scope?
    Does anyone know? Do I have to do anything special in the cluster or the application to get this to work?
    Thanks for your help.
    Lucas

    gday Lucas --
    Application scope is not replicated across JVM boundaries with OC4J.
    I'm sure this used to be described in the doc, but I can't find it now from a quick scan.
    If you wanted to use this type of pattern, you could look to use a Coherence cache as distribution mechanism to share objects across multiple JVMs/nodes.
    -steve-

  • Q. Reader-Writer lock across unrelated processes?

    What mechanism would you suggest to implement Reader-Writer locks across unrelated processes?
    Though the documentation for pthread_rwlock_ functions state
    Synchronization Across Process Boundaries
    Each of the synchronization primitives can be set up to be used across process
    boundaries. This is done quite simply by ensuring that the synchronization variable is
    located in a shared memory segment and by calling the appropriate init() routine,
    after the primitive has been initialized with its shared attribute set as interprocess.
    but they work only if the processes are forked off from a given process which initialized the relevant synchronization variable and not if the processes are totally unrelated.

    What mechanism would you suggest to implement Reader-Writer locks across unrelated processes?
    Though the documentation for pthread_rwlock_ functions state
    Synchronization Across Process Boundaries
    Each of the synchronization primitives can be set up to be used across process
    boundaries. This is done quite simply by ensuring that the synchronization variable is
    located in a shared memory segment and by calling the appropriate init() routine,
    after the primitive has been initialized with its shared attribute set as interprocess.
    but they work only if the processes are forked off from a given process which initialized the relevant synchronization variable and not if the processes are totally unrelated.

  • Clustering EJB's Across a Wide-Area-Network

     

    Hi Eric,
              If you have a highly reliable database access or replication strategy, I
              feel it is better to rely on that for failover across sites. IMHO.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com/coherence.jsp
              Tangosol Coherence: Clustered Replicated Cache for Weblogic
              "Eric Ma" <[email protected]> wrote in message
              news:[email protected]...
              >
              > As we are facing the same decision I am really interested in this thread.
              Are
              > you suggesting that because multicast across a WAN is not as reliable as
              in a
              > LAN environment, so we shouldn't use it? Do you think it is better to
              have multiple
              > LAN-based WebLogic clusters which do not talk to each other, and rely on
              database
              > replication for failover? Thanks for any advice.
              >
              > Eric Ma
              >
              > "Cameron Purdy" <[email protected]> wrote:
              > >>>I am working with a customer that is considering clustering several
              > >>>Stateless EJB's across a Wide-Area-Network and I'd like to find out
              > >if
              > >>>anyone else has successfully implemented such an environment. If so,
              > >what
              > >>>were the implications (performance, reliability, whatever). If not,
              > >perhaps
              > >>>someone can provide an alternative method for accomplishing load
              balancing
              > >>>and failover between the 2 sites.
              > >
              > >> WLS clustering should work fine across WAN., But as you know multicast
              > >> is not a reliable protocol so you should be very careful in setting
              > >up
              > >> the routers which will route the multicast packets across subnets.
              > >As
              > >> long as multicast packets live and sent reliably over the network you
              > >> should be fine.
              > >
              > >WLS can cluster fine across a lightly-loaded relatively-reliable WAN.
              > >You do
              > >need to turn on the ability to multi-cast across the WAN, which is
              usually
              > >a
              > >battle in and of itself. Usually, a separate cluster of WLS is run on
              > >each
              > >end of the WAN, and is not clustered across the WAN. The real question
              > >for
              > >setting up multi-site DR plans with Weblogic is "what are you failing
              > >over
              > >across the sites?"
              > >
              > >For example, do you have replicated databases? Master/slave or both live?
              > >How do you detect site failure? Is the database at a different site with
              > >the
              > >WL servers at their own 2 sites? Usually it's the database that handles
              > >the
              > >multi-site failover, not the WebLogic.
              > >
              > >BTW - if you're using Coherence with WebLogic, in our 1.2.1 release we
              > >have
              > >added a compression network filter that can drastically improve
              throughput
              > >with WAN clustering. It is available starting with 1.2.1 build 86, which
              > >is
              > >planned for availability later today.
              > >
              > >Peace,
              > >
              > >Cameron Purdy
              > >Tangosol, Inc.
              > >http://www.tangosol.com/coherence.jsp
              > >Tangosol Coherence: Clustered Replicated Cache for Weblogic
              > >
              > >
              > >"Kumar Allamraju" <[email protected]> wrote in message
              > >news:[email protected]...
              > >>
              > >
              > >
              > >
              >
              

  • Using an EJB as a source for a Model

    Hi,
    Before starting with this post content it might be helpful to give you the desired output of what I am trying to do. Basically I need to have an HTML table that is populated from an EJB.
    The current proposed solution is as follows: the Model that is associated with a TiledView will be used as client for the EJB. The Model will make use of the methods in the EJB to get different java.util.Collection objects for different Helper classes based on the find criteria.
    For example, if the EJB represent a book and there is a home method to retrieve a list of books based of the book category. In this case the Model will act as a client of the EJB, retrieve the list of books and use the different methods in the Model, such as insert and retrieve, to get the list of books and to add a book up on request.
    I know that my post might not be clear. But as I said, all that is needed is to have a TiledView that displays books information, which are retrieved from an EJB, and allow a user to select a book to display its information.
    My suggested solution could be completely wrong, not visible and reflect a bad design. Please if any one went through such a situation give me a hint.
    Regards,
    Basil Mahdi

    Basil,
    This is some material I snipped from an internal Sun forum I posted to regarding a simple EJB Jato integration example.
    I hate to give just any EJB JATO example because frankly there are so many different use cases with EJBs that no one example will match up against your needs. You can use an EJB
    - in a Custom Model Operation you can encapsulate an EJB Method invocation
    - in a Custom Command you can encapsulate any arbitrary code include calling an EJB
    - as the backingstore for a CustomModel
    - use a BeanAdapterModel to adapt to the value/transfer beans which are uses as parameters or return values of EJB methods
    - use an ObjectAdapterModel to adapt an EJB directly by assigning the EJB reference in setObject() in the constructor of the OAM
    As you can see, an EJB is just another business object API...its just that you acquire the reference with a few lines of ugly JDNI and Home interface APIs.
    Nevertheless, here is some guidance. I would like to reinforce that there is no direct solution for adapting an EJB from BAM; EJBs are not JavaBeans. What is a solution is to have the parameters or return values of your EJBs use value/transfer object patterns in the form of JavaBeans. The BAM may be used to adapt to these parameters or return value of the EJB.
    In short, when using BAM in a tileview to work with an EJB, there is little difference than using BAM at any other time, you the developer, must manage/code the placement of the EJB parameters directly into the BAM or in a scoped attribute to be used by the BAM.
    In another example, you may have a SLSB which models an employee called EmployeeSupport. You may have a transfer object (JavaBean) of type EmployeeRecord. You may have operations on the EJB including:
    public EmployeeRecord findEmployee(String employeeID);
    public EmployeeRecord[] findEmployees(String location);
    public void updateEmployee(EmployeeRecord);
    One could create a BAM in the studio called EmployeeModel
    You would set the JavaBean class to EmployeeRecord
    You would run the Design Action to bootstrap the properties of EmployeeRecord as fields on the model
    Now you have a model which is ready to adapt to EmployeeRecord bean.
    Feel free to add material to the EmployeeModel to make a richer API; for instance you could encapsulate some EJB'ish code in their to act as a service locator for a EmployeeSupprt SLSB.
    protected static EmployeeSupport support;
    static {
    javax.naming.Context context = new javax.naming.InitialContext();
    Object objref = context.lookup("ejb/EmployeeSupport");
    EmployeeSupportHome home = (EmployeeSupportHome)
    javax.rmi.PortableRemoteObject.narrow(objref,EmployeeSupportHome .class);
    support = home.create();
    public static EmployeeSupport getEmployeeSupport() {
    return support;
    If you really wanted to hide the EJB'ishness of the EmployeeSupport you could even wrap the behavior and handle exceptions, etc.
    public static EmployeeRecord findEmployee(String employeeID) {
    return getEmployeeSupport().findEmployee(employeeID);
    public static EmployeeRecord[] findEmployees(String location) {
    return getEmployeeSupport().findEmployees(location);
    public static void updateEmployee(EmployeeRecord record) {
    return getEmployeeSupport().updateEmployee(record);
    You could even help the view developer latch EJB transfer objects into the model for adaption; saving them from the effort
    public void adaptEmployee(String employeeID) {
    setBean(findEmployee(employeeID));
    public void adaptLocation(String location) {
    setBean(findEmployees(location));
    public void save() {
    updateEmployee((EmployeeRecord)getBean());
    Create a search ViewBean, place a text field on it for an EmployeeID and button labeled Find. Leave the EmployeeID model binding default (to use a DefaultModel memory model). Open the handle request event method on the viewbean for the Find button.
    public void handleFindRequest....{
    EmployeeModel model = .....;
    model.adaptEmployee(getEmployeeIDChild().getValue());
    // display Edit page which has fields for editing the employee record
    Create an edit ViewBean, with editable fields bound to the EmployeeModel; add an button labeled update
    public void handleUdpateRequest....{
    EmployeeModel model = .....;
    model.save();
    // do whatever is next ....
    Notice that the we are jumping across request boundaries in this example. Using just default model reference configurations, the EmployeeModel will be created brand new during the Update request and there will be no bean currently adapted. Most likely, you would want to have the model (and hence its adapted bean) stored in HttpSession across at least these related requests. In this case the model reference used by the search ViewBean would have "store in session" true. and the model reference in the edit ViewBean would have "look in session" true.
    What we recommend is that someone who understands the business tier design take the responsibility to create a set of "business delegates" as JATO models. An advanced technique would be to encapsulate these models in a component library JAR which multiple web applications can reuse. As you can imagine, there are so many ways to do the same thing. You could just as easily make a CustomModel or SimpleCustomModel to adapt to your EJB. You can also, if your EJB uses primitives or JavaBeans (or graphs of JavaBeans) for all parameters, use the ObjectAdapterModel to directly connect to an EJB.

  • EJB 3 reference problem

    Hello all.
    I use glassfish b48.
    I need two classes with unidirectional ManyToOne relation:
    Pupil -> Grade
    Pupil.java:
    @Entity
    public class Pupil extends Person {
        @ManyToOne
        private Grade grade;
    }Person.java:
    @Entity
    public class Person extends VersionControl {
    ...VersionControl.java:
    @Entity
    @Inheritance(strategy=InheritanceType.JOINED)
    public class VersionControl implements Serializable {
        @Id
        @GeneratedValue(strategy = GenerationType.AUTO) 
        private Long id;
        ...Grade.java:
    @Entity
    public class Grade extends VersionControl {
    ...When i change Pupil-instance grade attribute from 'A' to 'B' grade attribute in pupil instance, database updates successfully, but grade attribute of Pupil instance contents Grade-class instance with all NULL fields, and
    em.createQuery("select o from Grade o where order by o.name").getResultList();returns Collection with all Grade objects, but on the 'B-object-place' i see object with all fields = null.
    i.e.
    id       name
    "1"        "A"
    "3"        "C"I tried to run on various platforms and glassfish versions, on JavaDB and PostgreSQL database, various CascadeType's - same result.
    When i redeploy my application(or restart server;-)) all is ok.
    If i create new Grade object and use it for setting to Pupil attribute a don't see this problem.
    But if i use "old" Grade object createed before last deploying of application this problem occur.
    Where is my problem?

    The issue is that the Local EJB view was not intended to be accessible across application boundaries. The Local view
    requires pass-by-reference semantics, which implies that both the caller and callee are using the same classloader.
    Some products support cross-application Local EJB access but it's not portable.
    One of the related issues is that the requirement for packaging ejb's in their own ejb-jar is too cumbersome. We're fixing this
    in EJB 3.1 so that EJB components can be packaged directly in a .war. See my blog posting here : http://blogs.sun.com/kensaks/entry/simplified_ejb_component_packaging

  • EJBException when binding a map containing an entityContext.getEJBLocalObject()

    I am attempting to bind a map which contains keys that point to entityContext.getEJBLocalObject()
    in ejbPostCreate. This causes an exception to be thrown, which makes it appear
    that BEA is trying to prevent a remote client from getting an error if/when they
    lookup since they are not local. Are there any ways to get around this, or do
    this differently? We know that this lookup will only occur on the server, so we
    would like to store this in JNDI.
    Thanks so much, Jennifer
    METHOD:
    public void ejbPostCreate(int id){ Context initialContext = null; Hashtable ht
    = new Hashtable(); ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    ht.put(Context.PROVIDER_URL,"t3://localhost:7001");
    try { initialContext = new InitialContext(ht); } catch (NamingException e) { try
    { initialContext.close(); } catch (Exception ex) { } } Object objref = initialContext.lookup("ABCMap");
    if (objref != null){ if (objref instanceof HashMap){ HashMap map = (HashMap)objref;
    ABCPrimaryKey key = (ABCPrimaryKey)entityContext.getPrimaryKey(); ABCLocal value
    = (ABCLocal)entityContext.getEJBLocalObject(); map.put(key, value); initialContext.rebind("ABCMap",
    map); /* exception is thrown */ } } }
    EXCEPTION:
    <Mar 12, 2002 3:49:44 PM CST> <Info> <EJB> <EJB Exception in method: ejbPostCreate:
    javax.ejb.EJBException: Attempt to pass a reference to an EJBLocalObject to a
    remote client. A local EJB component may only be accessed by clients co-located
    in the same ear or standalone jar file. javax.ejb.EJBException: Attempt to pass
    a reference to an EJBLocalObject to a remote client. A local EJB component may
    only be accessed by clients co-located in the same ear or standalone jar file.

    Clients of a local bean must be in the same .ear file or same .jar file. Even if you are only looking them
    up on the same server, they may not be referenced across application boundaries. So, you may not store them
    in the global JNDI tree.
    Bill
    Jennifer Mason wrote:
    I am attempting to bind a map which contains keys that point to entityContext.getEJBLocalObject()
    in ejbPostCreate. This causes an exception to be thrown, which makes it appear
    that BEA is trying to prevent a remote client from getting an error if/when they
    lookup since they are not local. Are there any ways to get around this, or do
    this differently? We know that this lookup will only occur on the server, so we
    would like to store this in JNDI.
    Thanks so much, Jennifer
    METHOD:
    public void ejbPostCreate(int id){ Context initialContext = null; Hashtable ht
    = new Hashtable(); ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    ht.put(Context.PROVIDER_URL,"t3://localhost:7001");
    try { initialContext = new InitialContext(ht); } catch (NamingException e) { try
    { initialContext.close(); } catch (Exception ex) { } } Object objref = initialContext.lookup("ABCMap");
    if (objref != null){ if (objref instanceof HashMap){ HashMap map = (HashMap)objref;
    ABCPrimaryKey key = (ABCPrimaryKey)entityContext.getPrimaryKey(); ABCLocal value
    = (ABCLocal)entityContext.getEJBLocalObject(); map.put(key, value); initialContext.rebind("ABCMap",
    map); /* exception is thrown */ } } }
    EXCEPTION:
    <Mar 12, 2002 3:49:44 PM CST> <Info> <EJB> <EJB Exception in method: ejbPostCreate:
    javax.ejb.EJBException: Attempt to pass a reference to an EJBLocalObject to a
    remote client. A local EJB component may only be accessed by clients co-located
    in the same ear or standalone jar file. javax.ejb.EJBException: Attempt to pass
    a reference to an EJBLocalObject to a remote client. A local EJB component may
    only be accessed by clients co-located in the same ear or standalone jar file.

  • Updater fails with Error U44M1I0

    I have seen several similar posts to this one, but none seemed exactly the same.
    I am trying to install 3 updates for my Adobe products on OS X 10.7.4. I have a Creative Cloud subscription.
    The updater gives this error log:
    DPS Desktop Tools CS6 2.04.1 Update
    Installation Successful. Error Code: U44M1I0
    Adobe Media Encoder CS6 6.0.2 Update
    Installation Successful. Error Code: U44M1I0
    Adobe InDesign CS6 8.0.1 update
    Installation Successful. Error Code: U44M1I0
    I enabled the "ribs3debug" mode as suggested in other threads.
    Here's the contents of the InDesign error log:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.7.4 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    deploymentFile option not given
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 44 milliseconds (0.044 seconds)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate
    Updating media info for: {05DDE640-EBCC-11E1-8A98-35B78AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_IL-220812013903/AdobeInDesign8AppLang-en_IL- 220812013903.dmg
    Updating media info for: {07BB5D70-EBCD-11E1-B49F-0FE18AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-hu_HU-220812014618/AdobeInDesign8AppLang-hu_HU- 220812014618.dmg
    Updating media info for: {09929A90-EBCE-11E1-AC69-F00A8BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-sv_SE-220812015331/AdobeInDesign8AppLang-sv_SE- 220812015331.dmg
    Updating media info for: {1C76F326-EBCF-11E1-A733-32568BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppBase2-mul-220812020326/AdobeInDesign8AppBase2-mul-22 0812020326.dmg
    Updating media info for: {2495EBF4-EBCD-11E1-A7C8-AEE58AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-it_IT-220812014705/AdobeInDesign8AppLang-it_IT- 220812014705.dmg
    Updating media info for: {24DDC164-EBCC-11E1-962D-DDBB8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-fr_MA-220812013957/AdobeInDesign8AppLang-fr_MA- 220812013957.dmg
    Updating media info for: {255D1016-EBCE-11E1-8C5B-970F8BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-tr_TR-220812015417/AdobeInDesign8AppLang-tr_TR- 220812015417.dmg
    Updating media info for: {408ED52E-EBCC-11E1-AFB4-84C08AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_GB-220812014043/AdobeInDesign8AppLang-en_GB- 220812014043.dmg
    Updating media info for: {41164F6C-EBCD-11E1-88CB-54EA8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-ja_JP-220812014753/AdobeInDesign8AppLang-ja_JP- 220812014753.dmg
    Updating media info for: {42EC21C6-EBCE-11E1-AE4B-3A148BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-uk_UA-220812015507/AdobeInDesign8AppLang-uk_UA- 220812015507.dmg
    Updating media info for: {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_US-220812014130/AdobeInDesign8AppLang-en_US- 220812014130.dmg
    Updating media info for: {5CF79D62-EBCD-11E1-833A-07EF8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-ko_KR-220812014840/AdobeInDesign8AppLang-ko_KR- 220812014840.dmg
    Updating media info for: {60323BF8-EBCE-11E1-BC1D-D6188BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-zh_CN-220812015555/AdobeInDesign8AppLang-zh_CN- 220812015555.dmg
    Updating media info for: {78CEC222-EBCD-11E1-B799-B9F38AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-nb_NO-220812014928/AdobeInDesign8AppLang-nb_NO- 220812014928.dmg
    Updating media info for: {7A081202-EBCC-11E1-A2E4-DBC98AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-es_ES-220812014219/AdobeInDesign8AppLang-es_ES- 220812014219.dmg
    Updating media info for: {7D33794C-EBCE-11E1-B7F0-881D8BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-zh_TW-220812015643/AdobeInDesign8AppLang-zh_TW- 220812015643.dmg
    Updating media info for: {90E58E06-EBCB-11E1-8CE3-C3068AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-cs_CZ-220812013550/AdobeInDesign8AppLang-cs_CZ- 220812013550.dmg
    Updating media info for: {959D400A-EBCC-11E1-BB1C-74CE8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-es_MX-220812014305/AdobeInDesign8AppLang-es_MX- 220812014305.dmg
    Updating media info for: {95BC6218-EBCD-11E1-9FC4-60F88AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-nl_NL-220812015016/AdobeInDesign8AppLang-nl_NL- 220812015016.dmg
    Updating media info for: {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppBase-mul-220812015950/AdobeInDesign8AppBase-mul-2208 12015950.dmg
    Updating media info for: {B02F5558-EBCB-11E1-A2C2-4EA98AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-da_DK-220812013640/AdobeInDesign8AppLang-da_DK- 220812013640.dmg
    Updating media info for: {B16842A2-EBCD-11E1-9A00-FAFC8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-pl_PL-220812015102/AdobeInDesign8AppLang-pl_PL- 220812015102.dmg
    Updating media info for: {B2A19462-EBCC-11E1-9FF3-1AD38AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-fi_FI-220812014353/AdobeInDesign8AppLang-fi_FI- 220812014353.dmg
    Updating media info for: {CC5435AA-EBCB-11E1-9C3D-F4AD8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-de_DE-220812013727/AdobeInDesign8AppLang-de_DE- 220812013727.dmg
    Updating media info for: {CF2830AA-EBCC-11E1-9DB7-C0D78AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-fr_CA-220812014441/AdobeInDesign8AppLang-fr_CA- 220812014441.dmg
    Updating media info for: {CF8AE050-EBCD-11E1-B36C-A0018BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-pt_BR-220812015152/AdobeInDesign8AppLang-pt_BR- 220812015152.dmg
    Updating media info for: {EA0D10DA-EBCB-11E1-A012-9BB28AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_AE-220812013817/AdobeInDesign8AppLang-en_AE- 220812013817.dmg
    Updating media info for: {EBE8085A-EBCC-11E1-9109-67DC8AAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-fr_FR-220812014530/AdobeInDesign8AppLang-fr_FR- 220812014530.dmg
    Updating media info for: {ECD40F7E-EBCD-11E1-BFD1-48068BAC8644}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: InDesignCS6-AdobeUpdate
      Path: /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-ru_RU-220812015241/AdobeInDesign8AppLang-ru_RU- 220812015241.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    [       0] Thu Sep 27 16:04:29 2012 DEBUG
    InstallerSession.CreatePayloadSession: Checking for unsupported payloads
    [       0] Thu Sep 27 16:04:29 2012  INFO
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    [       0] Thu Sep 27 16:04:29 2012 DEBUG
    ______ InstallerSession.CreatePayloadSession: Checking session payloads ______
    [       0] Thu Sep 27 16:04:29 2012  INFO
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [       0] Thu Sep 27 16:04:29 2012 DEBUG
    InstallerSession.CreatePayloadSession: Load PDB
    ______ InstallerSession.CreatePayloadSession: Checking incompatible payloads ______
    ______ GetIncompatiblePayloadBuildsInstalled ______
    ______ InstallerSession.CreatePayloadSession: Checking already installed payloads ______
    {03740852-60C2-4B1A-A3DA-1EDB082C6401} Adobe Linguistics CS6
    {0377892E-FCAC-46EC-AA70-C6AC8A86A81F} Dynamic Link Media Server
    {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6
    {0D9E083D-1ABE-4B41-B04D-B79947317FF8} AdobeIdeaPluginCS6
    {11C91E36-78ED-11E1-8DB4-73755723D190} Adobe InDesign CS6 Common Base Files
    {14688254-5CD1-11E1-8D70-4DBBF019A2FF} DPS Desktop Tools CS6
    {148542D8-49CA-482A-A334-1D54C5A9D53B} Adobe XMP Panels
    {1F955A4A-F365-4379-AEE2-B7C83E1AA883} Adobe Photoshop CS6 Support
    {2591B843-8028-4395-9DEE-03AF8D631539} Adobe Player for Embedding 3.3
    {26F763C9-076F-473D-9A0E-4050C973737C} AdobeColorJA CS6
    {3071EDD7-EA5B-4CAC-B4D0-4D4D664154D1} Adobe Photoshop CS6 English Language Pack_AdobePhotoshop13-en_US
    {311CDC89-AC18-4344-9EC9-0225328C73D3} Required Common Fonts Installation
    {327492D4-78EB-11E1-8ABE-84C55623D190} Adobe InDesign CS6 Application Base Files
    {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6
    {3CB7E1A8-78E9-11E1-A332-DF895723D190} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-en_US
    {4482EF4A-376B-46DE-9B17-E377232328E0} PDF Settings CS6
    {48623899-C152-457D-9B30-1F957332AC2F} AdobeColorPhotoshop CS6
    {49F7E5E0-2C04-48C9-9BB7-BC91AC0AE6F1} Adobe Extension Manager CS6_6.0.2_AdobeExtensionManager6.0All
    {4F427880-01EA-4E0F-AAE2-9ADE97563A21} Adobe Utilities CS6
    {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0
    {50F5A7C9-1E43-4860-AED8-7F8722691F17} Adobe ExtendScript Toolkit CS6
    {51C77DC1-5C75-4491-8645-A17CC33F5A36} AdobeColorEU CS6
    {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer
    {554A7BA9-8879-496E-BC3D-93650613DDE5} Adobe Photoshop CS6 Support_13.0.1_AdobePhotoshop13-Support
    {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6
    {5BCA5B05-A805-42A3-86F8-6689B7C1E907} Adobe Bridge CS6_5.0.1_AdobeBridge5-mul
    {6040E054-500A-427A-9DA2-349F0FEB19D1} Adobe Illustrator CS6 Core_AdobeIllustrator16en_USLanguagePack
    {68E6C82A-78E9-11E1-8AE1-E28A5723D190} Adobe InDesign CS6 Application Feature Set Files
    {74EB3499-8B95-4B5C-96EB-7B342F3FD0C6} Adobe Photoshop CS6 Driver
    {78E38D75-4D92-4F6E-B631-17A436BED680} AdobeColorVideoProfilesCS CS6
    {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2
    {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6
    {8467887D-92F1-435C-B387-A7551B88EC70} Adobe NPS Panel
    {84901376-1C55-4BD3-AD2C-F9BDB4449DAC} PDF Settings CS5
    {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core
    {97BA0109-F6BE-4F50-8904-C19442D7216E} Adobe Bridge CS6
    {9FC6805B-9FD9-410A-A620-51D58644999D} Camera Profiles Installer_7.1_AdobeCameraRawProfile7.0All
    {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6
    {A9E40F78-E54D-494F-94A9-5D502F8DD1E1} Adobe WinSoft Linguistics Plugin CS6
    {AA0D312F-1570-4E7E-9A7D-E191E0090FEC} AdobeHelp
    {AAF0D225-F129-40F2-916E-12E28DBD19ED} Adobe Illustrator CS6 Core
    {AC76BA86-1033-F400-7760-000000000005} Acrobat X Pro
    {AC85D480-BE25-4B01-84BE-E8A5932E39DB} Adobe Hunspell Linguistics Plugin CS6
    {B5BC75FC-908D-4E1E-A1EE-09A3FDBBEC77} AdobeIdeaPluginCS6-loc
    {B67ED9AA-F372-40CC-89AB-F5D8FBF56CD4} Adobe Illustrator CS6 Support
    {B98E0DCB-1A75-4394-9813-3A114AA3891D} Adobe Mini Bridge CS6
    {BAA50E10-F61C-11E0-AC88-C17AEB9B6A79} Adobe Toolhints CS6
    {BB5AB971-EC87-4563-B070-4396AFE93414} Acrobat Professional
    {BB66788C-4C4F-4EB0-B146-9178857DE287} AdobeColorNA CS6
    {C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6
    {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6
    {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6
    {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7
    {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D} Recommended Common Fonts Installation
    {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport
    {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro
    {E51F8824-78E8-11E1-AD81-3C805723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_US
    {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6
    {E9C77AF1-5C15-4C59-BA6F-88CB319EE9C8} Adobe CSXS Infrastructure CS6_3.0.2_AdobeCSXSInfrastructure3-mul
    {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6
    {ED027C6A-DE62-4BD2-BD00-3CF183A6BDAD} Adobe Photoshop CS6 Core_13.0.1_AdobePhotoshop13-Core
    {FA148573-E0E5-400F-8978-D95410035F18} Photoshop Camera Raw 7_7.1_AdobeCameraRaw7.0All
    [       0] Thu Sep 27 16:04:30 2012  INFO
    ______ Verify Dependency Subscribers ______
    [       0] Thu Sep 27 16:04:30 2012 ERROR
    DW023: The extension payload: {05DDE640-EBCC-11E1-8A98-35B78AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_IL 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_IL
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {07BB5D70-EBCD-11E1-B49F-0FE18AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-hu_HU 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-hu_HU
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {09929A90-EBCE-11E1-AC69-F00A8BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-sv_SE 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-sv_SE
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {2495EBF4-EBCD-11E1-A7C8-AEE58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-it_IT 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-it_IT
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {24DDC164-EBCC-11E1-962D-DDBB8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-fr_MA 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fr_MA
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {255D1016-EBCE-11E1-8C5B-970F8BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-tr_TR 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-tr_TR
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {408ED52E-EBCC-11E1-AFB4-84C08AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_GB 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_GB
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {41164F6C-EBCD-11E1-88CB-54EA8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-ja_JP 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-ja_JP
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {42EC21C6-EBCE-11E1-AE4B-3A148BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-uk_UA 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-uk_UA
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {5CF79D62-EBCD-11E1-833A-07EF8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-ko_KR 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-ko_KR
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {60323BF8-EBCE-11E1-BC1D-D6188BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-zh_CN 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-zh_CN
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {78CEC222-EBCD-11E1-B799-B9F38AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-nb_NO 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-nb_NO
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {7A081202-EBCC-11E1-A2E4-DBC98AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-es_ES 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-es_ES
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {7D33794C-EBCE-11E1-B7F0-881D8BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-zh_TW 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-zh_TW
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {90E58E06-EBCB-11E1-8CE3-C3068AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-cs_CZ 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-cs_CZ
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {959D400A-EBCC-11E1-BB1C-74CE8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-es_MX 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-es_MX
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {95BC6218-EBCD-11E1-9FC4-60F88AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-nl_NL 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-nl_NL
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {B02F5558-EBCB-11E1-A2C2-4EA98AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-da_DK 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-da_DK
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {B16842A2-EBCD-11E1-9A00-FAFC8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-pl_PL 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-pl_PL
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {B2A19462-EBCC-11E1-9FF3-1AD38AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-fi_FI 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fi_FI
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {CC5435AA-EBCB-11E1-9C3D-F4AD8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-de_DE 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-de_DE
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {CF2830AA-EBCC-11E1-9DB7-C0D78AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-fr_CA 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fr_CA
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {CF8AE050-EBCD-11E1-B36C-A0018BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-pt_BR 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-pt_BR
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {EA0D10DA-EBCB-11E1-A012-9BB28AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_AE 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_AE
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {EBE8085A-EBCC-11E1-9109-67DC8AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-fr_FR 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-fr_FR
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    DW023: The extension payload: {ECD40F7E-EBCD-11E1-BFD1-48068BAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-ru_RU 8.0.1.406 requires a parent with following specification:
              Family: InDesign
              ProductName: Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-ru_RU
              MinVersion: 0.0.0.0
              This parent relationship is not satisfied, because this payload is not present in this session.
              This payload will be ignored in this session.
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    ______ Checking payloads upgrade/conflict relationships ______
    Checking for payloads having same family and product names but different adobe codes
    ______ Checking payloads upgrade/conflict relationships : Passed ______
    Operation order summary:
    When distributing payloads across media, the following order must be preserved, except that
    adjacent payloads with the same mediaGroup can be re-ordered across media boundaries without introducing
    extraneous media swaps for the user.
    [       0] Thu Sep 27 16:04:30 2012  INFO
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406: 0 (0,0)
      {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406: 0 (0,0)
      {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406: 0 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    :: END TIMER :: [CreatePayloadSession] took 374 milliseconds (0.374 seconds) DTR = 85.5615 KBPS (0.0835561 MBPS)
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Patch {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406 can be applied to product {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2 8.0.0.0
    Patch {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406 can be applied to product {E51F8824-78E8-11E1-AD81-3C805723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_US 8.0.0.0
    Patch {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406 can be applied to product {327492D4-78EB-11E1-8ABE-84C55623D190} Adobe InDesign CS6 Application Base Files 8.0.0.0
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    *** Checking patch payload : {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    installDBPath : /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppBase2-mul-220812020326/Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2 8.0.0.0
    Parent Installation directory : /Applications
    *** Checking patch payload : {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    installDBPath : /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppLang-en_US-220812014130/Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {E51F8824-78E8-11E1-AD81-3C805723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_US 8.0.0.0
    Parent Installation directory : /Applications
    *** Checking patch payload : {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    installDBPath : /Users/jryans/Library/Caches/Adobe/AAMUpdater/AdobeInDesignCS6-8.0/8.0.1.406/InDesignCS6- AdobeUpdate/payloads/AdobeInDesign8AppBase-mul-220812015950/Install.db
    Successfully Opened installDB
    Payload is not customized
    Parent AdobeCode : {327492D4-78EB-11E1-8ABE-84C55623D190} Adobe InDesign CS6 Application Base Files 8.0.0.0
    Parent Installation directory : /Applications
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Overwrite property "extensionsOnly" to: 1
    Overwrite property "mode" to: silent
    Overwrite property "patchesOnly" to: 1
    Overwrite property "workflow" to: updater
    Found payload actions:
    Deciding what installer mode to use...
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    Requested action "install" for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    Requested action "install" for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    Requested action "install" for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    Using installer mode 0
    ::START TIMER:: [Setting Payload Actions]
    PayloadPolicyInit: BEGIN Updating installstate for payloads
    PayloadPolicyInit: END Updating installstate for payloads
    PayloadPolicyInit: BEGIN Creating policyNodes
    PayloadPolicyInit: END Creating policyNodes
    PayloadPolicyInit: BEGIN Calculating initial graph
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 0 0, N for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    PayloadPolicyNode._SetPayloadAction: install for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    PayloadPolicyNode.SetAction: FN->FY for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 0 0, N for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    PayloadPolicyNode._SetPayloadAction: install for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    PayloadPolicyNode.SetAction: FN->FY for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406
    PayloadPolicyNode.ComputeConstraint: Static installMode 0 mode constraint is 2 12, Y for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyNode._SetPayloadAction: install for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyNode._SetPayloadAction: install for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyNode.SetAction: IY->IY for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyInit: END Calculating initial graph
    [       0] Thu Sep 27 16:04:30 2012  INFO
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406 is: false
    Action string for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406  is install
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    Setting action for {1C76F326-EBCF-11E1-A733-32568BAC8644} Adobe InDesign CS6 Application Base Files2_8.0.1.406_AdobeInDesign8AppBase2-mul 8.0.1.406 per deployment file.
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Value returned on lookup of payload: {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406 is: false
    Action string for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406  is install
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    Setting action for {5C8FD9A8-EBCC-11E1-8103-34C58AAC8644} Adobe InDesign CS6 Application Language Files_8.0.1.406_AdobeInDesign8AppLang-en_US 8.0.1.406 per deployment file.
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Value returned on lookup of payload: {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406 is: false
    Action string for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406  is install
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    Setting action for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406 per deployment file.
    PayloadPolicyNode._SetPayloadAction: install for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    PayloadPolicyNode.SetAction: IY->IY for {9A1D45CE-EBCE-11E1-9D05-3A228BAC8644} Adobe InDesign CS6 Application Base Files_8.0.1.406_AdobeInDesign8AppBase-mul 8.0.1.406
    [       0] Thu Sep 27 16:04:30 2012  INFO
    END Setting requested payload actions
    [       0] Thu Sep 27 16:04:30 2012 DEBUG
    :: END TIMER :: [Setting Payload Actions] took 28 milliseconds (0.028 seconds) DTR = 142.857 KBPS (0.139509 MBPS)
    [       0] Thu Sep 27 16:04:30 2012  INFO
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: /Applications

    Alright, well, uninstalling and reinstalling InDesign allowed the updates to run successfully, so I guess that fixes it.

  • ADFS- SharePoint 2013 ( Active Directory federation Services)

    Can you please brief me in what scenarios we go for ADFS in SharePoint 2013.
    We have external users for them we create accounts in our AD and then provide access to SP. I am not sure if external users directory is LDAP or Windows AD. Please explain in detail if ADFS can be leveraged in this scenario to provide access to external
    users to our internal domain SharePoint site. Or in other words in which scenario ADFS will come into picture.
    Most of the blogs talks about how to configure ADFS but not explained in what scenario and why it has been implemented.
    Thanks, Ram Ch

    Hi
    You can use AD FS with the Windows Server 2012, Windows Server 2008, or Windows Server 2008 R2 operating systems to build a federated identity management solution that extends distributed identification,
    authentication, and authorization services to web-based applications across organization and platform boundaries. By deploying AD FS, you can extend your organization’s existing identity management capabilities to the Internet.
    AD FS 2.0 enables identity federation, extending the notion of above centralized authentication, authorization, and single sign-on to Web applications and services located virtually anywhere.
    As previously introduced, identity federation relies on standards-based protocols to establish federation trusts between claims providers and relying parties, facilitating secure access to Web
    applications and services across security boundaries.
    For an organization, AD FS 2.0 provides corporate users with a rich federated experience and seamless access to resources located:
    - Inside the corporate intranet;
    - Outside the corporate network in a corporate perimeter network, extranet and/or in the Cloud, for example in the Microsoft Windows Azure platform, the Microsoft’s Platform as a Service (PaaS)
    offering;
    - At the perimeter networks of partner organizations that have made resources available to the considered organization’s users;
    - In the Cloud with Software as a Service (SaaS) vendors that support federated identity
    More Information:
    http://blogs.technet.com/b/abizerh/archive/2013/04/11/more-information-about-sso-experience-when-authenticating-via-adfs.aspx
    Please follow below mentioned article to configure ADFS for your scenario:
    https://samlman.wordpress.com/2015/02/28/configuring-sharepoint-2010-and-adfs-v2-end-to-end/

  • MacBook Pro can't actually connect to Wi-Fi with Self-Assigned IP

    Hi there
    I have a 15 inch MacBook Pro and it can connect to Wi-Fi but have no actual data coming in. And it says self-assigned IP.
    This only happens to my home Wi-Fi, however, I can connect and use Wi-fi at school or anywhere else perfectly. In the mean time, my Android phone and my flatmates' Windows have no problem using the Wi-Fi. The problem has been going on and off for a month, sometimes it works again and sometimes it goes wrong like this again.
    During this time I mostly use my other MacBook Pro 13 inch Retina. Until today, this problem happens on my 13 Retina mac for the first time, and the 15 Pro again as well. A few days ago, my 15 Pro started working again, and today they just gone wrong together at the same time.
    I just found out that my 15 pro can still work if connected to ethernet, but I can't just work in the living room, where the router is. And as you know Retina doesn't support Ethernet.
    I've check on the Internet and found many people have the same problem as I do. I also tried lots of ways to fix it with the information I found online. And nothing works. I even suspect that it's actually my flatmate blocks me out with some setting on the router (Is it possible?)
    Anyways, can someone please help me fix it thoroughly... Please and thanks.

    Each country regulates wireless networking differently. Wi-Fi devices are restricted to certain frequencies and power levels. The client devices try to find out where they are and configure themselves accordingly. Since a wireless access point (WAP) usually does not move across national boundaries, the Wi-Fi regulatory domain (country code) is set by querying the first one to respond when the client initializes itself. You don't have any direct control over it on the client. If your device is picking up the wrong country code, and is therefore locked out of using some Wi-Fi channels or operating at full power, the only lasting solution is to fix or remove the misconfigured WAP.
    To find out which WAP's are broadcasting a wrong country code, do as follows.
    Triple-click anywhere in the line below on this page to select it:
    /S*/*/P*/*/*/*/*/airport -s | open -ef
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign ($) to appear.
    A TextEdit window will open with the output of the command. The first line should look like this:
    SSID BSSID RSSI CHANNEL HT CC SECURITY (auth/unicast/group)
    Each line below that one represents a WAP within range. Compare the two-letter code in the column headed "CC" with the ISO code for your country. The code "X0" means that the country couldn't be determined. If a WAP with a wrong code is not under your control, try restarting the computer as close as possible to your own router.

  • Can you move a software raid 1 from one mac to another

    I have a 2 disc software raid 1 on my powermac and I want to move it to my mac pro. Does anyone know if I can do this?

    It appears that in Mac OS X 10.4, and again in the transition to 10.7, RAID format may have undergone dramatic changes. If you are trying to move a RAID array across those boundaries, you may not have the best results moving the drives directly.

  • How do i get calendar syncing recurring events from outlook to iphone to handle daylight saving time

    When I sync recurring events of my PC Outlook on to the iPhone calendar they appear one hour later during summer i.e. between Mar 26th and October 27. I have a weekly thing every wednesday at 8pm that appears at 9pm in summer - so outlook seems to be sending the info in UTC time but the IPhone isn't compensating for summer time.

    What do you mean "correctly". If I enter a recurring (weekly) event in Outlook at say 8pm every Monday from February till December, then Outlook calendar propagates it at 8pm every Monday from February till December, and I can see it on each Monday regardless of whether it's standard time or summer time. However when I sync with the iPhone calendar through iTunes it transmits just the start date/time and end date, and the iPhone then recreates the series of events (provable because it creates occurences that I have deleted on Outlook). However it propagates the UTC time at the start date, and gets confused by the change to Summer Time in March (and Ocotber). The iphone "corrects" the (UTC) time for Summer Time so it starts at 8pm, all summer the event appears at 7pm, and goes back to 8 in November. I have tested across both boundaries - if a recurrence starts in summer time at 8pm then from November it gets an hour later, 9pm. And you can't solve it by turning off Local Time handling on the iPhone because then all individual events through the summer are an hour out. This is a bug.
    Workaround - enter separate recurrent events for each time period, so in a calendar year 3 events: Jan-end March, April-end October, Nov-Dec

  • Colorsync Utility. Whenever I click on Devices or Filters, it hangs and I have to force quit. Any ideas as to how to fix this?

    I'm having an issue with Colorsync Utility. When I open the utility I can access Profile First Aid, Profiles and the Calculator but whenever I click on Devices or Filters, it hangs and I have to force quit. I recently re-profiled my NEC monitor using xRite i1Profiler Pro and saved the ICC profile as "version 4". When I went to use the Nik's ColorEfex Pro 4 plug-in, in Adobe Photodhop CS5.1 (Creative Suite 5.5), I got a cyan cast across all my images. Nik said it had to do with a corrupt ICC profile but when I ran Profile First Aid, the only profile that came up as needing repair ( and couldn't) was EW-sRGB. I reprofiled the monitor only this time I saved it as "version 2", and the plug-in worked fine. What surprises me is that Colorsync Utilty always used to work without issue, and I never seemed to have a problem creatinga and saving ICC profiles using version 4. Any ideas as to what is causing this problem and  how to fix this?
    Thanks.
    James

    I updated my software, and deleted my history/cache.  Also, when I try to use Preview, it says that it was forced to quit while restoring windows, so when I click restore windows nothing happens.  I can't view anything either.  The only thing I can think that may have caused these problems is I tried to shut down and had to force it to by holding the power button.  I rarely shut it off.

Maybe you are looking for

  • ? How to embed images in email so that they actually show up when sent?

    Hello, out there-- I'm going to send out a group email that contains a few images. I created the doc in Word and pasted into Apple email--this step was successful enough--but when I send to myself as a test, the images don't come through--there's jus

  • Macbook Air won't start after Yosemite update

    Hi all, I have a late 2013 model macbook air (just out of the 1 year warranty). I updated to Yosemite last night and to complete the install I restarted the macbook when prompted, but it never turned back ok. I can now hear the macbook trying to star

  • SLiM themes

    i made up a few slim themes here if anyone else wants to try them out. i was going to submit them to the slim developers, but i didn't see any email address on their site. so i guess it's an "arch only" special.

  • After restoring from backup, iPad hangs after sliding to unlock-I have to reset every time to get it to work--Any fix?

    I have a first generation iPad. After having crashing issues I restored from backup. Since restore, whenever I slide to unlock, it hangs for few minutes.  Then I get a pictrue of the spinning circle but is doesn't spin---just hangs there--frozen. I h

  • 1 computer and 2 users!! HELP!

    Here is the deal. My parents got my an iPhone 3gs for xmas last year. I gave my old iPhone 3g to my dad.. butttt instead of restoring it to the factory settings like i should have i just deleted all of my info from just the phone.. my problem is that