Problems using LiveCycle Designer and Web Services

Hi there.
I've just finished reading all the 485 post in this forum, and I've already looked at all the samples and FAQ's, but I still I have the same problem, and it seems I'm not the only one. Here goes:
I have a .NET Web Service that exposes three methods: one that indicates which PDF to open, one to pre-populate some of the fields of the form and another one to handle the submitted form.
The first method is called within my asp.net web application and simply determines which pdf form to open in a given context. This one is cool and I have no problems here.
The second method populates my pdf form. But here starts the trouble. I can't seem to make the pdf call the web service when it is loaded. I mean, what I want is to tell the pdf form that when he loads (and before he shows on the browser), he should call the web service method that pre-populates him. But I can't seem to be able to do this. I've seen JimmiPham's CheckCreditCard.pdf sample, but what he does is call the web service upon a click on the button. What I wanted is similar but on the load of the form. I've added the following line of javascript code to the initialize method of a textbox:
msg.rawValue = xfa.connectionSet.conn.execute(0);
where msg is the textbox and conn is the name of my connection. I've used this code based on the sample of the designer help. I've also tried to drag and drop the button from the dataview (the one that is automatically generated) but it wont work. If I press it it gives me an error stating that there was an error attempting to read the web service file (*.asmx).
I've also tried to drag and drop the textbox in the generated web service response (in the dataview) but nothing works.
Does anyone have any ideas of what am I doing wrong? This is my first contact with this technology, and I really don't know very well how to manipulate it...
Regards.

Hi Jimmy.<br /><br />Thanks for the help.<br />I'm getting really desperate now. Your sample doesn't work. However I have some more info that might bring some light into the fight...<br />I've seen your sample (awesome work), tried it and saved it. Then I opened it with designer 7.0 and checked the code in the click event of the button.<br />Then I copied/pasted your code into my form. I dragged a text box and a button into my form and left them with the default names (TextBox1 and Button1). In the click event of Button1 I've pasted your code and then changed the parts I wanted, as follows:<br /><br />----- form1.#subform[0].Button1::click - (JavaScript, client) --------------------------------------<br />var cWSURL = "http://localhost/SIIOP.PDFManager/PDFManager.asmx?WSDL";<br /><br />app.alert("Setup webservicex PopulatePDF Interface using WSDL URL: \"" + cWSURL + "\"\n");<br /><br />SOAP.wiredump = true;<br /><br />var service = SOAP.connect(cWSURL);<br /><br />if(typeof service != "object")<br />     app.alert("Couldn't get PopulatePDF WSDL object");<br /><br />if(service.PopulatePDF == "undefined")<br />     app.alert("Couldn't get webservicex.PopulatePDF Call");<br /><br />var e;<br /><br />// I need no parameters<br />//var param =<br />//{<br />//    "CardNumber": xfa.resolveNode("CardNumber").rawValue<br />//};<br /><br />try<br />{<br />    app.alert("Make PopulatePDF SOAP call");<br />     <br />//     var result = service.CheckCC(param);<br />     var result = service.PopulatePDF();<br /><br />     if((result == "") || (result == null))  {<br />          app.alert("WebService PopulatePDF returns nothing");<br />         result = "<no results returned>";<br />          }<br /><br />function dump(obj)<br />{<br /><br />    if(typeof obj == "object")<br />    {<br />        for(var i in obj)<br />        {<br />             app.alert("note1: " + i + " = " + obj[i]);<br />             if (i == "string")<br />               {<br />                    xfa.form.Page1.TextField1.rawValue = obj[i];<br />               }<br />          }<br />    }<br />    else app.alert("note2: " + i + " = " + obj[i]);<br />}<br /><br />dump(result);<br /><br />SOAP.wiredump = false;<br /><br />     //xfa.datasets.data.loadXML(result);<br />     //xfa.resolveNode("CardType").rawValue = result["urn:schemas-microsoft-com:xml-diffgram-v1diffgram"]["NewDataSet"]["Table"].CardTy pe;<br />     //xfa.resolveNode("CardValid").rawValue = result["urn:schemas-microsoft-com:xml-diffgram-v1diffgram"]["NewDataSet"]["Table"].CardVa lid;<br /><br />}<br />catch(e)<br />{<br />     app.alert("Problem with webservicex.PopulatePDF Call: " + e);<br />}<br /><br />I saved the form and opened it with internet explorer. When I press the button, I get the first alert stating that "Setup webservicex PopulatePDF Interface using WSDL URL: http://localhost/SIIOP.PDFManager/PDFManager.asmx?WSDL". That's correct.<br />Then I get an alert that says "Couldn't get PopulatePDF WSDL object", which means that he can't get the object. The result is undefined. But that's odd, since I can establish a data connection to this WSDL using the New Data Connection wizard, and in this wizard it even says which methods and actions the web service has... So, the problem must be in the way the web service exposes himself to the PDF, right? <br />Well anyway, here follows the wsdl I have:<br /><br /> <?xml version="1.0" encoding="utf-8" ?> <br />- <wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://tempuri.org/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"><br />- <wsdl:types><br />- <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"><br />- <s:element name="PopulatePDF"><br />  <s:complexType /> <br />  </s:element><br />- <s:element name="PopulatePDFResponse"><br />- <s:complexType><br />- <s:sequence><br />  <s:element minOccurs="0" maxOccurs="1" name="PopulatePDFResult" type="s:string" /> <br />  </s:sequence><br />  </s:complexType><br />  </s:element><br />- <s:element name="CallPDF"><br />  <s:complexType /> <br />  </s:element><br />- <s:element name="CallPDFResponse"><br />- <s:complexType><br />- <s:sequence><br />  <s:element minOccurs="0" maxOccurs="1" name="CallPDFResult" type="s:string" /> <br />  </s:sequence><br />  </s:complexType><br />  </s:element><br />- <s:element name="HandleSubmittedPDF"><br />  <s:complexType /> <br />  </s:element><br />- <s:element name="HandleSubmittedPDFResponse"><br />- <s:complexType><br />- <s:sequence><br />  <s:element minOccurs="0" maxOccurs="1" name="HandleSubmittedPDFResult" type="s:string" /> <br />  </s:sequence><br />  </s:complexType><br />  </s:element><br />  </s:schema><br />  </wsdl:types><br />- <wsdl:message name="PopulatePDFSoapIn"><br />  <wsdl:part name="parameters" element="tns:PopulatePDF" /> <br />  </wsdl:message><br />- <wsdl:message name="PopulatePDFSoapOut"><br />  <wsdl:part name="parameters" element="tns:PopulatePDFResponse" /> <br />  </wsdl:message><br />- <wsdl:message name="CallPDFSoapIn"><br />  <wsdl:part name="parameters" element="tns:CallPDF" /> <br />  </wsdl:message><br />- <wsdl:message name="CallPDFSoapOut"><br />  <wsdl:part name="parameters" element="tns:CallPDFResponse" /> <br />  </wsdl:message><br />- <wsdl:message name="HandleSubmittedPDFSoapIn"><br />  <wsdl:part name="parameters" element="tns:HandleSubmittedPDF" /> <br />  </wsdl:message><br />- <wsdl:message name="HandleSubmittedPDFSoapOut"><br />  <wsdl:part name="parameters" element="tns:HandleSubmittedPDFResponse" /> <br />  </wsdl:message><br />- <wsdl:portType name="PDFManagerSoap"><br />- <wsdl:operation name="PopulatePDF"><br />  <wsdl:input message="tns:PopulatePDFSoapIn" /> <br />  <wsdl:output message="tns:PopulatePDFSoapOut" /> <br />  </wsdl:operation><br />- <wsdl:operation name="CallPDF"><br />  <wsdl:input message="tns:CallPDFSoapIn" /> <br />  <wsdl:output message="tns:CallPDFSoapOut" /> <br />  </wsdl:operation><br />- <wsdl:operation name="HandleSubmittedPDF"><br />  <wsdl:input message="tns:HandleSubmittedPDFSoapIn" /> <br />  <wsdl:output message="tns:HandleSubmittedPDFSoapOut" /> <br />  </wsdl:operation><br />  </wsdl:portType><br />- <wsdl:binding name="PDFManagerSoap" type="tns:PDFManagerSoap"><br />  <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> <br />- <wsdl:operation name="PopulatePDF"><br />  <soap:operation soapAction="http://tempuri.org/PopulatePDF" style="document" /> <br />- <wsdl:input><br />  <soap:body use="literal" /> <br />  </wsdl:input><br />- <wsdl:output><br />  <soap:body use="literal" /> <br />  </wsdl:output><br />  </wsdl:operation><br />- <wsdl:operation name="CallPDF"><br />  <soap:operation soapAction="http://tempuri.org/CallPDF" style="document" /> <br />- <wsdl:input><br />  <soap:body use="literal" /> <br />  </wsdl:input><br />- <wsdl:output><br />  <soap:body use="literal" /> <br />  </wsdl:output><br />  </wsdl:operation><br />- <wsdl:operation name="HandleSubmittedPDF"><br />  <soap:operation soapAction="http://tempuri.org/HandleSubmittedPDF" style="document" /> <br />- <wsdl:input><br />  <soap:body use="literal" /> <br />  </wsdl:input><br />- <wsdl:output><br />  <soap:body use="literal" /> <br />  </wsdl:output><br />  </wsdl:operation><br />  </wsdl:binding><br />- <wsdl:service name="PDFManager"><br />  <documentation xmlns="http://schemas.xmlsoap.org/wsdl/" /> <br />- <wsdl:port name="PDFManagerSoap" binding="tns:PDFManagerSoap"><br />  <soap:address location="http://localhost/SIIOP.PDFManager/PDFManager.asmx" /> <br />  </wsdl:port><br />  </wsdl:service><br />  </wsdl:definitions><br /><br />If I invoke this webservice method through Internet Explorer, I get the following response:<br /><br />  <?xml version="1.0" encoding="utf-8" ?> <br />  <string xmlns="http://tempuri.org/">Hello World</string>

Similar Messages

  • Creating Activities in CRM using Word Templates and Web Services??

    Hi,
    This functionality can be achieved through Adobe Interactive Forms from what I have learnt through demos etc. We are checking the feasibility of using with Word Templates instead.
    This thread has multiple questions:
    We are trying to set up the activity creation as mentioned in the CRM70 system.
    1) At this point, finished the retrieval of information from the CRM Activity into a Word Template using a READ Web Service. Subsequently synchronized this with outlook and can see the Word document in the outlook item. Not able to open the same in Outlook, since it comes over as a XML document type. "Cannot open as there is a problem with the contents. ">" expected, line so and so...is the message
    2) I created a Web Service that writes as well into CRM and would like to use this from the Word Template to create the activity in CRM
    2a) Can the word template be incorporated with buttons that can trigger creation in CRM, similar to Adobe "Execute" etc
    2b) If yes, and If there are some custom fields that I add to the activity transaction, in the UI, can I populate these with input from the Word Template, as well
    Regards,
    Ashwin

    Hell Wregs,
    You can create the Product in CRM GUI,by using Transaction:COMMPR01,not mandatory to have WebUI..,
    but b4 that you need to set up Product Hierarchy and Product category under which the Products can be created.
    Use Transaction:COMM_HIERARCHY Transaction to do this.
    Hope this helps
    let me know if any further questions
    Thanks & Regards
    Arshad

  • WebDynpro and Adobe Designer and Web Service

    Hi everyone,
    I want to make a call to a web service created in SAP.
    I have the URL of the wsdl file.
    I created a new data connection in the Adbobe designer that points to that URL.
    I drag and droped the connection into the editor.
    Now, I have 2 input fields.
    The first stands for the input.
    The second stands for the response coming from the web service.
    The button points to the URL of the backend where the web service is located.
    When I press the button, nothing is happening...not even an error.
    Can someone please help with that issue ?
    Thanks in advance.
    Regards.

    Hi,
    But now, my doubt is "How to know the list of values selected in the list box to concatenate using scripting in th Adobe form it self? "
    For list box which is multiselect, when you say this.rawValue you get a arraylist, i believe separated by "\n" which mean newline on the form and separated by # when it reaches to SAP.
    And also, regarding border color. The suggested logic is not changing the color of the border of the field. Instead it is giving additional border in specified color. But, Is it not possible to change the actual border color instead of adding additional borders with other color
    You feel like aditional border because the field is an input type which has emboss effect to look, you can change the appearance of the file from palletes/windos>object>field-->appearance dropdown, just say it to none and alter the type field in Value tab from user entered optional to readonly you will see the difference.
    Let me know if this suffice you.
    Cheers,
    Sai

  • Migrating a Eclipse Project to JDeveloper and use it as a web service

    Hi Guys,
    I have a problem with migrating a Eclipse Project (EP) to JDeveloper. I know there are several threads about the problem out there but none of these fit my needs.
    So, here is the problem:
    I didn't had any problems migrating EPs to JDev in the past but this project is neither a .jar/.lib nor could I change it to one of those types. The project hase some additional filesto work. These files areare libs and owl-mappings for Jena/Pellet ( [http://jena.sourceforge.net/|http://jena.sourceforge.net/] ).
    My porblem is that I don't know who to migrate the project to JDev and then use it as a web service, while the file structure stays the same plus everything is uploaded to Oracle as a web service. Meaning everything has to be included in one java package. Or am i wrong?
    The file structure looks like this (from the EP):
    src\*.java
    owl\*.owl
    lib\*.lib
    location-mapping.n3
    expdt.props
    The Libraries aren't a problem. They are all .jar-files but could be easily included in the project (JDev) but I don't know how to handle the other files. Especially the much needed owl files :(
    Maybe I'm doing it all wrong. My Goal is to use the EP as a web servies for a business process to enforce rulings and obligations. I'm kinda stumped...
    Greetings,
    Sebastian

    Thank you very much, Shay. It helped regaining overview of the project files. Before all additional files were in the AppFolder.
    I got to a point where I (hopefully) only got a problem with the directory matching (which is needed by jena).
    Tanks again.
    Sebastian

  • Using SharePoint Lists.AddAttachments web service in LiveCycle

    Hello everyone,
    I have implemented a workflow process that saves data from a PDF form to a SharePoint list, using its Lists.UpdateListItems web service.  This works fine with no issues.  Now, I am trying to take this a step further by also attaching the associated PDF form to the list item, using the AddAttachments web service, but have been unsuccessful.  I keep getting an empty web response back.
    Has anyone been able to use this web service successfully within LiveCycle, particularly with PDF documents?  Please let me know, any help would be appreciated. 
    Thanks,
    cdmh

    Hi rdoe,
    Do you have any update for this issue?
    Whether you checked as Dats said.
    In addition, if you have found a solution for this issue, please share it, it will be beneficial to others in this forum who meet the same issue in the future.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • GTC Connector using SPML Format Provider and Web Services Transport Provide

    Hello All,
    Did any body create a GTC connector which uses SPML Format for Format Provider and Web Services format for Transport Provider?
    Is there any doc which talks about the same?
    I need to provision to a system over web services and I thought GTC using the above formats should be an easy approach. Am I right?
    I was trying to follow:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14309/devgtc.htm#BABDFDFE
    But Iam getting lost in the immerse details.
    Thanks in advance.

    Hi ,
    I tried creating one and am getting the following error while provisioning:
    SPML Response failed V2 schema validation
    Th eoracle document says :Ensure that the SPML response returned by the target system conforms to the SPML V2 standard specification
    Please help me with the same. What is it that needs to be done here.
    Thanks
    WIP

  • The Oracle Database Programming using Java and Web services book is out

    This book http://www.amazon.com/gp/product/1555583296 shows how to build pragmatic applications using the combination of PL/SQL, Java in the database, JDBC, SQLJ, JPublisher, and Web services. It is intented for database developers, DBA, data architects, Java developers and Web services assemblers.
    My blog http://db360.blogspot.com/ and the free/sample chapter http://www.oracle.com/technology/books/pdfs/mensah_ch1.pdf will give you a feel of the content.
    Enjoy, Kuassi

    Hi Kuassi,
    Thanks for letting us know that your book is available. I have been following one of your articles about "Virtualize Your Oracle Database with Web Services". More specifically "The Database as Web Services Consumer". I think that this is an area that has in the past been under estimated as to the potential benefits.
    I am currently trying to develop a solution that consumes several interfaces with a couple of them being published web services, so an ideal solution. I have then spent the last three weeks having to read up about the architecture of Java in the database, Jpublisher and make sense of how it all works together.
    I have got very close to getting one of the web services to work but failed due to using 10gR2 where all the java & libraries has moved to version 1.5. The solution is to load the jdk1.4.2 and configure jpublisher to use this. So far so good except this is not available on some platforms, Windows - 64 bit (not itanium).
    The configuration is proving very challenging but will hopefully reap rewards.
    (Thought I would give you some background to my experience).
    Anyway my question to you is having looked at Jdeveloper it appears to do almost anything except consume services into the database, also with Java now being at version 1.5 outside the database for 10gR2 and supporting 1.4 inside, do you see some alignment of these in future database releases?
    Finally off to buy your book now as no doubt there is a huge amount more to learn.
    Kind Regards
    David O'Donnell

  • Does the Design and Web Premium for students program for Mac allow multiple downloads on other Mac computers? Can this program be upgraded to be used on windows as well?

    I am a university student that requires a second computer. However, I do not want to purchase a second Adobe Suite Design and Web Premium Program. Does this program allow for multiple downloads? I have a Mac laptop, and I bought the Mac version of the program, is there a way to upgrade it to use it on windows? Or will it only download on a Mac device?

    Chances are your license is only for the Mac platform.
    You are not really limited in the number of times you might download - just the number of installations you can have activated.  You can have activated installations on two machines, though they both have to be running the same platform.  If it is CS6 you can request a platform swap,but that doesn't sound like what you wish to do.

  • Book: Oracle Database Programming using Java and Web services

    This book http://www.amazon.com/gp/product/1555583296 shows how to build pragmatic applications using the combination of PL/SQL, Java in the database, JDBC, SQLJ, JPublisher, and Web services. It is intented for database developers, DBA, data architects, Java developers and Web services assemblers.
    My blog http://db360.blogspot.com/ and the free/sample chapter http://www.oracle.com/technology/books/pdfs/mensah_ch1.pdf will give you a feel of the content.
    Enjoy, Kuassi

    Hi Kuassi,
    Thanks for letting us know that your book is available. I have been following one of your articles about "Virtualize Your Oracle Database with Web Services". More specifically "The Database as Web Services Consumer". I think that this is an area that has in the past been under estimated as to the potential benefits.
    I am currently trying to develop a solution that consumes several interfaces with a couple of them being published web services, so an ideal solution. I have then spent the last three weeks having to read up about the architecture of Java in the database, Jpublisher and make sense of how it all works together.
    I have got very close to getting one of the web services to work but failed due to using 10gR2 where all the java & libraries has moved to version 1.5. The solution is to load the jdk1.4.2 and configure jpublisher to use this. So far so good except this is not available on some platforms, Windows - 64 bit (not itanium).
    The configuration is proving very challenging but will hopefully reap rewards.
    (Thought I would give you some background to my experience).
    Anyway my question to you is having looked at Jdeveloper it appears to do almost anything except consume services into the database, also with Java now being at version 1.5 outside the database for 10gR2 and supporting 1.4 inside, do you see some alignment of these in future database releases?
    Finally off to buy your book now as no doubt there is a huge amount more to learn.
    Kind Regards
    David O'Donnell

  • CS6 Design and Web Premium serial number upgrade problem

    I bought the Creative Suite 6 Design and Web Premium upgrade to replace Design Premium CS5.5 on my computer but during installation I'm told I don't own a qualifying product. Have I purchased the wrong upgrade?

    Hi niamhy
    The serial number for CS5.5 wasn't accepted as it was a volume licensing product.  I see one of my colleagues has helped you out with this.
    Thanks
    Bev

  • Creative Suite 6 Design and Web Premium will not Reinstall: Says Serial Number is not "Valid"

    Chat support has been no help.  I uninstalled Creative Suite 6 because I was having issues with some of the software and hoped that a reinstall would solve the problem.  Now the software will not reinstall.  It takes me to the validation screen where it asks for the serial number and says "We are unable to validate this serial number for CS6 Design and Web Premium.  Please contact customer service," when i type the serial number in.  I have now gone through THREE chat sessions with "customer support" in which they have sent me a link to download the same program, and it would not reload because of the serial number, and then have walked me TWICE through a multitude of tasks that have not solved the problem.  They keep asking me the same questions again and again, ignore my own questions to them, and cannot give me any information that actually helps.  The phone system will not support Creative Suite.  I NEED this software to reload as I've already missed one publishing deadline and will miss another if I cannot use this software, which, at the moment, seems to be a $350 coaster.
    This is the same disc I used to install the software originally.  I installed it on my old laptop and used it there without incident until my new laptop came (a period of about two months).  I then Uninstalled the software from the old lap top and installed it on the new one, again, without incident.  When I found that the icons for switching between tools in Photoshop and Illustrator were so small I could not see them, and they seemingly could not be adjusted within the program, I uninstalled the software, and at this point is when the software would not reinstall on the same computer it was on in the first place.  My software is official, on a physical disc, and registered to my account with Adobe.  What do I do?  I just opened this press five months ago, and I cannot justify a Creative Cloud membership with the amount of work I'm actually putting out at the moment, and especially not with the terrible customer service I have been receiving so far.
    Please help.

    If you never deactivated, and neither did they, then that is likely to be a reason for not being able to activate again.  Contact them thru chat and ask them to reset your activations.
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • C++ Runtime error using LiveCycle Designer

    I have been using Adobe Pro 9 for some time, my system is running XP Professional and Service Pack 3. Each time I edit a form which I am adding tables to the form crashes with the runtime error.  We had a system upgrade for some unrelated software on the weekend and everything worked fine up to that point.
    I continue to save each time I add a section in the table, I have edited the form 5 times now with the same result. The file ends up being corrupt with 0bytes.
    Can anyone offer advice on this.
    Christine..

    Hi Christine,
    This is a typical problem in LiveCycle Designer ES (8.2). I have faced this issue several times. Though I do not know the actual reason for this. There are many things responsible for this behaviour.
    - Is the form opened for several hours in LiveCycle Designer?
    - Have you made repeated copy paste operation of the fields as well as of the Javascript?
    - Have you saved the form repeatedly for small changes without doing the "Save As" operation?
    - Have you long lines of JavaScript?
    Few Suggestions might Help...
    - Do not open the LiveCycle Designer for longer duration like more than 4 hours. Save changes. Close it and reopen it.
    - Instead of doing the "save" operation do the "Save As" operation. It will also help in reducing the size of the form.
    - Avoid Copy pasting of the fields or JavaScript always. While you do it, if you see the XMl Source you will some designer id would be added exponentially.
    - Use events intelligently.
    Thanks,
    Bibhu.

  • Unable to deserialize HTTP response content - SharePoint Designer Call Web Service Workflow Activity

    I am creating a workflow using SharePoint Designer 2013 and I'm using the call HTTP web service action.
    The web service call works (it is for a text messaging service, and I get the text message to my phone) however the workflow stops at this point with internal status "suspended" and gives the error message below when clicking on the "i"
    icon.
    I have tried setting the Accept and Content-Type request headers to "application/json; odata=verbose" (minus the quote marks) as other posts suggested but this doesn't make a difference (e.g. here: https://social.msdn.microsoft.com/Forums/windowsapps/en-US/f0b18411-87d1-466b-aab0-1a0093605ed4/workflow-cannot-read-json-after-latest-sp15-patches?forum=sharepointdevelopment).
    I tried adding in the Content-Length header too but that made no difference.
    I tested calling another web service (https://sharepointurl/_api/contextinfo) and this works fine.
    Is there any way to get the workflow to accept this XML as the response? I don't actually really need anything out of the response content, but I do need the workflow to carry on after this step and carry out other activities after this call.
    Error message:
    Details: An unhandled exception occurred during the execution of the workflow instance. Exception details: System.IO.InvalidDataException:
    Unable to deserialize HTTP response content. Expected ContentType : 'application/json', 'text/plain' or 'text/html', Received ContentType : 'text/xml'. Content (truncated) : '<?xml version="1.0" ?><outbound-message-delivery messageId="35d60bd2-a829-4382-8189-7a74de2d1cca"
    isError="false"><recipient msisdn="6427xxxxxxx" isError="false"></recipient></outbound-message-delivery>'. ResponseStatusCode : 'OK' Request Uri : 'https://www.txtserviceurl.co.nz/api/3/sms/out?to=6427xxxxxxx&body=test+from+workflow'
    at Microsoft.Activities.Messaging.SendHttpRequest.OnReceiveResponse(NativeActivityContext context, Bookmark bookmark, Object value) at System.Activities.Runtime.BookmarkCallbackWrapper.Invoke(NativeActivityContext context, Bookmark bookmark, Object value)
    at System.Activities.Runtime.BookmarkWorkItem.Execute(ActivityExecutor executor, BookmarkManager bookmarkManager) Exception from activity SendHttpRequest HttpPost Switch<String> Sequence Microsoft.SharePoint.WorkflowServices.Activities.CallHTTPWebService
    Stage 1 Sequence Flowchart Sequence Testing 

    Hi,
    Thank you for your post.
    I'm trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact 
    [email protected]
    Lisa Chen
    TechNet Community Support

  • Windows 7 crashed after Creative Suite 6 Design and Web Premium completed an update. The only Windows restore point that worked was pre-installation of CS6 software. Now when trying to reinstall I get the 'installer failed to initialize' message. Have tri

    Windows 7 crashed after Creative Suite 6 Design and Web Premium completed an update. The only Windows restore point that worked was pre-installation of CS6 software. Now when trying to reinstall I get the 'installer failed to initialize' message. Have tried using the CC Cleaner Tool but nothing works? Any solution please. Was new computer and newly purchased CS6 software downloaded 2 days prior to the upgrade.

    make sure you follow all the steps here, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • CS6 Design and Web Premium install failure (OS X)

    Hello all,
    I recently was given the chance to upgrade to CS6 Design and Web Premium through my educational instutition. I first uninstalled my CS5.5 installation that I previously had through them. Now, whenever I run the CS6 installer, the timer keeps going up on the "Running package scripts" step until it reaches ~32 minutes and then it says that the installation failed. I can literally watch the CS6 pplication folders gradually appear in my Applications folder, and then the installation just reaches a point where it starts deleting everything in the folder. I have tried everything from running the Adobe Creative Suite Cleaner Tool (nothing comes up), analyzing my installer logs with the Adobe Support Advisor (again, nothing), installing using a root account (same problem), installing in Safe Boot Mode (again, same problem), and deleting the Adobe folders in my Library/ApplicationSupport folders. I'm on OS X 10.8.2 and had no problems installing/uninstalling CS5.5.
    Thank you for your help!
    Here are my installer logs:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    OSX version: 10.8.3 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    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 377 milliseconds (0.377 seconds) DTR = 29336.9 KBPS (28.6493 MBPS)
    ##### Running EDT Workflow #####
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup
    Updating media info for: {03740852-60C2-4B1A-A3DA-1EDB082C6401}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeLinguistics_4_0_All/AdobeLinguistics_ 4_0_All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeLinguistics_4_0_All/AdobeLinguistics_ 4_0_All.dmg
    Updating media info for: {0377892E-FCAC-46EC-AA70-C6AC8A86A81F}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDynamicLinkMediaServer1All/AdobeDynam icLinkMediaServer1All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDynamicLinkMediaServer1All/AdobeDynam icLinkMediaServer1All.dmg
    Updating media info for: {09EB773B-7A86-11E1-8BAE-934436A7136D}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks12ja_JPLanguagePack/AdobeFir eworks12ja_JPLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks12ja_JPLanguagePack/AdobeFir eworks12ja_JPLanguagePack.dmg
    Updating media info for: {0C4E7429-E920-4125-980E-029A87AE0A4D}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorCommonSetCMYK4_0-mul/AdobeColorC ommonSetCMYK4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorCommonSetCMYK4_0-mul/AdobeColorC ommonSetCMYK4_0-mul.dmg
    Updating media info for: {0D9E083D-1ABE-4B41-B04D-B79947317FF8}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIdeaPluginCS6-mul/AdobeIdeaPluginCS6- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIdeaPluginCS6-mul/AdobeIdeaPluginCS6- mul.dmg
    Updating media info for: {0E0AA043-65AC-4A20-AAD6-9B4C7667309B}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorEU_Recommended4_0-mul/AdobeColor EU_Recommended4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorEU_Recommended4_0-mul/AdobeColor EU_Recommended4_0-mul.dmg
    Updating media info for: {11C91E36-78ED-11E1-8DB4-73755723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8CommonBase-mul/AdobeInDesign 8CommonBase-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8CommonBase-mul/AdobeInDesign 8CommonBase-mul.dmg
    Updating media info for: {14688254-5CD1-11E1-8D70-4DBBF019A2FF}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDigitalPublishing-mul/AdobeDigitalPub lishing-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDigitalPublishing-mul/AdobeDigitalPub lishing-mul.dmg
    Updating media info for: {148542D8-49CA-482A-A334-1D54C5A9D53B}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeXMPPanelsAll/AdobeXMPPanelsAll.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeXMPPanelsAll/AdobeXMPPanelsAll.dmg
    Updating media info for: {1739F56A-78E9-11E1-91B8-D5885723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8CommonLang-en_GB/AdobeInDesi gn8CommonLang-en_GB.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8CommonLang-en_GB/AdobeInDesi gn8CommonLang-en_GB.dmg
    Updating media info for: {1837F64F-8388-4AA6-AABD-C608B4430715}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-ja_JP/AdobePhotoshop13-ja _JP.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-ja_JP/AdobePhotoshop13-ja _JP.dmg
    Updating media info for: {1E621A15-CD9F-4543-B3F6-8032B3647A6A}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash12.0-en_USLanguagePack/AdobeFlas h12.0-en_USLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash12.0-en_USLanguagePack/AdobeFlas h12.0-en_USLanguagePack.dmg
    Updating media info for: {1F955A4A-F365-4379-AEE2-B7C83E1AA883}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-Support/AdobePhotoshop13- Support.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-Support/AdobePhotoshop13- Support.dmg
    Updating media info for: {23D3FD35-6497-4038-9CE3-6B79A4093013}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash12.0-ja_JPLanguagePack/AdobeFlas h12.0-ja_JPLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash12.0-ja_JPLanguagePack/AdobeFlas h12.0-ja_JPLanguagePack.dmg
    Updating media info for: {2591B843-8028-4395-9DEE-03AF8D631539}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeAPE3.3-mul/AdobeAPE3.3-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeAPE3.3-mul/AdobeAPE3.3-mul.dmg
    Updating media info for: {2647A2B2-8CAD-4A9B-ABE3-B8FC29CD6DBF}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16en_GBLanguagePack/AdobeI llustrator16en_GBLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16en_GBLanguagePack/AdobeI llustrator16en_GBLanguagePack.dmg
    Updating media info for: {26F763C9-076F-473D-9A0E-4050C973737C}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorJA_ExtraSettings4_0-mul/AdobeCol orJA_ExtraSettings4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorJA_ExtraSettings4_0-mul/AdobeCol orJA_ExtraSettings4_0-mul.dmg
    Updating media info for: {3071EDD7-EA5B-4CAC-B4D0-4D4D664154D1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-en_US/AdobePhotoshop13-en _US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-en_US/AdobePhotoshop13-en _US.dmg
    Updating media info for: {311CDC89-AC18-4344-9EC9-0225328C73D3}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFontsRequired-mul/AdobeFontsRequired- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFontsRequired-mul/AdobeFontsRequired- mul.dmg
    Updating media info for: {327492D4-78EB-11E1-8ABE-84C55623D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppBase-mul/AdobeInDesign8Ap pBase-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppBase-mul/AdobeInDesign8Ap pBase-mul.dmg
    Updating media info for: {36682D68-3834-487E-BA49-DFA4AB0A2E32}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCSXSInfrastructure3-mul/AdobeCSXSInfr astructure3-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCSXSInfrastructure3-mul/AdobeCSXSInfr astructure3-mul.dmg
    Updating media info for: {39C9FB9C-7A84-11E1-B574-D095DF20721F}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks12-mul/AdobeFireworks12-mul. dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks12-mul/AdobeFireworks12-mul. dmg
    Updating media info for: {3CB7E1A8-78E9-11E1-A332-DF895723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8CommonLang-en_US/AdobeInDesi gn8CommonLang-en_US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8CommonLang-en_US/AdobeInDesi gn8CommonLang-en_US.dmg
    Updating media info for: {42C0738D-8D50-45B7-BC51-4BC609133E3A}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorNA_ExtraSettings4_0-mul/AdobeCol orNA_ExtraSettings4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorNA_ExtraSettings4_0-mul/AdobeCol orNA_ExtraSettings4_0-mul.dmg
    Updating media info for: {4482EF4A-376B-46DE-9B17-E377232328E0}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings11-mul/AdobePDFSettings11- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings11-mul/AdobePDFSettings11- mul.dmg
    Updating media info for: {48623899-C152-457D-9B30-1F957332AC2F}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorPhotoshop4_0-mul/AdobeColorPhoto shop4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorPhotoshop4_0-mul/AdobeColorPhoto shop4_0-mul.dmg
    Updating media info for: {4AD35F48-78E8-11E1-9428-B86D5723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppLang-ja_JP/AdobeInDesign8 AppLang-ja_JP.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppLang-ja_JP/AdobeInDesign8 AppLang-ja_JP.dmg
    Updating media info for: {4F427880-01EA-4E0F-AAE2-9ADE97563A21}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeUtilities4.0-mul/AdobeUtilities4.0-mu l.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeUtilities4.0-mul/AdobeUtilities4.0-mu l.dmg
    Updating media info for: {4FAB339E-2132-434F-9376-9CD735E4C69C}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash12.0-mul/AdobeFlash12.0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFlash12.0-mul/AdobeFlash12.0-mul.dmg
    Updating media info for: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/SwitchBoard2.0All/SwitchBoard2.0All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/SwitchBoard2.0All/SwitchBoard2.0All.dmg
    Updating media info for: {50F5A7C9-1E43-4860-AED8-7F8722691F17}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeExtendScriptToolkit3.8.0-mul/AdobeExt endScriptToolkit3.8.0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeExtendScriptToolkit3.8.0-mul/AdobeExt endScriptToolkit3.8.0-mul.dmg
    Updating media info for: {51C77DC1-5C75-4491-8645-A17CC33F5A36}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorEU_ExtraSettings4_0-mul/AdobeCol orEU_ExtraSettings4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorEU_ExtraSettings4_0-mul/AdobeCol orEU_ExtraSettings4_0-mul.dmg
    Updating media info for: {539AEF15-3A2B-4A31-A587-7E90F7D9C700}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRawProfile7.0All/AdobeCameraRaw Profile7.0All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRawProfile7.0All/AdobeCameraRaw Profile7.0All.dmg
    Updating media info for: {557F9FD3-EED8-43D7-AF29-0F19CA832728}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFL10.9-mul/AdobePDFL10.9-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFL10.9-mul/AdobePDFL10.9-mul.dmg
    Updating media info for: {6040E054-500A-427A-9DA2-349F0FEB19D1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16en_USLanguagePack/AdobeI llustrator16en_USLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16en_USLanguagePack/AdobeI llustrator16en_USLanguagePack.dmg
    Updating media info for: {626F0A48-78E9-11E1-B4B1-CE8A5723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppFSet-Japan/AdobeInDesign8 AppFSet-Japan.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppFSet-Japan/AdobeInDesign8 AppFSet-Japan.dmg
    Updating media info for: {68E6C82A-78E9-11E1-8AE1-E28A5723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppFSet-Roman/AdobeInDesign8 AppFSet-Roman.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppFSet-Roman/AdobeInDesign8 AppFSet-Roman.dmg
    Updating media info for: {746DA0AA-788B-11E1-AC70-8BE0326B6E9F}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver12ja_JPLanguagePack/AdobeD reamweaver12ja_JPLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver12ja_JPLanguagePack/AdobeD reamweaver12ja_JPLanguagePack.dmg
    Updating media info for: {75CB16BD-788B-11E1-AC70-AA66BEC28837}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver12en_USLanguagePack/AdobeD reamweaver12en_USLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver12en_USLanguagePack/AdobeD reamweaver12en_USLanguagePack.dmg
    Updating media info for: {76A4887E-7A85-11E1-88DE-92A96E70B8CF}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks12en_USLanguagePack/AdobeFir eworks12en_USLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFireworks12en_USLanguagePack/AdobeFir eworks12en_USLanguagePack.dmg
    Updating media info for: {78E38D75-4D92-4F6E-B631-17A436BED680}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeVideoProfilesCS4_0-mul/AdobeVideoProf ilesCS4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeVideoProfilesCS4_0-mul/AdobeVideoProf ilesCS4_0-mul.dmg
    Updating media info for: {7C895316-78E9-11E1-A476-3E8B5723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppBase2-mul/AdobeInDesign8A ppBase2-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppBase2-mul/AdobeInDesign8A ppBase2-mul.dmg
    Updating media info for: {83463106-DD1C-4FE5-A61C-DF6715472AD4}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeExtensionManager6.0All/AdobeExtension Manager6.0All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeExtensionManager6.0All/AdobeExtension Manager6.0All.dmg
    Updating media info for: {8467887D-92F1-435C-B387-A7551B88EC70}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeNPSPanel1-mul/AdobeNPSPanel1-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeNPSPanel1-mul/AdobeNPSPanel1-mul.dmg
    Updating media info for: {84901376-1C55-4BD3-AD2C-F9BDB4449DAC}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings10-mul/AdobePDFSettings10- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings10-mul/AdobePDFSettings10- mul.dmg
    Updating media info for: {85BD3EEB-DBBE-430A-A8F4-FE5D1E5AD606}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaverWidgetsBrowser1.0-mul/Adob e AIR Installer.app/Contents/MacOS/Adobe AIR Installer
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaverWidgetsBrowser1.0-mul/Adob e AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {8ACD4814-788B-11E1-AC70-A860A781E0D9}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver12-mul/AdobeDreamweaver12- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDreamweaver12-mul/AdobeDreamweaver12- mul.dmg
    Updating media info for: {8E01D754-78E8-11E1-ACDF-83765723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8CommonLang-ja_JP/AdobeInDesi gn8CommonLang-ja_JP.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8CommonLang-ja_JP/AdobeInDesi gn8CommonLang-ja_JP.dmg
    Updating media info for: {9124DF4E-617D-486B-A970-8FA632244F24}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-Core/AdobePhotoshop13-Cor e.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-Core/AdobePhotoshop13-Cor e.dmg
    Updating media info for: {97BA0109-F6BE-4F50-8904-C19442D7216E}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeBridge5-mul/AdobeBridge5-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeBridge5-mul/AdobeBridge5-mul.dmg
    Updating media info for: {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeTypeSupport11-mul/AdobeTypeSupport11- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeTypeSupport11-mul/AdobeTypeSupport11- mul.dmg
    Updating media info for: {A285BA1E-A8FC-4B54-952B-B3E20A5EB742}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings11-ja_JP/AdobePDFSettings1 1-ja_JP.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings11-ja_JP/AdobePDFSettings1 1-ja_JP.dmg
    Updating media info for: {A725EECB-379F-4432-A975-F2F120CBC6D1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16ja_JPLanguagePack/AdobeI llustrator16ja_JPLanguagePack.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16ja_JPLanguagePack/AdobeI llustrator16ja_JPLanguagePack.dmg
    Updating media info for: {A9E40F78-E54D-494F-94A9-5D502F8DD1E1}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeWinSoftLinguisticsPluginAll/AdobeWinS oftLinguisticsPluginAll.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeWinSoftLinguisticsPluginAll/AdobeWinS oftLinguisticsPluginAll.dmg
    Updating media info for: {AA0D312F-1570-4E7E-9A7D-E191E0090FEC}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeHelp/InstallAdobeHelp
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeHelp/InstallAdobeHelp
    Updating media info for: {AAF0D225-F129-40F2-916E-12E28DBD19ED}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16-mul/AdobeIllustrator16- mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16-mul/AdobeIllustrator16- mul.dmg
    Updating media info for: {AC76BA86-1033-F400-7760-000000000005}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AcrobatProfessional10.0-EFG/Adobe Acrobat X Pro Installer.pkg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AcrobatProfessional10.0-EFG/Adobe Acrobat X Pro Installer.pkg
    Updating media info for: {AC76BA86-1041-0000-7760-000000000005}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AcrobatProfessional10.0-ja_JP/Adobe Acrobat X Pro Installer.pkg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AcrobatProfessional10.0-ja_JP/Adobe Acrobat X Pro Installer.pkg
    Updating media info for: {AC85D480-BE25-4B01-84BE-E8A5932E39DB}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeHunspellPlugin_4_0_All/AdobeHunspellP lugin_4_0_All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeHunspellPlugin_4_0_All/AdobeHunspellP lugin_4_0_All.dmg
    Updating media info for: {AD8A9ABD-0567-4489-8843-15A45760231B}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorJA_Recommended4_0-mul/AdobeColor JA_Recommended4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorJA_Recommended4_0-mul/AdobeColor JA_Recommended4_0-mul.dmg
    Updating media info for: {B376BA68-78E8-11E1-8D66-91775723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppLang-en_GB/AdobeInDesign8 AppLang-en_GB.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppLang-en_GB/AdobeInDesign8 AppLang-en_GB.dmg
    Updating media info for: {B5BC75FC-908D-4E1E-A1EE-09A3FDBBEC77}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIdeaPluginCS6-loc/AdobeIdeaPluginCS6- loc.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIdeaPluginCS6-loc/AdobeIdeaPluginCS6- loc.dmg
    Updating media info for: {B67ED9AA-F372-40CC-89AB-F5D8FBF56CD4}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16-Support/AdobeIllustrato r16-Support.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeIllustrator16-Support/AdobeIllustrato r16-Support.dmg
    Updating media info for: {B98E0DCB-1A75-4394-9813-3A114AA3891D}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeMiniBridge2-mul/AdobeMiniBridge2-mul. dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeMiniBridge2-mul/AdobeMiniBridge2-mul. dmg
    Updating media info for: {BAA50E10-F61C-11E0-AC88-C17AEB9B6A79}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeToolhints-mul/AdobeToolhints-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeToolhints-mul/AdobeToolhints-mul.dmg
    Updating media info for: {BB66788C-4C4F-4EB0-B146-9178857DE287}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorNA_Recommended4_0-mul/AdobeColor NA_Recommended4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorNA_Recommended4_0-mul/AdobeColor NA_Recommended4_0-mul.dmg
    Updating media info for: {C346BBCF-A687-4500-BB19-EE9C2D6FF284}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeSuiteSharedConfiguration3-mul/AdobeSu iteSharedConfiguration3-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeSuiteSharedConfiguration3-mul/AdobeSu iteSharedConfiguration3-mul.dmg
    Updating media info for: {C7B1C1B3-368D-4C32-A818-83F1554EB398}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorCommonSetRGB4_0-mul/AdobeColorCo mmonSetRGB4_0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeColorCommonSetRGB4_0-mul/AdobeColorCo mmonSetRGB4_0-mul.dmg
    Updating media info for: {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AMECore6All/AMECore6All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AMECore6All/AMECore6All.dmg
    Updating media info for: {CFC3110A-491C-4DBF-A97D-66C567600A2F}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRaw7.0All/AdobeCameraRaw7.0All. dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCameraRaw7.0All/AdobeCameraRaw7.0All. dmg
    Updating media info for: {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AIRforIOS_Flash12.0-mul/AIRforIOS_Flash12. 0-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AIRforIOS_Flash12.0-mul/AIRforIOS_Flash12. 0-mul.dmg
    Updating media info for: {D798DB87-E1D3-4271-839C-0ADF8C76944E}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings10-ja_JP/AdobePDFSettings1 0-ja_JP.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePDFSettings10-ja_JP/AdobePDFSettings1 0-ja_JP.dmg
    Updating media info for: {D8C642B6-A719-4234-8039-2654ED436D2A}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDesignWebPremium6-mul/AdobeDesignWebP remium6-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDesignWebPremium6-mul/AdobeDesignWebP remium6-mul.dmg
    Updating media info for: {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFontsRecommended-mul/AdobeFontsRecomm ended-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeFontsRecommended-mul/AdobeFontsRecomm ended-mul.dmg
    Updating media info for: {DE88AA40-6766-43D3-A755-8FC374B3D2C3}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDynamiclinkSupport6All/AdobeDynamicli nkSupport6All.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeDynamiclinkSupport6All/AdobeDynamicli nkSupport6All.dmg
    Updating media info for: {E1C48031-9366-427F-AC04-535CEDAAD995}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AcrobatXProfessional10.0-mul/AcrobatUpd101 1.pkg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AcrobatXProfessional10.0-mul/AcrobatUpd101 1.pkg
    Updating media info for: {E51F8824-78E8-11E1-AD81-3C805723D190}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppLang-en_US/AdobeInDesign8 AppLang-en_US.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeInDesign8AppLang-en_US/AdobeInDesign8 AppLang-en_US.dmg
    Updating media info for: {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCMaps4-mul/AdobeCMaps4-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCMaps4-mul/AdobeCMaps4-mul.dmg
    Updating media info for: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCSXSExtensions3-mul/AdobeCSXSExtensio ns3-mul.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobeCSXSExtensions3-mul/AdobeCSXSExtensio ns3-mul.dmg
    Updating media info for: {FD50FA04-4759-494E-9D6D-4589FD80E484}
    NOTE: Ignoring media info and setting media path as: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-en_GB/AdobePhotoshop13-en _GB.dmg
      Type: 0, Volume Order: 1, Media Name:
      Path: /Volumes/Adobe CS6 - Design Premium/CS6 Design and Web Premium Install.pkg/Contents/Resources//Setup/payloads/AdobePhotoshop13-en_GB/AdobePhotoshop13-en _GB.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer 7.0.0.0: 1 (0,6)
      {2591B843-8028-4395-9DEE-03AF8D631539} Adobe Player for Embedding 3.3 3.3.0.0: 2 (0,9)
      {C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6 3.0.0.0: 3 (0,8)
      {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6 4.0.0.0: 4 (0,6)
      {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6 10.9.0.0: 4 (0,6)
      {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6 11.0.0.0: 4 (0,6)
      {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0: 5 (0,4)
      {4F427880-01EA-4E0F-AAE2-9ADE97563A21} Adobe Utilities CS6 4.0.0.0: 5 (0,4)
      {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport 6.0.0.0: 5 (0,4)
      {84901376-1C55-4BD3-AD2C-F9BDB4449DAC} PDF Settings CS5 10.0.0.0: 5 (0,4)
      {D798DB87-E1D3-4271-839C-0ADF8C76944E} PDF Settings CS5 10.0.0.0: 5 (0,4)
      {B5BC75FC-908D-4E1E-A1EE-09A3FDBBEC77} AdobeIdeaPluginCS6-loc 1.0.0.0: 6 (0,1)
      {148542D8-49CA-482A-A334-1D54C5A9D53B} Adobe XMP Panels 4.0.0.0: 7 (0,6)
      {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7 7.0.0.0: 8 (1,5)
      {A9E40F78-E54D-494F-94A9-5D502F8DD1E1} Adobe WinSoft Linguistics Plugin CS6 1.3.0.0: 9 (0,4)
      {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6 4.0.0.0: 9 (0,4)
      {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6 4.0.0.0: 9 (0,4)
      {0E0AA043-65AC-4A20-AAD6-9B4C7667309B} AdobeColorEU CS6 4.0.0.0: 9 (0,4)
      {51C77DC1-5C75-4491-8645-A17CC33F5A36} AdobeColorEU CS6 4.0.0.0: 9 (0,4)
      {26F763C9-076F-473D-9A0E-4050C973737C} AdobeColorJA CS6 4.0.0.0: 9 (0,4)
      {AD8A9ABD-0567-4489-8843-15A45760231B} AdobeColorJA CS6 4.0.0.0: 9 (0,4)
      {42C0738D-8D50-45B7-BC51-4BC609133E3A} AdobeColorNA CS6 4.0.0.0: 9 (0,4)
      {BB66788C-4C4F-4EB0-B146-9178857DE287} AdobeColorNA CS6 4.0.0.0: 9 (0,4)
      {AC85D480-BE25-4B01-84BE-E8A5932E39DB} Adobe Hunspell Linguistics Plugin CS6 1.0.0.0: 10 (0,3)
      {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2 8.0.0.0: 11 (0,1)
      {626F0A48-78E9-11E1-B4B1-CE8A5723D190} Adobe InDesign CS6 Application Feature Set Files 8.0.0.0: 11 (0,1)
      {68E6C82A-78E9-11E1-8AE1-E28A5723D190} Adobe InDesign CS6 Application Feature Set Files 8.0.0.0: 11 (0,1)
      {11C91E36-78ED-11E1-8DB4-73755723D190} Adobe InDesign CS6 Common Base Files 8.0.0.0: 11 (0,1)
      {1F955A4A-F365-4379-AEE2-B7C83E1AA883} Adobe Photoshop CS6 Support 13.0.0.0: 11 (0,1)
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0: 12 (0,6)
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0: 12 (0,6)
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0: 13 (1,6)
      {03740852-60C2-4B1A-A3DA-1EDB082C6401} Adobe Linguistics CS6 6.0.0.0: 14 (0,5)
      {AA0D312F-1570-4E7E-9A7D-E191E0090FEC} AdobeHelp 4.0.0.0: 14 (0,5)
      {50F5A7C9-1E43-4860-AED8-7F8722691F17} Adobe ExtendScript Toolkit CS6 3.8.0.0: 15 (2,5)
      {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D} Recommended Common Fonts Installation 2.0.0.0: 16 (0,4)
      {311CDC89-AC18-4344-9EC9-0225328C73D3} Required Common Fonts Installation 2.0.0.0: 16 (0,4)
      {4482EF4A-376B-46DE-9B17-E377232328E0} PDF Settings CS6 11.0.0.0: 17 (2,4)
      {A285BA1E-A8FC-4B54-952B-B3E20A5EB742} PDF Settings CS6 11.0.0.0: 17 (2,4)
      {97BA0109-F6BE-4F50-8904-C19442D7216E} Adobe Bridge CS6 5.0.0.0: 18 (8,4)
      {8467887D-92F1-435C-B387-A7551B88EC70} Adobe NPS Panel 1.0.0.0: 19 (0,2)
      {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6 6.0.0.0: 20 (1,2)
      {B98E0DCB-1A75-4394-9813-3A114AA3891D} Adobe Mini Bridge CS6 2.0.0.0: 20 (1,2)
      {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0: 21 (0,1)
      {AC76BA86-1041-0000-7760-000000000005} Acrobat Professional 10.0.0.0: 21 (0,1)
      {85BD3EEB-DBBE-430A-A8F4-FE5D1E5AD606} Adobe Dreamweaver Widget Browser 1.0.0.0: 21 (0,1)
      {B67ED9AA-F372-40CC-89AB-F5D8FBF56CD4} Adobe Illustrator CS6 Support 16.0.0.0: 21 (0,1)
      {BAA50E10-F61C-11E0-AC88-C17AEB9B6A79} Adobe Toolhints CS6 2.0.0.0: 21 (0,1)
      {48623899-C152-457D-9B30-1F957332AC2F} AdobeColorPhotoshop CS6 4.0.0.0: 21 (0,1)
      {78E38D75-4D92-4F6E-B631-17A436BED680} AdobeColorVideoProfilesCS CS6 4.0.0.0: 21 (0,1)
      {14688254-5CD1-11E1-8D70-4DBBF019A2FF} DPS Desktop Tools CS6 2.0.0.0: 21 (0,1)
      {0377892E-FCAC-46EC-AA70-C6AC8A86A81F} Dynamic Link Media Server 1.0.0.0: 21 (0,1)
      {0D9E083D-1ABE-4B41-B04D-B79947317FF8} AdobeIdeaPluginCS6 1.0.0.0: 22 (1,1)
      {D8C642B6-A719-4234-8039-2654ED436D2A} CS6 Design and Web Premium 6.0.0.0: 23 (1,0)
      {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF} AIR for Apple iOS support (FP) 3.0.0.0: 24 (0,0)
      {E1C48031-9366-427F-AC04-535CEDAAD995} Acrobat X Pro  10.0.0.0: 25 (2,0)
      {8ACD4814-788B-11E1-AC70-A860A781E0D9} Adobe Dreamweaver CS6 12.0.0.0: 26 (9,0)
      {746DA0AA-788B-11E1-AC70-8BE0326B6E9F} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0: 27 (0,0)
      {75CB16BD-788B-11E1-AC70-AA66BEC28837} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0: 27 (0,0)
      {39C9FB9C-7A84-11E1-B574-D095DF20721F} Adobe Fireworks CS6 12.0.0.0: 28 (12,0)
      {09EB773B-7A86-11E1-8BAE-934436A7136D} Adobe Fireworks CS6_AdobeFireworks12ja_JPLanguagePack 12.0.0.0: 29 (0,0)
      {76A4887E-7A85-11E1-88DE-92A96E70B8CF} Adobe Fireworks CS6_AdobeFireworks12en_USLanguagePack 12.0.0.0: 29 (0,0)
      {4FAB339E-2132-434F-9376-9CD735E4C69C} Adobe Flash CS6 12.0.0.0: 30 (32,0)
      {23D3FD35-6497-4038-9CE3-6B79A4093013} Adobe Flash CS6_AdobeFlash12.0-ja_JPLanguagePack 12.0.0.0: 31 (0,0)
      {1E621A15-CD9F-4543-B3F6-8032B3647A6A} Adobe Flash CS6_AdobeFlash12.0-en_USLanguagePack 12.0.0.0: 31 (0,0)
      {AAF0D225-F129-40F2-916E-12E28DBD19ED} Adobe Illustrator CS6 Core 16.0.0.0: 32 (32,0)
      {2647A2B2-8CAD-4A9B-ABE3-B8FC29CD6DBF} Adobe Illustrator CS6 Core_AdobeIllustrator16en_GBLanguagePack 16.0.0.0: 33 (0,0)
      {6040E054-500A-427A-9DA2-349F0FEB19D1} Adobe Illustrator CS6 Core_AdobeIllustrator16en_USLanguagePack 16.0.0.0: 33 (0,0)
      {A725EECB-379F-4432-A975-F2F120CBC6D1} Adobe Illustrator CS6 Core_AdobeIllustrator16ja_JPLanguagePack 16.0.0.0: 33 (0,0)
      {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core 13.0.0.0: 34 (38,0)
      {FD50FA04-4759-494E-9D6D-4589FD80E484} Adobe Photoshop CS6 International English Language Pack_AdobePhotoshop13-en_GB 13.0.0.0: 35 (0,0)
      {3071EDD7-EA5B-4CAC-B4D0-4D4D664154D1} Adobe Photoshop CS6 English Language Pack_AdobePhotoshop13-en_US 13.0.0.0: 35 (0,0)
      {1837F64F-8388-4AA6-AABD-C608B4430715} Adobe Photoshop CS6 Japanese Language Pack_AdobePhotoshop13-ja_JP 13.0.0.0: 35 (0,0)
      {327492D4-78EB-11E1-8ABE-84C55623D190} Adobe InDesign CS6 Application Base Files 8.0.0.0: 36 (41,0)
      {8E01D754-78E8-11E1-ACDF-83765723D190} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-ja_JP 8.0.0.0: 37 (0,0)
      {E51F8824-78E8-11E1-AD81-3C805723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_US 8.0.0.0: 37 (0,0)
      {1739F56A-78E9-11E1-91B8-D5885723D190} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-en_GB 8.0.0.0: 37 (0,0)
      {B376BA68-78E8-11E1-8D66-91775723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_GB 8.0.0.0: 37 (0,0)
      {4AD35F48-78E8-11E1-9428-B86D5723D190} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-ja_JP 8.0.0.0: 37 (0,0)
      {3CB7E1A8-78E9-11E1-A332-DF895723D190} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-en_US 8.0.0.0: 37 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "edtWorkflow" to: 1
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Overwrite property "com.Adobe.PDApp.ignore_aam" to:
    Overwrite property "overrideFile" to: /tmp/AA3E6BC2-476C-4464-A2F7-B6BA2A270CDF//7E19A5C5-B6FE-4B79-8E98-480C788032A1
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer 7.0.0.0 is: false
    Action string for {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer 7.0.0.0  is none
    Value returned on lookup of payload: {2591B843-8028-4395-9DEE-03AF8D631539} Adobe Player for Embedding 3.3 3.3.0.0 is: false
    Action string for {2591B843-8028-4395-9DEE-03AF8D631539} Adobe Player for Embedding 3.3 3.3.0.0  is none
    Value returned on lookup of payload: {C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6 3.0.0.0 is: false
    Action string for {C346BBCF-A687-4500-BB19-EE9C2D6FF284} Suite Shared Configuration CS6 3.0.0.0  is none
    Value returned on lookup of payload: {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6 4.0.0.0 is: false
    Action string for {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6 4.0.0.0  is none
    Value returned on lookup of payload: {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6 10.9.0.0 is: false
    Action string for {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6 10.9.0.0  is none
    Value returned on lookup of payload: {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6 11.0.0.0 is: false
    Action string for {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6 11.0.0.0  is none
    Value returned on lookup of payload: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0 is: false
    Action string for {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0  is none
    Value returned on lookup of payload: {4F427880-01EA-4E0F-AAE2-9ADE97563A21} Adobe Utilities CS6 4.0.0.0 is: false
    Action string for {4F427880-01EA-4E0F-AAE2-9ADE97563A21} Adobe Utilities CS6 4.0.0.0  is none
    Value returned on lookup of payload: {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport 6.0.0.0 is: false
    Action string for {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport 6.0.0.0  is none
    Value returned on lookup of payload: {84901376-1C55-4BD3-AD2C-F9BDB4449DAC} PDF Settings CS5 10.0.0.0 is: false
    Action string for {84901376-1C55-4BD3-AD2C-F9BDB4449DAC} PDF Settings CS5 10.0.0.0  is none
    Value returned on lookup of payload: {D798DB87-E1D3-4271-839C-0ADF8C76944E} PDF Settings CS5 10.0.0.0 is: false
    Action string for {D798DB87-E1D3-4271-839C-0ADF8C76944E} PDF Settings CS5 10.0.0.0  is none
    Value returned on lookup of payload: {B5BC75FC-908D-4E1E-A1EE-09A3FDBBEC77} AdobeIdeaPluginCS6-loc 1.0.0.0 is: false
    Action string for {B5BC75FC-908D-4E1E-A1EE-09A3FDBBEC77} AdobeIdeaPluginCS6-loc 1.0.0.0  is none
    Value returned on lookup of payload: {148542D8-49CA-482A-A334-1D54C5A9D53B} Adobe XMP Panels 4.0.0.0 is: false
    Action string for {148542D8-49CA-482A-A334-1D54C5A9D53B} Adobe XMP Panels 4.0.0.0  is none
    Value returned on lookup of payload: {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7 7.0.0.0 is: false
    Action string for {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7 7.0.0.0  is none
    Value returned on lookup of payload: {A9E40F78-E54D-494F-94A9-5D502F8DD1E1} Adobe WinSoft Linguistics Plugin CS6 1.3.0.0 is: false
    Action string for {A9E40F78-E54D-494F-94A9-5D502F8DD1E1} Adobe WinSoft Linguistics Plugin CS6 1.3.0.0  is none
    Value returned on lookup of payload: {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6 4.0.0.0 is: false
    Action string for {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6 4.0.0.0  is none
    Value returned on lookup of payload: {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6 4.0.0.0 is: false
    Action string for {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6 4.0.0.0  is none
    Value returned on lookup of payload: {0E0AA043-65AC-4A20-AAD6-9B4C7667309B} AdobeColorEU CS6 4.0.0.0 is: false
    Action string for {0E0AA043-65AC-4A20-AAD6-9B4C7667309B} AdobeColorEU CS6 4.0.0.0  is none
    Value returned on lookup of payload: {51C77DC1-5C75-4491-8645-A17CC33F5A36} AdobeColorEU CS6 4.0.0.0 is: false
    Action string for {51C77DC1-5C75-4491-8645-A17CC33F5A36} AdobeColorEU CS6 4.0.0.0  is none
    Value returned on lookup of payload: {26F763C9-076F-473D-9A0E-4050C973737C} AdobeColorJA CS6 4.0.0.0 is: false
    Action string for {26F763C9-076F-473D-9A0E-4050C973737C} AdobeColorJA CS6 4.0.0.0  is none
    Value returned on lookup of payload: {AD8A9ABD-0567-4489-8843-15A45760231B} AdobeColorJA CS6 4.0.0.0 is: false
    Action string for {AD8A9ABD-0567-4489-8843-15A45760231B} AdobeColorJA CS6 4.0.0.0  is none
    Value returned on lookup of payload: {42C0738D-8D50-45B7-BC51-4BC609133E3A} AdobeColorNA CS6 4.0.0.0 is: false
    Action string for {42C0738D-8D50-45B7-BC51-4BC609133E3A} AdobeColorNA CS6 4.0.0.0  is none
    Value returned on lookup of payload: {BB66788C-4C4F-4EB0-B146-9178857DE287} AdobeColorNA CS6 4.0.0.0 is: false
    Action string for {BB66788C-4C4F-4EB0-B146-9178857DE287} AdobeColorNA CS6 4.0.0.0  is none
    Value returned on lookup of payload: {AC85D480-BE25-4B01-84BE-E8A5932E39DB} Adobe Hunspell Linguistics Plugin CS6 1.0.0.0 is: false
    Action string for {AC85D480-BE25-4B01-84BE-E8A5932E39DB} Adobe Hunspell Linguistics Plugin CS6 1.0.0.0  is none
    Value returned on lookup of payload: {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2 8.0.0.0 is: false
    Action string for {7C895316-78E9-11E1-A476-3E8B5723D190} Adobe InDesign CS6 Application Base Files2 8.0.0.0  is none
    Value returned on lookup of payload: {626F0A48-78E9-11E1-B4B1-CE8A5723D190} Adobe InDesign CS6 Application Feature Set Files 8.0.0.0 is: false
    Action string for {626F0A48-78E9-11E1-B4B1-CE8A5723D190} Adobe InDesign CS6 Application Feature Set Files 8.0.0.0  is none
    Value returned on lookup of payload: {68E6C82A-78E9-11E1-8AE1-E28A5723D190} Adobe InDesign CS6 Application Feature Set Files 8.0.0.0 is: false
    Action string for {68E6C82A-78E9-11E1-8AE1-E28A5723D190} Adobe InDesign CS6 Application Feature Set Files 8.0.0.0  is none
    Value returned on lookup of payload: {11C91E36-78ED-11E1-8DB4-73755723D190} Adobe InDesign CS6 Common Base Files 8.0.0.0 is: false
    Action string for {11C91E36-78ED-11E1-8DB4-73755723D190} Adobe InDesign CS6 Common Base Files 8.0.0.0  is none
    Value returned on lookup of payload: {1F955A4A-F365-4379-AEE2-B7C83E1AA883} Adobe Photoshop CS6 Support 13.0.0.0 is: false
    Action string for {1F955A4A-F365-4379-AEE2-B7C83E1AA883} Adobe Photoshop CS6 Support 13.0.0.0  is none
    Value returned on lookup of payload: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0 is: false
    Action string for {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0  is none
    Value returned on lookup of payload: {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0 is: false
    Action string for {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0  is none
    Value returned on lookup of payload: {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0 is: false
    Action string for {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0  is none
    Value returned on lookup of payload: {03740852-60C2-4B1A-A3DA-1EDB082C6401} Adobe Linguistics CS6 6.0.0.0 is: false
    Action string for {03740852-60C2-4B1A-A3DA-1EDB082C6401} Adobe Linguistics CS6 6.0.0.0  is none
    Value returned on lookup of payload: {AA0D312F-1570-4E7E-9A7D-E191E0090FEC} AdobeHelp 4.0.0.0 is: false
    Action string for {AA0D312F-1570-4E7E-9A7D-E191E0090FEC} AdobeHelp 4.0.0.0  is configdbonly
    Selection of payload {AA0D312F-1570-4E7E-9A7D-E191E0090FEC} AdobeHelp 4.0.0.0 is forbidden by the policy. Reason: Required dependency
    Value returned on lookup of payload: {50F5A7C9-1E43-4860-AED8-7F8722691F17} Adobe ExtendScript Toolkit CS6 3.8.0.0 is: false
    Action string for {50F5A7C9-1E43-4860-AED8-7F8722691F17} Adobe ExtendScript Toolkit CS6 3.8.0.0  is none
    Value returned on lookup of payload: {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D} Recommended Common Fonts Installation 2.0.0.0 is: false
    Action string for {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D} Recommended Common Fonts Installation 2.0.0.0  is none
    Value returned on lookup of payload: {311CDC89-AC18-4344-9EC9-0225328C73D3} Required Common Fonts Installation 2.0.0.0 is: false
    Action string for {311CDC89-AC18-4344-9EC9-0225328C73D3} Required Common Fonts Installation 2.0.0.0  is none
    Value returned on lookup of payload: {4482EF4A-376B-46DE-9B17-E377232328E0} PDF Settings CS6 11.0.0.0 is: false
    Action string for {4482EF4A-376B-46DE-9B17-E377232328E0} PDF Settings CS6 11.0.0.0  is none
    Value returned on lookup of payload: {A285BA1E-A8FC-4B54-952B-B3E20A5EB742} PDF Settings CS6 11.0.0.0 is: false
    Action string for {A285BA1E-A8FC-4B54-952B-B3E20A5EB742} PDF Settings CS6 11.0.0.0  is none
    Value returned on lookup of payload: {97BA0109-F6BE-4F50-8904-C19442D7216E} Adobe Bridge CS6 5.0.0.0 is: false
    Action string for {97BA0109-F6BE-4F50-8904-C19442D7216E} Adobe Bridge CS6 5.0.0.0  is none
    Value returned on lookup of payload: {8467887D-92F1-435C-B387-A7551B88EC70} Adobe NPS Panel 1.0.0.0 is: false
    Action string for {8467887D-92F1-435C-B387-A7551B88EC70} Adobe NPS Panel 1.0.0.0  is none
    Value returned on lookup of payload: {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6 6.0.0.0 is: false
    Action string for {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6 6.0.0.0  is none
    Value returned on lookup of payload: {B98E0DCB-1A75-4394-9813-3A114AA3891D} Adobe Mini Bridge CS6 2.0.0.0 is: false
    Action string for {B98E0DCB-1A75-4394-9813-3A114AA3891D} Adobe Mini Bridge CS6 2.0.0.0  is none
    Value returned on lookup of payload: {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0 is: false
    Action string for {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0  is none
    Value returned on lookup of payload: {AC76BA86-1041-0000-7760-000000000005} Acrobat Professional 10.0.0.0 is: false
    Action string for {AC76BA86-1041-0000-7760-000000000005} Acrobat Professional 10.0.0.0  is none
    Value returned on lookup of payload: {85BD3EEB-DBBE-430A-A8F4-FE5D1E5AD606} Adobe Dreamweaver Widget Browser 1.0.0.0 is: false
    Action string for {85BD3EEB-DBBE-430A-A8F4-FE5D1E5AD606} Adobe Dreamweaver Widget Browser 1.0.0.0  is configdbonly
    Selection of payload {85BD3EEB-DBBE-430A-A8F4-FE5D1E5AD606} Adobe Dreamweaver Widget Browser 1.0.0.0 is forbidden by the policy. Reason: Required dependency
    Value returned on lookup of payload: {B67ED9AA-F372-40CC-89AB-F5D8FBF56CD4} Adobe Illustrator CS6 Support 16.0.0.0 is: false
    Action string for {B67ED9AA-F372-40CC-89AB-F5D8FBF56CD4} Adobe Illustrator CS6 Support 16.0.0.0  is none
    Value returned on lookup of payload: {BAA50E10-F61C-11E0-AC88-C17AEB9B6A79} Adobe Toolhints CS6 2.0.0.0 is: false
    Action string for {BAA50E10-F61C-11E0-AC88-C17AEB9B6A79} Adobe

    Looks like another instance of the Adobe installer not being able to modify/remove /Library/ColorSync/Profiles. Typicaly in cases like that you can rename "/Library/ColorSync/Profiles" to something like "/Library/ColorSync/Profiles-old" (you'll need Administrator rights to do that) and then rerun the installer. Should go off without a hitch at that point. You can move back any custom profiles you had in the original Profiles folder post-install.

Maybe you are looking for

  • How to get padlock icon in iphone 4

    how to get padlock icon in iphone 4

  • Function of Tax code in tax determination

    1.What is the function of Tax code in tax determination, and where it is assigned ? 2.What is the use of VAT registration number in Control Tab page in Cusomer master ? Does it effect the tax determination in a transaction ?

  • Password Protection of PDF file generated thru SAP

    Hi, I have written a program to send payslip through email . This mail sends the payslip as a PDF attachment. I want to password protect that PDF document, so that it asks for a password before being opened by the employee. Your suggestions will be h

  • Form converts to XML data and I need the pdf form to be visable

    Hello all, I just created a form in pro 8 for our salesmen and it is a sales order form. I have sent it out to them to fill out and return it by pressing the email button in the form and some have come back as XML date stream and some came back as th

  • Dvd write

    my laptop, processor : Intel(R) core(TM) i5-243M cpu @2.40GHz 2.40GHz dvd : hp CDDVDW TS-L633R ATA Device,, my problem is my dvd not write,,its show update firmware.