To JDev Team : Error in HTMLInputElement Code

In the Render() method in HTMLInputElement there seems to be an error:
if (onChange != null)
out.print(" onchange=\"");
out.print(onChange);
out.print("\"");
if (onChange != null)
out.print(" onselect=\"");
out.print(onSelect);
out.print("\"");
I think the typo is in the second "if (onChange...)
probably should be "if (onSelect..."
Thanks for looking into this.
Joe

Thankyou for your feedback.
I have forwarded this to the appropriate
developer.
-John

Similar Messages

  • TO JDEV TEAM: JBO-28020/JBO-28006 ERRORS

    Hi,
    I deploy a BC4J application (made with Jdev official) on an OC4J container 9.0.2. the application use a 9i data base.
    frequently, when we try to insert or update rows in viewObject, we have the following error :
    Application Error
    Return
    Error Message: JBO-28020: Erreur de passivation pour l'objet collection GrandeurView, ID de noeud 45
    Error Message: JBO-28006: Criation impossible de la table de persistance PS_Bdcorrel_BC4JModule_1
    oracle.jbo.PCollException: JBO-28020: Erreur de passivation pour l'objet collection GrandeurView, ID de noeud 45
    <>
    ## Detail 0 ##
    oracle.jbo.PCollException: JBO-28006: Criation impossible de la table de persistance PS_Bdcorrel_BC4JModule_1
    <>
    ## Detail 0 ##
    java.sql.SQLException: ORA-00955: Ce nom d'objet existe dij`
    <>
    This is a pressing issue, and I'd need an answer asap. Could anyone from the JDEV team please help me on this?
    Thanks a lot!

    Stephane:
    Could you send me the entire stack trace?
    It would also help if you can translate some of the "important" exception messages into English for me (sorry).
    Thanks.
    Sung

  • JDev Team - how to add a Data Aware Control to grid control

    The default editor for GridControl cells is a data-aware TextField, but I want to use a ComboBoxControl. If I use the setEditor() method of the TableColumn, the cell is edited using a combo, but there are problems:
    1. Navigated events do not fire when focus is moved in or out of the cell and
    2. When focus moves to another cell in the same column, the cell losing focus is blanked.
    How can I setup/attach a custom editor based on a Data Aware Control to avoid these problems?
    The code I am using
    1. declares combobox controls to be used with grid as member variables of my frame class
    ComboBoxControl comboBoxSrcSystem = new ComboBoxControl();
    ComboBoxControl comboBoxSrcSysVersion = new ComboBoxControl();
    ComboBoxControl comboBoxSrcTable = new ComboBoxControl();
    ComboBoxControl comboBoxSrcColumn = new ComboBoxControl();
    2. sets up the combo in the jbInit method of the frame class :
    // for gridControlMapRuleSrcCols column SystemName
    comboBoxSrcSystem.setListKeyDataItemName("infobus:/oracle/sessionMapTool/rowSetSystemCombo/SystemName");
    comboBoxSrcSystem.setListValueDataItemName("infobus:/oracle/sessionMapTool/rowSetSystemCombo/SystemName");
    comboBoxSrcSystem.setDataItemNameForUpdate("infobus:/oracle/sessionMapTool/rowSetMapRuleSrcCols/SystemName");
    3. In the frame constructor calls a method to add combos to the grid
    addMapSrcColGridCombos();
    which is defined as
    private void addMapSrcColGridCombos() {
    // add combos to gridControlMapRuleSrcCols grid
    JTable mapSrcColTable = gridControlMapRuleSrcCols.getTable(); // access the JTable
    addComboEditor( mapSrcColTable, "SystemName", comboBoxSrcSystem );
    addComboEditor( mapSrcColTable, "SystemVersion", comboBoxSrcSysVersion );
    addComboEditor( mapSrcColTable, "TableName", comboBoxSrcTable );
    addComboEditor( mapSrcColTable, "ColumnName", comboBoxSrcColumn );
    4. It makes use of the following method:
    private void addComboEditor( JTable table, String colName, ComboBoxControl combo )
    TableColumn col = table.getColumn(colName);
    col.setCellEditor( new DefaultCellEditor( combo ) );
    null

    Given the usual deafening silence from the JDev team, I'll post my resolution of the problem.
    I could not find a way of creating an editor directly from a ComboBoxControl which would behave properly in a GridControl. However, JComboBox does work, so I
    1. add a Navigated listener to the GridControl
    2. in the navigatedInColumn event handler I create a JComboBox from a ScrollableRowsetAccess and
    3. use it to create a custom CellEditor for the target column.
    (I also remove the editor in the currently focused column in the navigatedOutColumn, but I don't think this is strictly necessary.)
    This solution also works after a Rollback, when the columns of the gridcontrol are reset/rebuilt, and handles dynamic combos that are dependent on the current row values.
    Unfortunately, unlike ComboBoxControl JComboBox does not allow for a key/value mapping, so the combo editor can only display the values to selected from, not a user-friendly label.
    I attach some code snippets to illustrate the solution:
    1. declare member variables
    // declarations for Custom Grid Editors
    NavigationManager navMgr = NavigationManager.getNavigationManager();
    static String SYS_NAME_COL_NAME = "SystemName";
    static String SYS_VER_COL_NAME = "SystemVersion";
    static String TAB_NAME_COL_NAME = "TableName";
    static String COL_NAME_COL_NAME = "ColumnName";
    RowSetInfo rowSetSystemCombo = new RowSetInfo();
    AttributeInfo SystemNamerowSetSystemCombo = new AttributeInfo();
    ScrollableRowsetAccess sysNameComboRS = (ScrollableRowsetAccess)rowSetSystemCombo.getRowsetAccess();;
    static ImmediateAccess sysNameComboIA = SystemNamerowSetSystemCombo.getImmediateAccess();
    static RowSetInfo rowSetMapTgtColTableCombo = new RowSetInfo();
    static AttributeInfo TableNamerowSetMapTgtColTableCombo = new AttributeInfo(java.sql.Types.VARCHAR);
    static ScrollableRowsetAccess tgtTabNameComboRS = (ScrollableRowsetAccess)rowSetMapTgtColTableCombo.getRowsetAccess();;
    static ImmediateAccess tgtTabNameComboIA = TableNamerowSetMapTgtColTableCombo.getImmediateAccess();
    2. in jbInit() set up the combo rowsets (use Design mode)
    SystemNamerowSetSystemCombo.setName("SystemName");
    rowSetSystemCombo.setAttributeInfo( new AttributeInfo[] {
    SystemNamerowSetSystemCombo} );
    rowSetSystemCombo.setQueryInfo(new QueryViewInfo(
    "SystemComboView",
    rowSetSystemCombo.setSession(sessionMapTool);
    rowSetSystemCombo.setName("rowSetSystemCombo");
    SystemVersionrowSetMapSrcColSysVersionCombo.setName("SystemVersion");
    rowSetMapSrcColSysVersionCombo.setAttributeInfo( new AttributeInfo[] {
    SystemVersionrowSetMapSrcColSysVersionCombo} );
    rowSetMapSrcColSysVersionCombo.setQueryInfo(new QueryViewInfo(
    "SourceSystemVersionComboView",
    "SYSTEM_VERSION DESC"));
    rowSetMapSrcColSysVersionCombo.setMasterLinkInfo
    (new ViewLinkInfo(rowSetMapRuleSrcCols,"MapTool.MapRuleSrcColSysVersionComboLink"));
    rowSetMapSrcColSysVersionCombo.setSession(sessionMapTool);
    rowSetMapSrcColSysVersionCombo.setName("rowSetMapSrcColSysVersionCombo");
    TableNamerowSetMapSrcColTableCombo.setName("TableName");
    rowSetMapSrcColTableCombo.setAttributeInfo( new AttributeInfo[] {
    TableNamerowSetMapSrcColTableCombo} );
    rowSetMapSrcColTableCombo.setQueryInfo(new QueryViewInfo(
    "SourceTableComboView",
    "TABLE_NAME"));
    rowSetMapSrcColTableCombo.setMasterLinkInfo
    (new ViewLinkInfo(rowSetMapRuleSrcCols,"MapTool.MapRuleSrcColTableComboLink"));
    rowSetMapSrcColTableCombo.setSession(sessionMapTool);
    rowSetMapSrcColTableCombo.setName("rowSetMapSrcColTableCombo");
    ColumnNamerowSetMapTgtColColumnCombo.setName("ColumnName");
    rowSetMapTgtColColumnCombo.setAttributeInfo( new AttributeInfo[] {
    ColumnNamerowSetMapTgtColColumnCombo} );
    rowSetMapTgtColColumnCombo.setQueryInfo(new QueryViewInfo(
    "TargetColumnComboView",
    "column_name"));
    rowSetMapTgtColColumnCombo.setMasterLinkInfo
    (new ViewLinkInfo(rowSetMapRuleTgtCols,"MapTool.MapRuleTgtColColumnLink"));
    rowSetMapTgtColColumnCombo.setSession(sessionMapTool);
    rowSetMapTgtColColumnCombo.setName("rowSetMapTgtColColumnCombo");
    3. add methods to handle the Navigated events (use Design mode to ensure add listener code
    is generated)
    void gridControlMapRuleSrcCols_navigatedInColumn(NavigatedEvent e) {
    debug("gridControlMapRuleSrcCols_navigatedInColumn");
    show_nav_info();
    String dataItemName = navMgr.getTargetDataItemName();
    String columnName = dataItemName.substring(dataItemName.lastIndexOf("/")+1);
    JTable table = gridControlMapRuleSrcCols.getTable();
    if ( SYS_NAME_COL_NAME.equals( columnName)) {
    addComboEditor( table, columnName, dbMapTool.sysNameComboRS, dbMapTool.sysNameComboIA );
    else if ( SYS_VER_COL_NAME.equals( columnName)) {
    addComboEditor( table, columnName, dbMapTool.srcSysVerComboRS, dbMapTool.srcSysVerComboIA );
    else if ( TAB_NAME_COL_NAME.equals( columnName)) {
    addComboEditor( table, columnName, dbMapTool.srcTabNameComboRS, dbMapTool.srcTabNameComboIA );
    else if ( COL_NAME_COL_NAME.equals( columnName)) {
    addComboEditor( table, columnName, dbMapTool.srcColNameComboRS, dbMapTool.srcColNameComboIA );
    void addComboEditor
    ( JTable table
    , String colName
    , ScrollableRowsetAccess rs
    , ImmediateAccess ia
    // note must get TableColumn afresh each time because when grid is reset
    // on rollback the Table ColumnModel is rebuilt
    TableColumn tc = table.getColumn(colName);
    debug("add JComboBox as editor");
    Vector v = new Vector();
    try {
    // Retrieve and store values for JComboBox using the InfoBus API.
    boolean moreRows = rs.first();
    while (moreRows) {
    // stores value in vector
    v.addElement(new String(ia.getValueAsString()));
    moreRows = rs.next();
    // make column Cell Editor a JComboBox with retrieved values
    tc.setCellEditor(new DefaultCellEditor(new JComboBox(v)));
    catch (Exception e0) {
    e0.printStackTrace();
    void show_nav_info() {
    debug( "Focused Data Item = " + navMgr.getFocusedDataItemName() );
    debug( "Target Data Item = " + navMgr.getTargetDataItemName() );
    void debug(String s)
    System.out.println(s);
    void gridControlMapRuleSrcCols_navigatedOutColumn(NavigatedEvent e) {
    debug("gridControlMapRuleSrcCols_navigatedOutColumn");
    show_nav_info();
    String dataItemName = navMgr.getFocusedDataItemName();
    String columnName = dataItemName.substring(dataItemName.lastIndexOf("/")+1);
    JTable table = gridControlMapRuleSrcCols.getTable();
    if ( SYS_NAME_COL_NAME.equals( columnName)) {
    removeComboEditor(table, columnName);
    else if ( SYS_VER_COL_NAME.equals( columnName)) {
    removeComboEditor( table, columnName );
    else if ( TAB_NAME_COL_NAME.equals( columnName)) {
    removeComboEditor( table, columnName );
    else if ( COL_NAME_COL_NAME.equals( columnName)) {
    removeComboEditor( table, columnName );
    void removeComboEditor ( JTable table, String colName ) {
    debug("remove JComboBox as editor");
    TableColumn tc = table.getColumn(colName);
    tc.setCellEditor(null);
    4. Note that when navigated event code is added through the designer, jbInit() is
    amended to add a Navigated Listener to the grid
    gridControlMapRuleSrcCols.addNavigatedListener(new oracle.dacf.control.NavigatedAdapter() {
    public void navigatedInColumn(NavigatedEvent e) {
    gridControlMapRuleSrcCols_navigatedInColumn(e);
    public void navigatedOutColumn(NavigatedEvent e) {
    gridControlMapRuleSrcCols_navigatedOutColumn(e);
    null

  • To JDev Team : SQL generated, Struts, BC4J Admin, ...

    Hi,
    I've followed the Tutorial 'Generating a Struts-based JSP Application for an
    Application Module', where I'm working with only one table.
    When I run the 'main.html', on the left side ( navigator ), there are 'Browse' and 'Query' options.
    Every time I click on 'Browse', I always have this error :
    Error Message: JBO-26044: Error while getting estimated row count for view object TimesheetView1, statement
    SELECT count(1) FROM (SELECT Timesheet.ts_id, Timesheet.ts_user, Timesheet.ts_code, Timesheet.ts_date, Timesheet.ts_hour
    FROM timesheet Timesheet) ESTCOUNT
    My config are :
    * Win2K
    * JAVA_HOME set to j2sdk1.4.1_01
    * mySQL 3.23.49 with JDBC driver mysql-connector-java-2.0.14-bin.jar
    * I use ultraDevHack=true as parameter within the URL
    Even with 'ultraDevHack=true' parameter, the subselect still not working.
    I've seen in the forum that JDev Team have tried with that parameter, and it worked,
    but it didn't mention with which version of mySQL and which JDBC driver.
    I would like to modify the above SQL into a simpler one 'SELECT COUNT(*) FROM timesheet'.
    Anybody know how ?
    The View Object Wizard didn't help me at all for the above SQL.
    In fact I would like to fully controled, modified, or cuztomised all SQL generated.
    Back to main.html, the header contains two buttons 'BC4J Admin' and 'Help'.
    When I click on 'BC4J Admin', I have this :
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Errors compiling:C:\usr\J2EE\JDEV\system9.0.3.1035\oc4j-config\application-deployments\bc4j\webapp\persistence\_pages\_wm\_bc4j.java
    error: Invalid class file format in C:\j2sdk1.4.1_01\jre\lib\rt.jar(java/lang/Object.class). The major.minor version '48.0' is too recent for this tool to understand.
    C:\usr\J2EE\JDEV\system9.0.3.1035\oc4j-config\application-deployments\bc4j\webapp\persistence\_pages\_wm\_bc4j.java:0: Class java.lang.Object not found in class com.orionserver.http.OrionHttpJspPage.
    package _wm;
    ^
    2 errors
    Why is that ?
    Out of scope, sometimes it's very slow accessing this forum ( 'Connection timed out' or 'The specified network name is no longer available' ...).
    Any of you have the same problem ?
    Is it possible to put some criterias within the Search, i.e. Sort by Date ?
    Any help would be appreciated.

    Hi,
    I've followed the Tutorial 'Generating a Struts-based JSP Application for an
    Application Module', where I'm working with only one table.
    When I run the 'main.html', on the left side ( navigator ), there are 'Browse' and 'Query' options.
    Every time I click on 'Browse', I always have this error :
    Error Message: JBO-26044: Error while getting estimated row count for view object TimesheetView1, statement
    SELECT count(1) FROM (SELECT Timesheet.ts_id, Timesheet.ts_user, Timesheet.ts_code, Timesheet.ts_date, Timesheet.ts_hour
    FROM timesheet Timesheet) ESTCOUNT
    My config are :
    * Win2K
    * JAVA_HOME set to j2sdk1.4.1_01
    * mySQL 3.23.49 with JDBC driver mysql-connector-java-2.0.14-bin.jar
    * I use ultraDevHack=true as parameter within the URL
    Even with 'ultraDevHack=true' parameter, the subselect still not working.
    I've seen in the forum that JDev Team have tried with that parameter, and it worked,
    but it didn't mention with which version of mySQL and which JDBC driver.
    I would like to modify the above SQL into a simpler one 'SELECT COUNT(*) FROM timesheet'.
    Anybody know how ?
    The View Object Wizard didn't help me at all for the above SQL.
    In fact I would like to fully controled, modified, or cuztomised all SQL generated.
    Back to main.html, the header contains two buttons 'BC4J Admin' and 'Help'.
    When I click on 'BC4J Admin', I have this :
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Errors compiling:C:\usr\J2EE\JDEV\system9.0.3.1035\oc4j-config\application-deployments\bc4j\webapp\persistence\_pages\_wm\_bc4j.java
    error: Invalid class file format in C:\j2sdk1.4.1_01\jre\lib\rt.jar(java/lang/Object.class). The major.minor version '48.0' is too recent for this tool to understand.
    C:\usr\J2EE\JDEV\system9.0.3.1035\oc4j-config\application-deployments\bc4j\webapp\persistence\_pages\_wm\_bc4j.java:0: Class java.lang.Object not found in class com.orionserver.http.OrionHttpJspPage.
    package _wm;
    ^
    2 errors
    Why is that ?
    Out of scope, sometimes it's very slow accessing this forum ( 'Connection timed out' or 'The specified network name is no longer available' ...).
    Any of you have the same problem ?
    Is it possible to put some criterias within the Search, i.e. Sort by Date ?
    Any help would be appreciated.

  • Strange Error - 5005: Unknown error optimizing byte code.

    Hello flashcoders,
    I am facing strange problem since long time. This error code
    even doesn't exist in the list of error codes.
    This is the exact error I am getting while I compile the FLA
    from flash CS3.
    Location : , Line 1
    Description : 5005: Unknown error optimizing byte code.
    Source :
    I don't know exact reason about its generation, But here are
    the some possible reasons / hints:
    Case 1) Overloading:
    1.1) Size of .fla is 10.5 MB and its document class contains
    more than 60 classes to import and has more than 100 variables.
    1.2) Even if I put In document class - only variable
    initialization and class importing are there. Nothing in its
    constructor + no other functions are defined. Still error is there.
    1.3) If we import all classes and has all variables then it
    gives this compile error. But if we remove some particular numbers
    of variable, it's start working. In this we can remove any type of
    variables.
    1.4) After reducing variables, application starts working
    till that it won't.
    Case 2)
    2.1) Size of .fla is 1.75 MB and its document class is same
    as above one.
    2.2) All assumptions are same as above.
    2.3) Now this class contains all functions and have
    initialization of all variables + classes.
    2.4) In this If we remove 3-5 variables, it will start
    functioning else it won't.
    Its a huge application so I am even confused that what is the
    cause of error and this error stopped our working for a week now.
    Bit more information about the project that may help the team to
    identify the reason.
    1. Project development started with flash public alpha 3.
    When we started using Flash CS3, we had some design problem if we
    do open the FLA in CS3, so we completely redesigned the Movieclips
    etc., in Flash
    CS3 IDE.
    2. Project contains approx 250 classes.
    3. In main application, it imports 67 classes. (it works if I
    keep 63 classes in document class).
    4. In the case 3 above, if that works with 63 classes and If
    I do add 3 frames in existing movieclip, it stops working.
    5. In the case 3 above, if that works with 63 classes and If
    I do add / declare few more variables, it stops working.
    It would be humble appreciation if someone can come up with
    some light in the dark tunnel.
    Best Regards,
    Ashvin Savani - "arckid"
    Founder & CTO - Avinashi.com
    Adobe Community Expert
    We Never Give Up!

    I've posted an article on this problem -
    http://www.negush.net/blog/5005-unknown-error-optimizing-byte-code/
    - and here are a few ideas on how to handle it (check out the
    comments):
    - try turning off the optimizer
    - delete ASO files
    - also it seems that changing the java vm heap memory size
    could help (find he environment variables in the Windows computer
    properties and search the JAVA_TOOL_OPTIONS variable)

  • Need Help from JDev Team

    Hi,
    I posted a question here early yesterday and I haven't received any kind of reply yet!!! I understand if someone from this forum cannot help me... but I need the Jdev team to respond to me ASAP!!!!
    I'm using JDev 3.2, trying to use the Source Control feature to connect to Repository 6i. I can connect without any trouble and I can see the work area and navigate through the folders (that were created by the owner), however when I try to click on any of the 'files' branches of the folder/file tree - I get this error.
    ckron61.exe has generated errors and will be closed by Windows. You will need to restart the program. An error log is being created.
    There are 3 of us who are trying to connect, one can do it successfully... two of us cannot. I also tried to connect and access those files on another machine and it worked as well.
    All of our systems have been imaged the exact same way.
    What could the problem be...
    I appreciate your help.... thanks.

    Hi Jolene,
    I would recommend upgrading to the latest release of Repository, since it contains many bug fixes. I'm afraid I'm not sure what is causing your specific problem.
    It's also worth making sure your OS is patched up to the latest service pack.
    Oracle9i JDeveloper's support for Oracle SCM (aka Repository) is far more comprehensive than 3.2, so this is a good upgrade to make as well :)
    About UIX, the best thing is probably to post a new message to the 9i JDeveloper forum. It's not an area I'm overly familiar with, but I'm sure someone else on that forum will be able to help you out.
    Thanks,
    Brian
    JDeveloper Team

  • JDev web resources besides OTN & JDev team blogs?

    Gang,
    Besides OTN, the OTN forums and the Oracle JDeveloper development team blogs, has anybody found any other JDeveloper resources on the 'Net?
    I know Paul Dorsey, part author of the "Oracle JDeveloper 10g Handbook" has a website and a few presentations somewhere that was okay..... but are there any other rich sites I'm not visiting?... Or is Oracle it?
    It would be nice to know what others have found.
    Cheerio,
    CM.

    Shay, I'd like to stick my foot in (my mouth?) too with my opinion.
    (Apologies but I didn’t have a lot of time to draft this message so please ignore any typos and poor grammar)
    Let me start by saying I'm an Oracle programmer with 10 years experience, having coded using Designer, (-J)Headstart, Forms, Reports, database modelling, PLSQL everywhere you can possible stick it.... etc etc etc. I infrequently teach week courses on Forms, SQL, PLSQL etc. My point being is I'm no monkey in appreciating technology. I’m not brilliant but you can call me Mr Average Programmer – if it makes sense I’ll work out how to use it.
    I'm also on the Australian Oracle User Group committee, have been for several years, have meet and talked to several other senior consultants who have used JDeveloper who have extensive Oracle experience.
    And the general consensus is that the JDeveloper documentation is of poor quality.
    Now I’d like to substantiate my claims by giving evidence rather than just expressing an opinion. For a minor documentation bug I’ve recently raised, see TAR 4212035.995 bug 4058863. I’ve found more documentation errors, but after a while I always become worn down through the tedious TAR process, and just prey it will be improved in the next release.
    This bug, as you’d appreciate is a rather minor issue, but boy do I waste a lot of time working out how to use JDeveloper without the correct and complete documentation. I spend time having to search the OTN examples, forums etc, then posting to the Forums and Oracle Support for help. So much for “productivity” with choice.
    As another example, do a search in JDeveloper for “uixState”. Most UIX LOVs are useless without it in the partialtargets element….. but it’s another undocumented feature that I only found out about via the forums. Another, the javaType field within the UIX <invoke> tag: exactly what data types are allowed? If I’m not mistaken (I might be, I’m still learning my way around Java), “string” is not a valid Java type…. isn’t it “String”? See my confusion, and the documentation doesn’t say much at all. Does this mean if I return a “Number” I should use “number”.
    Would you like to get away from UIX documentation errors? Well try bringing up the help for the “Pooling and Scalability” tab, under the Configurations sub-menu option for an Application Module (the help page is entitled “Configuration Manager – Pooling and Scalability”). See all those “text” comments and “to be included in future release” comments. Not much use are they?
    Moving on to your question about “how-to”s we’d like to see is a relevant one. I can only talk from my personal experience, but what I’d like to see relevant to my current project is (or would have been useful in the past):
    1)     UIX lov – returning multiple fields.
    2)     UIX lov – using lovUpdate event with multiple LOVs on the screen.
    3)     UIX lov – a complete example that allows the user to “type” in a value to a <messageLovInput>, validates the entry against a database table via some exposed AM/VO method, clears and displays the LOV if the user enters an invalid value.     
    4)     UIX trees – proper discussion on setting up hierarchical VOs and associations.
    5)     UIX trees – example of programming insert and delete node functionality, with the example showing how to write the values through to the database.
    6)     UIX hgrids – example derived from database, where the user can insert/delete values through to the database.
    You’ll notice I’m focusing on the UIX technology. Simply put it’s what we’re using at my current site.
    2 other issues I’d like to point out too though. Notice the focus on LOVs? Well I’m an ex-Forms programmer who knows the power of the Forms LOV control. I’ve been confused, annoyed then resigned to the fact that you’ve got a hell of a lot to do yourself with JDeveloper LOVs, unlike Oracle Forms LOVs where so much functionality is built into the control. In return you might argue “this is JDeveloper Chris, not Oracle Forms”. You’re right of course, and I can accept that I have to learn the JDev way of doing things. But, and “big” but here, there are no detailed how-tos comparing the features of Oracle Forms LOVs and how to do the same thing in JDeveloper. And I mean complete examples.... which check values against the database, pop-up the LOV as described above list.
    So in your how-tos, try to think about what Forms programmers can do, and show how you would do it in JDeveloper. We need more than the simple examples because we’re learning your tool, we’re not experts in JDeveloper, and we can’t read your mind when you give (what I consider to be) overly simple examples where the author assumes given a little headstart that everyone else will be able to run with it. It took me ages to work out how to return multiple fields from a LOV (and my implementation probably s*cks).... call me stupid, but a complete how-to would have saved me lots of time.... and other people too (ie. Forms programmers) because I see the same questions appear on OTN again and again.
    To reiterate, think about the productive functionality Forms provides you, and provide how-tos on what to do in JDeveloper. Simple really.
    The 2nd point I’d like to make is you need to give complete examples. To give an example of a poor-example, recently Steven Muench (or was it Jones Jacob, sorry I forget) published a ‘how-to’ on his blog on populating a UIX tree. What was missing? Firstly documentation (though a promise of some in the future was given). Secondly how to allow the user to add/delete entries from the tree. Thirdly how to add/delete those entries from the underlying table. Fourthly dealing with updating the underlying iterators and web page given the users actions. And so on....
    I can hear you asking “what? You want us to do everything for you!?” No, but more complete examples would be great. Without a doubt in my opinion, the best example of this would be the “Building Oracle ADF Applications: A Comprehensive Workshop” tutorial. Obviously a lot of effort was put into that tutorial, but if all tutorials were written with this level of detail, I don’t think I’d be writing this post, the JDeveloper team wouldn’t be spending so much time answering queries on the Forums, and the Oracle Support team could spend more time doing training.
    Hear me out on my next comment – I’m not Oracle bashing! Just making a point.
    With regards your comments about writing blogs, and increasing the JDeveloper web-community, thinking about it logically I just can’t see it happening. The basic problem is you’re “Oracle Corporation” (aka the Other Microsoft). You’re not an Open Source **community** group. So people don’t have much reason to write blogs to the benefit of essentially Oracle.... unless they can make money out of it. They don’t get the kudos or just the good vibes of writing for the effort of everybody (essentially why Open Source exists – for the benefit of all – communism, power to the people, etc). This leads onto my second point. The people who work with Oracle tools, in complex-detail, besides Oracle’s own staff, are being paid far too much money working with your tools to waste time working on blogs. I’d love to write one, but time evades me and I’d rather make money out of the exercise. (I gotta feed my kids somehow - or maybe have some, either one ;)
    This puts you, the JDeveloper team in an interesting position. I know you’re really keen to get your tool used outside Oracle. Why do I think this? Basically your implementation of the Struts diagram tool and huge focus on JSF (aka ADF Faces) – I haven’t seen the other IDEs provide such functionality yet and I think you’ve tried very hard to provide these new features to beat the competition. But, unlike the Open Source efforts like Eclipse and Net Beans (etc), as I just mentioned, I don’t think you’ll ever get much support from the JDeveloper community in assisting your documentation efforts with this tool. So what have you got to do to increase market share besides great new features like the Struts diagrammer??....
    Well I hope’s it’s obvious after typing all of this......as there is little activity in the Internet regarding your product and how to use it besides OTN, and given complaints about your poor level of documentation, this means you should focus heavily on documentation in each release. Make sure it’s up to date. Make sure it’s complete. Review it all each time. Make plans for how it could be improved and expanded.... don’t just focus on the tool.
    I think I can hear you screaming “but we do you bl**dy idi*t!” But I’ll answer in turn.... the perception is you don’t, and the evidence in front of me shows you haven’t..... so my conclusion is I think valid.
    Also let me place a warning that the risk is if you don’t provide better documentation, my peer-consultants will not recommend JDeveloper. I know of 2 specifically who will have a very hard look at JDeveloper a 2nd time before recommending it to a client, because of their experience with the tool – in particular there frustration with the poor documentation. If they’re making such decisions, I bet others are too.
    With all the above in mind please note my goal of this whole post, and I know I’ve posted a lot, is not to be exceptionally critical of JDeveloper and the JDeveloper team. However I thought it was worthwhile writing a comprehensive message to the forum for you to look at... rather than the 1 or 2 liners you usually get.
    Gee, I should have started a blog and posted this entry I think.
    I’ll finish this post by saying that I’m thankful that the JDev team monitors this forum and puts in a good effort in supporting us, your clients, saving us a TAR or 2 and probably going bald.
    Regards,
    CM.
    PS. If you’d like to contact me for further information, you can find my current email address associated with the TAR mentioned above.
    Also please note the “standard disclaimer”, that none of the above is my employer’s or clients’ opinions; it is all totally of my own opinion.

  • Why can't I download digital copies? Every single digial copy I attempt to download returns an error that the code is no longer valid.

    Why can't I download digital copies? Every time I attempt to download a movie, iTunes returns an error that the code is no longer valid. Thx.

    Hi,
    I have seen users reporting on the forum that there download is not working anf stucking up at 99% but when they try it out again say after a day or two then the issue gets resolved, I believe in the mean time the store team/web team fixed that issue. Did you tried it again? Any success?
    Regards,
    Ankush

  • Jdev Team - Frustrated with Simple UIX-XML test case

    Why can't I get a simple UIX-XML test case to run? Better still why can't I get a response as to why it won't run? This is my second attempt at a post as the other was just left hanging. Iwas asked for more info, I provided it and that ended that.
    Again, I created a workspace. Used the scott schema and created a project with a set of VO's (and took the ALL defaults). I have created a UIX-JSP and BC4J-JSP projects that both run fine (taking all the defaults). In that same workspace without any modifications to the VO's I created a UIX-XML project. The main menu runs fine. None of the forms will run. I get the following error if I choose ANY form from the menu or I get the same error if I just run any form from Jdeveloper (except main.uix of course):
    Servlet error: Renderer failed: java.lang.ArrayIndexOutOfBoundsException: -10
    What is happening? Why cant I get this to run. Is this a failed technology? I can't seem to find any working UIX samples.
    TIA,
    Ed.
    PS. A footnote: * It seems if you don't get an answer from the Jdev team inside of two days your post is toast (unless it's a rant in which case everyone seems to jump on the band wagon). :-) :-) :-) ;-)

    Hmmmmm...... did I mention I was on Internet Explorer 6.0.2600.0000 ? Probably does not matter.
    Also, although I loaded the full 9i Developer suite, I also loaded (in a seperate directory), Sun's J2DKSE 1.3.1_03 and J2DKEE 1.3.1 and have the following local environment variables set:
    JAVA_HOME = d:\java\j2sdk
    JDK_HOME = d:\java\j2sdk
    J2EE_HOME = d:\java\j2sdkee
    JDEV_HOME = d:\oracle\9iDS\jdev
    Are any of these redundant or are they clobbering something for UIX-XML?
    TIA,
    Ed.

  • Error in Tax code while creating a PO in T.code ME21n

    Hi,
    I am trying to create purchase Order, I am getting an error when while entering this
    Tax Code : v1
    Jurisdict. Code: RS14902
    The error is "Tax code v1 in procedure TAXBRJ is Invalid"
    How to rectify this error. Or
    What can be other way of entering the tax code and jurisdict code

    Hi,
    Go to the Table T007A, where you find the tax codes.
    Input & out put taxes are the tax types.
    In FTXP T.code give the tax code and  click on the
    Input tax codes are used for purchase cycle and out put taxes are for sales cycle. I Hope you have given the sales related tax code. Thats why system is giving the error message.
       In T007 Table give the proper input and get the details.
    Regards,

  • Error while generating code in brf+ function

    Hi all,
    i am getting error while generating code in function in bRF+
    am using weight fields ..if i dont use quantity fields am able to generate code .
    please help.
    Thanks.

    Can you provide more details? What exactly is the error?
    I think we have provided a note for the issue. With the details it should be possible to identify the note number.

  • Creative Cloud for teams: error 7 during installation

    All downloads were going fine, untill I uninstalled all applications from Creative Suite 5.5 Design Premium (using Uninstall) as to not have twice the application. Once the CS 5.5 version and the CC version in my Applications folder.
    After uninstalling,  during download I receive the message "Installation failed".
    I suspect the CC download looks for the CS5.5 license?
    I wanted to reinstall CS5.5 but this does not work anymore cause it is an upgrade from CS2 Premium - which can not be installed anymore as it is not Intel compatible...
    Any help would be very much appreciated.
    06/27/13 10:48:17:869 | [INFO] |  |  |  |  |  |  | 13079 | Successfully registered application with finder /Applications/Utilities/Adobe Creative Cloud/Utils/CreativeCloud(URIHandler).app
    06/27/13 10:48:18:034 | [INFO] |  |  |  |  |  |  | 13079 | ACCC URI protocol handler registered.
    06/27/13 10:48:18:112 | [ERROR] |  |  |  |  |  |  | 13079 | ACCC URI: Error in deleting file /Applications/Adobe Creative Cloud/Adobe Creative Cloud. Error = Error Domain=NSCocoaErrorDomain Code=4 "“Adobe Creative Cloud” couldn’t be removed." UserInfo=0x7c652ad0 {NSUnderlyingError=0x7c6529f0 "The operation couldn’t be completed. No such file or directory", NSFilePath=/Applications/Adobe Creative Cloud/Adobe Creative Cloud, NSUserStringVariant=(
        Remove
    06/27/13 10:48:18:112 | [INFO] |  |  |  |  |  |  | 13079 | ACCC URI Handler: Could not get env var DISABLE_CCM_DESKTOPSHORTCUT
    06/27/13 10:48:18:157 | [ERROR] |  |  |  |  |  |  | 13079 | ACCC URI: Refreshing the finder failed. Fetching fs ref failed.Error code : (-43)  Error Description : (fnfErr) Comment : (File not found).
    06/27/13 10:48:18:157 | [INFO] |  |  |  |  |  |  | 13079 | Adobe Creative Cloud Connections shortcut created at /Applications/
    06/27/13 14:48:29:213 | [INFO] |  |  |  |  |  |  | 65299 | freeDiskSpace ... 248914477056
    06/27/13 14:48:29:869 | [INFO] |  |  |  |  | Invalid Session | closeSession | 65299 | No session for the key -
    06/27/13 14:48:29:873 | [INFO] |  |  |  |  | Invalid Session | closeSession | 65299 | No session for the key -
    06/27/13 14:48:29:877 | [INFO] |  |  |  |  | Invalid Session | closeSession | 65299 | No session for the key -
    06/27/13 14:48:29:880 | [INFO] |  |  |  |  | Invalid Session | closeSession | 65299 | No session for the key -
    06/27/13 14:48:29:987 | [INFO] |  |  |  |  |  |  | 65299 | Update Session is created and key generated is E9FC850A-1F4C-43FC-A3A3-3DB0AD100674
    06/27/13 14:48:29:992 | [INFO] |  |  |  |  |  |  | 65299 | Update Session is created and key generated is 924277B5-2242-487C-BCFA-577F6444D036
    06/27/13 14:48:29:998 | [INFO] |  |  |  |  |  |  | 65299 | Update Session is created and key generated is 39E65DC2-E455-4011-B39C-B7C80BF00DFF
    06/27/13 14:48:30:003 | [INFO] |  |  |  |  |  |  | 65299 | Update Session is created and key generated is 617F2ED9-1BDB-40F9-9AB5-2D3B1918358F
    06/27/13 14:48:30:189 | [INFO] |  |  |  |  |  |  | 65299 | Product Session is created and key generated is 21C12B70-49E7-40DE-8E94-1FE95662D7D9
    06/27/13 14:48:34:202 | [INFO] | 617F2ED9-1BDB-40F9-9AB5-2D3B1918358F |  |  |  |  |  | 65536 | Using the overridden aam check url https://ccmdls.adobe.com/AdobeProducts/AAM/1/osx10/AAMVersion.xml
    06/27/13 14:48:36:704 | [INFO] | 617F2ED9-1BDB-40F9-9AB5-2D3B1918358F |  |  |  |  |  | 65536 | No need to update AAM
    06/27/13 14:48:42:878 | [INFO] |  |  |  |  |  |  | 65729 | UpdaterCoreHelper :: Check for updates returned SUCCESS
    06/27/13 14:48:46:215 | [WARN] | 39E65DC2-E455-4011-B39C-B7C80BF00DFF |  |  |  |  |  | 65501 | Some Error has come during download operation with Error type - -40, and Error Code - 500
    06/27/13 14:48:46:216 | [ERROR] | 39E65DC2-E455-4011-B39C-B7C80BF00DFF |  |  |  |  |  | 65501 | Failed to get the file size for the file (https://prod-rel-ffc-ccm.oobesaas.adobe.com/adobe-ffc-external/core/v1/context?clientID=ap ps_panel_desktop&producerId=posa&contextKey=CB44435651CBF7590A490D4D@AdobeID&authorization Data=<authorization-data><consumerAccessToken>eyJhbGciOiJSUzI1NiJ9.eyJpZCI6IjI4MDQxMzc4MzA0NDQ1 NDkyLTA2OTUwNTQ5LWQ0MzMtNDIxNy04OWQzLWIyOWZhNjZiYmVhYSIsInNjb3BlIjoiQWRvYmVJRCxvcGVuaWQiLC JhcyI6Imltcy1uYTEiLCJjcmVhdGVkX2F0IjoiMTM3MjMzNzI4NTUzOCIsImV4cGlyZXNfaW4iOiI4NjQwMDAwMCIs InVzZXJfaWQiOiJDQjQ0NDM1NjUxQ0JGNzU5MEE0OTBENERAQWRvYmVJRCIsImNsaWVudF9pZCI6IkFDQ0NfQ1M3Ii widHlwZSI6ImFjY2Vzc190b2tlbiJ9.aSbKWnPmIkZglhmL1g-tTofW7oHq6Jt3lyLoPjYzMB8K3v-qOccsmKljpZf V_MARf8FfX4IemkAM1GSk3yMMtN4D0PQlTlCH58Jl2zhaXJlbX6gIU9SGJf7Xci4BOSdRjEfcsl8NNPz1R-BkLln8Z DBfYWr6xQxFa5ianP4AlYdY-U61MKMYNU2CvhSBMsBqLareLzZBHcmqqjSUO-87-VliMfGofKqwYqUjJMfI9kPbNXA 58PFttkNRHlqJFW4-Uog_3ys9ni-70sElmU1Yfst7UCzmomfNvF-bchJtUTKalPwI7EqIwahYqbDsySbbEL0gtKz5y Mpd6zj2v3Pgkg</consumerAccessToken></authorization-data>). DLE error status is -2
    06/27/13 14:48:46:216 | [WARN] | 39E65DC2-E455-4011-B39C-B7C80BF00DFF |  |  |  |  |  | 65501 | FileDownload : Failed to cancell the download (it might not be running)
    06/27/13 14:48:46:244 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {4817D846-700B-474E-A31B-80892B3E92E3} is not installed for language : en_US
    06/27/13 14:48:46:250 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {317243C1-6580-4F43-AED7-37D4438C3DD5} is not installed for language : en_US
    06/27/13 14:48:46:255 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {41A12FFC-89E9-4743-A51E-00975CA31F40} is not installed for language : en_US
    06/27/13 14:48:46:260 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {1E431F12-ACF0-11E2-A93E-C3F61F3900F7} is not installed for language : en_US
    06/27/13 14:48:46:265 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {D7E3240C-5D8B-4DCE-A5BA-D020514C232F} is not installed for language : en_US
    06/27/13 14:48:46:380 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {30FD541D-3C9D-41C4-B240-A994EE4E0231} is not installed for language : en_US
    06/27/13 14:48:46:385 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {DE1E055B-679C-42F8-B114-7B6ED0B8ED95} is not installed for language : en_US
    06/27/13 14:48:46:394 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {8ACD4814-788B-11E1-AC70-A860A781E0D9} is not installed for language : en_US
    06/27/13 14:48:46:399 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {00E094E1-A852-11E2-803D-ACEA632352B4} is not installed for language : en_US
    06/27/13 14:48:46:403 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {3C3EF9F8-2589-468D-9835-09AB615EA170} is not installed for language : en_US
    06/27/13 14:48:46:408 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {97297D0A-0B0F-4CB4-AEFD-FD1B8BB8C944} is not installed for language : en_US
    06/27/13 14:48:46:413 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {610AABC3-96C8-4285-BAFE-9229AE2240AE} is not installed for language : en_US
    06/27/13 14:48:46:417 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {A5ABCE72-09C9-480D-A225-71C2E492D80E} is not installed for language : en_US
    06/27/13 14:48:46:422 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {01E04E1B-2A64-470B-B08F-242909000A31} is not installed for language : en_US
    06/27/13 14:48:46:426 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {BD5669B5-49FF-4490-B956-E9D7CB9B0ADC} is not installed for language : en_US
    06/27/13 14:48:46:431 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {4FAB339E-2132-434F-9376-9CD735E4C69C} is not installed for language : en_US
    06/27/13 14:48:46:435 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF} is not installed for language : en_US
    06/27/13 14:48:46:440 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {D3952427-BE47-49F2-8A96-B0418CD9276D} is not installed for language : en_US
    06/27/13 14:48:46:445 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {D374BD8F-C941-4432-9455-1DE5054F7043} is not installed for language : en_US
    06/27/13 14:48:46:450 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {13B61A4B-7282-4124-ABD6-F6B236E8738A} is not installed for language : en_US
    06/27/13 14:48:46:454 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {39C9FB9C-7A84-11E1-B574-D095DF20721F} is not installed for language : en_US
    06/27/13 14:48:46:459 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {327492D4-78EB-11E1-8ABE-84C55623D190} is not installed for language : en_US
    06/27/13 14:48:46:464 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {C3409B0A-ACE8-11E2-9ED3-A79B9175A9A8} is not installed for language : en_US
    06/27/13 14:48:46:469 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {AAF0D225-F129-40F2-916E-12E28DBD19ED} is not installed for language : en_US
    06/27/13 14:48:46:473 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {60D034D6-7494-4FB2-AA48-EF453ECB1581} is not installed for language : en_US
    06/27/13 14:48:46:478 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {B42E718A-AAE9-4C7D-8990-2AE4C4FE87DF} is not installed for language : en_US
    06/27/13 14:48:46:482 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {244FD30F-63F1-49B9-9D98-1150FF4FFCB1} is not installed for language : en_US
    06/27/13 14:48:46:487 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {135274B3-69EE-4AE8-ACCE-1718A1EBC8CC} is not installed for language : en_US
    06/27/13 14:48:46:492 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {8c8682b4-7a92-4d15-93ac-f402049d3961} is not installed for language : en_US
    06/27/13 14:48:46:496 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {26FD0196-5B4C-4C57-8264-70D1B5398615} is not installed for language : en_US
    06/27/13 14:48:46:501 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {74EB3499-8B95-4B5C-96EB-7B342F3FD0C6} is not installed for language : en_US
    06/27/13 14:48:46:506 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {9124DF4E-617D-486B-A970-8FA632244F24} is not installed for language : en_US
    06/27/13 14:48:46:510 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {2D99B50E-431D-4AA8-85C1-172A6F8BCF09} is not installed for language : en_US
    06/27/13 14:48:46:515 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {AA01D250-3E72-4FD7-9A3B-F9A9C1DBC016} is not installed for language : en_US
    06/27/13 14:48:46:519 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {B62DD919-22B1-4AB8-A930-BC4540A1E8B6} is not installed for language : en_US
    06/27/13 14:48:46:524 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {46251F95-B2F8-484A-9B5B-8C0E5A43A202} is not installed for language : en_US
    06/27/13 14:48:46:529 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {42CED1DA-1C36-45D2-88C0-C32DB6B82B49} is not installed for language : en_US
    06/27/13 14:48:46:533 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {505FF1AC-E7F5-4462-BBA7-08900E7E9EEF} is not installed for language : en_US
    06/27/13 14:48:46:538 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {EEAE1D88-B258-4A44-A6BE-32CCC8D641D6} is not installed for language : en_US
    06/27/13 14:48:46:542 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {5D73C19B-BE10-44A6-96B2-A516756ED29F} is not installed for language : en_US
    06/27/13 14:48:46:557 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {3D46121C-A0E6-4259-B7E0-5127C218A096} is not installed for language : en_US
    06/27/13 14:48:46:562 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {29AA12E9-934C-485E-A9A1-D823FEB29880} is not installed for language : en_US
    06/27/13 14:48:46:566 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {BF8B73C5-60DC-426E-8413-CF77CA09BA1F} is not installed for language : en_US
    06/27/13 14:48:46:690 | [INFO] | 21C12B70-49E7-40DE-8E94-1FE95662D7D9 |  |  |  |  |  | 65299 | Going to close the session
    06/27/13 14:48:46:690 | [INFO] | 21C12B70-49E7-40DE-8E94-1FE95662D7D9 |  |  |  |  |  | 65299 | All waiting operations finished for this session
    06/27/13 14:49:04:649 | [INFO] |  |  |  |  |  |  | 65299 | Update Session is created and key generated is 6521260B-F6B9-4CED-8ED4-FB208D4E98D2
    06/27/13 14:49:04:672 | [INFO] |  |  |  |  |  |  | 65299 | Launching AAM Helper process
    06/27/13 14:49:04:691 | [INFO] |  |  |  |  |  |  | 65299 | process path = /Applications/Utilities/Adobe Creative Cloud/AppsPanel/../Utils/Creative Cloud Helper
    06/27/13 14:49:04:691 | [INFO] |  |  |  |  |  |  | 65299 | process args =
    06/27/13 14:49:04:691 | [INFO] |  |  |  |  |  |  | 65299 | --pipename=B76B54C5-46DD-4DC2-998F-462FCFD1A657
    06/27/13 14:49:13:536 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 65979 | The value of ETAG for the file is "aa66a4b4d5bd2a88c91c8c83840403f2:1371514425"
    06/27/13 14:49:14:084 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 65678 | The value of ETAG for the file is "678e1d0923add4dd7742340bd2ebe799:1371514425"
    06/27/13 14:49:14:848 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 65979 | The value of ETAG for the file is "d3cc30e5ed9b56ab3afa747fd5abf907:1371514403"
    06/27/13 14:51:04:713 | [INFO] |  |  |  |  |  |  | 66183 | deployment lock has been acquired.
    06/27/13 14:51:05:377 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 66479 |  launchDE for session = 6521260B-F6B9-4CED-8ED4-FB208D4E98D2
    06/27/13 14:51:05:378 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 66483 | Going to init the IPC channel
    06/27/13 14:51:06:157 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 66483 | De has been launched. Listening on the IPC now...
    06/27/13 14:51:06:157 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 66483 | IPC has been initialized
    06/27/13 14:51:57:897 | [INFO] |  |  |  |  |  |  | 66483 | Unhandled DE message:mid (15)
    06/27/13 14:51:58:897 | [INFO] |  |  |  |  |  |  | 66483 | Unhandled DE message:mid (16)
    06/27/13 14:51:59:899 | [INFO] |  |  |  |  |  |  | 66483 | Unhandled DE message:mid (17)
    06/27/13 14:52:02:444 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 66483 | done packet received from the DE with exit code - 0
    06/27/13 14:52:02:526 | [INFO] |  |  |  |  |  |  | 65299 | Trying to unmount the dmg mounted at path - /tmp/89D53B22-D0B6-46B5-95A0-DFF8946AD9E7/Muse_5_0_CCM_LS23
    06/27/13 14:52:08:495 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {26FD0196-5B4C-4C57-8264-70D1B5398615} is installed in location : /Applications
    06/27/13 14:52:08:677 | [INFO] |  |  |  |  |  |  | 65299 | Trying to unmount the dmg mounted at path - /tmp/89D53B22-D0B6-46B5-95A0-DFF8946AD9E7/Muse_5_0_CCM_LS23
    06/27/13 14:52:08:751 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 66183 | Going to close the session
    06/27/13 14:52:10:770 | [INFO] | 6521260B-F6B9-4CED-8ED4-FB208D4E98D2 |  |  |  |  |  | 66183 | All waiting operations finished for this session
    07/03/13 12:55:02:769 | [INFO] |  |  |  |  | Invalid Session | closeSession | 65299 | No session for the key -
    07/03/13 12:55:02:824 | [INFO] | 39E65DC2-E455-4011-B39C-B7C80BF00DFF |  |  |  |  |  | 65299 | Going to close the session
    07/03/13 12:55:02:965 | [WARN] |  |  |  |  |  |  | 65299 | Failed to delete the direcotry - /tmp/D8A8FC6B-C0A5-412D-B452-0882731F672C
    07/03/13 12:55:03:967 | [WARN] |  |  |  |  |  |  | 65299 | Failed to delete the direcotry - /tmp/D8A8FC6B-C0A5-412D-B452-0882731F672C
    07/03/13 12:55:04:968 | [WARN] |  |  |  |  |  |  | 65299 | Failed to delete the direcotry - /tmp/D8A8FC6B-C0A5-412D-B452-0882731F672C
    07/03/13 12:55:05:969 | [WARN] |  |  |  |  |  |  | 65299 | Failed to delete the direcotry - /tmp/D8A8FC6B-C0A5-412D-B452-0882731F672C
    07/03/13 12:55:07:005 | [WARN] |  |  |  |  |  |  | 65299 | Failed to delete the direcotry - /tmp/D8A8FC6B-C0A5-412D-B452-0882731F672C
    07/03/13 12:55:08:006 | [INFO] | 39E65DC2-E455-4011-B39C-B7C80BF00DFF |  |  |  |  |  | 65299 | All waiting operations finished for this session
    07/03/13 12:55:08:108 | [INFO] | E9FC850A-1F4C-43FC-A3A3-3DB0AD100674 |  |  |  |  |  | 65299 | Going to close the session
    07/03/13 12:55:08:146 | [INFO] | E9FC850A-1F4C-43FC-A3A3-3DB0AD100674 |  |  |  |  |  | 65299 | All waiting operations finished for this session
    07/03/13 12:55:08:174 | [INFO] | 617F2ED9-1BDB-40F9-9AB5-2D3B1918358F |  |  |  |  |  | 65299 | Going to close the session
    07/03/13 12:55:08:391 | [INFO] | 617F2ED9-1BDB-40F9-9AB5-2D3B1918358F |  |  |  |  |  | 65299 | All waiting operations finished for this session
    07/03/13 12:55:08:790 | [INFO] |  |  |  |  |  |  | 65299 | Update Session is created and key generated is 71107B9B-F2FF-449C-81B9-437636DF95A6
    07/03/13 12:55:08:795 | [INFO] |  |  |  |  |  |  | 65299 | Update Session is created and key generated is 1602CDB9-D5B3-4227-A015-8771993DE95C
    07/03/13 12:55:08:800 | [INFO] |  |  |  |  |  |  | 65299 | Update Session is created and key generated is D7C04136-6EFB-4149-BBCB-01AF874938E0
    07/03/13 12:55:09:127 | [INFO] |  |  |  |  |  |  | 65299 | Product Session is created and key generated is 1296C770-282F-4DB5-85BE-4E5E9101293B
    07/03/13 12:55:11:238 | [INFO] | D7C04136-6EFB-4149-BBCB-01AF874938E0 |  |  |  |  |  | 432253 | Using the overridden aam check url https://ccmdls.adobe.com/AdobeProducts/AAM/1/osx10/AAMVersion.xml
    07/03/13 12:55:13:414 | [INFO] | D7C04136-6EFB-4149-BBCB-01AF874938E0 |  |  |  |  |  | 432253 | No need to update AAM
    07/03/13 12:55:20:670 | [INFO] |  |  |  |  |  |  | 432290 | UpdaterCoreHelper :: Check for updates returned SUCCESS
    07/03/13 12:55:24:180 | [WARN] | 1602CDB9-D5B3-4227-A015-8771993DE95C |  |  |  |  |  | 432231 | Some Error has come during download operation with Error type - -40, and Error Code - 500
    07/03/13 12:55:24:213 | [ERROR] | 1602CDB9-D5B3-4227-A015-8771993DE95C |  |  |  |  |  | 432231 | Failed to get the file size for the file (https://prod-rel-ffc-ccm.oobesaas.adobe.com/adobe-ffc-external/core/v1/context?clientID=ap ps_panel_desktop&producerId=posa&contextKey=CB44435651CBF7590A490D4D@AdobeID&authorization Data=<authorization-data><consumerAccessToken>eyJhbGciOiJSUzI1NiJ9.eyJpZCI6IjI4MDQxMzc4MzA0NDQ1 NDkyLTA2OTUwNTQ5LWQ0MzMtNDIxNy04OWQzLWIyOWZhNjZiYmVhYSIsInNjb3BlIjoiQWRvYmVJRCxvcGVuaWQiLC JhcyI6Imltcy1uYTEiLCJjcmVhdGVkX2F0IjoiMTM3MjMzNzI4NTUzOCIsImV4cGlyZXNfaW4iOiI4NjQwMDAwMCIs InVzZXJfaWQiOiJDQjQ0NDM1NjUxQ0JGNzU5MEE0OTBENERAQWRvYmVJRCIsImNsaWVudF9pZCI6IkFDQ0NfQ1M3Ii widHlwZSI6ImFjY2Vzc190b2tlbiJ9.aSbKWnPmIkZglhmL1g-tTofW7oHq6Jt3lyLoPjYzMB8K3v-qOccsmKljpZf V_MARf8FfX4IemkAM1GSk3yMMtN4D0PQlTlCH58Jl2zhaXJlbX6gIU9SGJf7Xci4BOSdRjEfcsl8NNPz1R-BkLln8Z DBfYWr6xQxFa5ianP4AlYdY-U61MKMYNU2CvhSBMsBqLareLzZBHcmqqjSUO-87-VliMfGofKqwYqUjJMfI9kPbNXA 58PFttkNRHlqJFW4-Uog_3ys9ni-70sElmU1Yfst7UCzmomfNvF-bchJtUTKalPwI7EqIwahYqbDsySbbEL0gtKz5y Mpd6zj2v3Pgkg</consumerAccessToken></authorization-data>). DLE error status is -2
    07/03/13 12:55:24:213 | [WARN] | 1602CDB9-D5B3-4227-A015-8771993DE95C |  |  |  |  |  | 432231 | FileDownload : Failed to cancell the download (it might not be running)
    07/03/13 12:55:24:257 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {4817D846-700B-474E-A31B-80892B3E92E3} is not installed for language : en_US
    07/03/13 12:55:24:262 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {317243C1-6580-4F43-AED7-37D4438C3DD5} is not installed for language : en_US
    07/03/13 12:55:24:266 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {41A12FFC-89E9-4743-A51E-00975CA31F40} is not installed for language : en_US
    07/03/13 12:55:24:271 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {1E431F12-ACF0-11E2-A93E-C3F61F3900F7} is not installed for language : en_US
    07/03/13 12:55:24:276 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {D7E3240C-5D8B-4DCE-A5BA-D020514C232F} is not installed for language : en_US
    07/03/13 12:55:24:375 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {30FD541D-3C9D-41C4-B240-A994EE4E0231} is not installed for language : en_US
    07/03/13 12:55:24:380 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {DE1E055B-679C-42F8-B114-7B6ED0B8ED95} is not installed for language : en_US
    07/03/13 12:55:24:389 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {8ACD4814-788B-11E1-AC70-A860A781E0D9} is not installed for language : en_US
    07/03/13 12:55:24:395 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {00E094E1-A852-11E2-803D-ACEA632352B4} is not installed for language : en_US
    07/03/13 12:55:24:399 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {3C3EF9F8-2589-468D-9835-09AB615EA170} is not installed for language : en_US
    07/03/13 12:55:24:404 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {97297D0A-0B0F-4CB4-AEFD-FD1B8BB8C944} is not installed for language : en_US
    07/03/13 12:55:24:409 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {610AABC3-96C8-4285-BAFE-9229AE2240AE} is not installed for language : en_US
    07/03/13 12:55:24:414 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {A5ABCE72-09C9-480D-A225-71C2E492D80E} is not installed for language : en_US
    07/03/13 12:55:24:419 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {01E04E1B-2A64-470B-B08F-242909000A31} is not installed for language : en_US
    07/03/13 12:55:24:423 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {BD5669B5-49FF-4490-B956-E9D7CB9B0ADC} is not installed for language : en_US
    07/03/13 12:55:24:428 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {4FAB339E-2132-434F-9376-9CD735E4C69C} is not installed for language : en_US
    07/03/13 12:55:24:433 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF} is not installed for language : en_US
    07/03/13 12:55:24:438 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {D3952427-BE47-49F2-8A96-B0418CD9276D} is not installed for language : en_US
    07/03/13 12:55:24:443 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {D374BD8F-C941-4432-9455-1DE5054F7043} is not installed for language : en_US
    07/03/13 12:55:24:448 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {13B61A4B-7282-4124-ABD6-F6B236E8738A} is not installed for language : en_US
    07/03/13 12:55:24:453 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {39C9FB9C-7A84-11E1-B574-D095DF20721F} is not installed for language : en_US
    07/03/13 12:55:24:457 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {327492D4-78EB-11E1-8ABE-84C55623D190} is not installed for language : en_US
    07/03/13 12:55:24:463 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {C3409B0A-ACE8-11E2-9ED3-A79B9175A9A8} is not installed for language : en_US
    07/03/13 12:55:24:468 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {AAF0D225-F129-40F2-916E-12E28DBD19ED} is not installed for language : en_US
    07/03/13 12:55:24:472 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {60D034D6-7494-4FB2-AA48-EF453ECB1581} is not installed for language : en_US
    07/03/13 12:55:24:477 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {B42E718A-AAE9-4C7D-8990-2AE4C4FE87DF} is not installed for language : en_US
    07/03/13 12:55:24:482 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {244FD30F-63F1-49B9-9D98-1150FF4FFCB1} is not installed for language : en_US
    07/03/13 12:55:24:487 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {135274B3-69EE-4AE8-ACCE-1718A1EBC8CC} is not installed for language : en_US
    07/03/13 12:55:24:492 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/03/13 12:55:24:497 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/03/13 12:55:24:502 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/03/13 12:55:24:507 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {8c8682b4-7a92-4d15-93ac-f402049d3961} is not installed for language : en_US
    07/03/13 12:55:24:526 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {26FD0196-5B4C-4C57-8264-70D1B5398615} is installed for language : en_US
    07/03/13 12:55:24:531 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {74EB3499-8B95-4B5C-96EB-7B342F3FD0C6} is not installed for language : en_US
    07/03/13 12:55:24:536 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {9124DF4E-617D-486B-A970-8FA632244F24} is not installed for language : en_US
    07/03/13 12:55:24:541 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {2D99B50E-431D-4AA8-85C1-172A6F8BCF09} is not installed for language : en_US
    07/03/13 12:55:24:545 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {AA01D250-3E72-4FD7-9A3B-F9A9C1DBC016} is not installed for language : en_US
    07/03/13 12:55:24:550 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {B62DD919-22B1-4AB8-A930-BC4540A1E8B6} is not installed for language : en_US
    07/03/13 12:55:24:555 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {46251F95-B2F8-484A-9B5B-8C0E5A43A202} is not installed for language : en_US
    07/03/13 12:55:24:560 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {42CED1DA-1C36-45D2-88C0-C32DB6B82B49} is not installed for language : en_US
    07/03/13 12:55:24:565 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {505FF1AC-E7F5-4462-BBA7-08900E7E9EEF} is not installed for language : en_US
    07/03/13 12:55:24:569 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {EEAE1D88-B258-4A44-A6BE-32CCC8D641D6} is not installed for language : en_US
    07/03/13 12:55:24:574 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {5D73C19B-BE10-44A6-96B2-A516756ED29F} is not installed for language : en_US
    07/03/13 12:55:24:588 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {3D46121C-A0E6-4259-B7E0-5127C218A096} is not installed for language : en_US
    07/03/13 12:55:24:593 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {29AA12E9-934C-485E-A9A1-D823FEB29880} is not installed for language : en_US
    07/03/13 12:55:24:598 | [INFO] |  |  |  |  |  |  | 65299 | getIfProdInstalledInLang : product with adobeCode : {BF8B73C5-60DC-426E-8413-CF77CA09BA1F} is not installed for language : en_US
    07/03/13 12:55:24:953 | [INFO] | 1296C770-282F-4DB5-85BE-4E5E9101293B |  |  |  |  |  | 65299 | Going to close the session
    07/03/13 12:55:24:953 | [INFO] | 1296C770-282F-4DB5-85BE-4E5E9101293B |  |  |  |  |  | 65299 | All waiting operations finished for this session
    07/08/13 09:11:03:376 | [INFO] |  |  |  |  |  |  | 4864 | freeDiskSpace ... 255473852416
    07/08/13 09:11:03:504 | [INFO] |  |  |  |  | Invalid Session | closeSession | 4864 | No session for the key -
    07/08/13 09:11:03:508 | [INFO] |  |  |  |  | Invalid Session | closeSession | 4864 | No session for the key -
    07/08/13 09:11:03:513 | [INFO] |  |  |  |  | Invalid Session | closeSession | 4864 | No session for the key -
    07/08/13 09:11:03:517 | [INFO] |  |  |  |  | Invalid Session | closeSession | 4864 | No session for the key -
    07/08/13 09:11:05:170 | [INFO] |  |  |  |  |  |  | 4864 | Update Session is created and key generated is 77A626EC-7773-481F-961F-06C2FAF1E155
    07/08/13 09:11:05:176 | [INFO] |  |  |  |  |  |  | 4864 | Update Session is created and key generated is F427AD05-1254-45A9-9279-202236FE47FB
    07/08/13 09:11:05:181 | [INFO] |  |  |  |  |  |  | 4864 | Update Session is created and key generated is 695FEBE0-F911-4C55-993A-D0D7AC0B2EB5
    07/08/13 09:11:05:187 | [INFO] |  |  |  |  |  |  | 4864 | Update Session is created and key generated is 14B97A81-63FF-4DCA-9694-2BD9247189B0
    07/08/13 09:11:05:217 | [INFO] |  |  |  |  |  |  | 4864 | Product Session is created and key generated is 5E064B2C-FB8F-409B-A1F1-6C5517688E9D
    07/08/13 09:11:11:500 | [INFO] | 14B97A81-63FF-4DCA-9694-2BD9247189B0 |  |  |  |  |  | 4935 | Using the overridden aam check url https://ccmdls.adobe.com/AdobeProducts/AAM/1/osx10/AAMVersion.xml
    07/08/13 09:11:14:326 | [INFO] | 14B97A81-63FF-4DCA-9694-2BD9247189B0 |  |  |  |  |  | 4935 | No need to update AAM
    07/08/13 09:11:22:406 | [INFO] |  |  |  |  |  |  | 5333 | UpdaterCoreHelper :: Check for updates returned SUCCESS
    07/08/13 09:11:25:905 | [WARN] | 695FEBE0-F911-4C55-993A-D0D7AC0B2EB5 |  |  |  |  |  | 4935 | Some Error has come during download operation with Error type - -40, and Error Code - 500
    07/08/13 09:11:25:905 | [ERROR] | 695FEBE0-F911-4C55-993A-D0D7AC0B2EB5 |  |  |  |  |  | 4935 | Failed to get the file size for the file (https://prod-rel-ffc-ccm.oobesaas.adobe.com/adobe-ffc-external/core/v1/context?clientID=ap ps_panel_desktop&producerId=posa&contextKey=CB44435651CBF7590A490D4D@AdobeID&authorization Data=<authorization-data><consumerAccessToken>eyJhbGciOiJSUzI1NiJ9.eyJpZCI6IjI3MjI5NDcxOTU1MDUw OTEtMTA0N2YyZTctNmM4ZS00ZmIxLWI4YWMtOTg2YjhkNmUwNDQxIiwic2NvcGUiOiJBZG9iZUlELG9wZW5pZCIsIm FzIjoiaW1zLW5hMSIsImNyZWF0ZWRfYXQiOiIxMzczMjY3NDYxODkxIiwiZXhwaXJlc19pbiI6Ijg2NDAwMDAwIiwi dXNlcl9pZCI6IkNCNDQ0MzU2NTFDQkY3NTkwQTQ5MEQ0REBBZG9iZUlEIiwiY2xpZW50X2lkIjoiQUNDQ19DUzciLC J0eXBlIjoiYWNjZXNzX3Rva2VuIn0.KTUrqqdHY5bjENyqj3BLfd-qtBRUclam5fDmroKYjevuynMFMa3Zp7fm-35J _u5axaeRb4xtWnF_xz4jbKCzZWO_4iFXa5aeTR9hq31S3XA7E2BHZkUYebQNiyZfAgrnNn2ggiO_ioS2apGfyL4Xdu p-RiT5JegobpoK5du99ndHiOaEXZLimWZgN2IhVhK1jmEr48DoGpAaq219qmyAWCjV_sxunCmmT-JJtffyVsVdxpZI _3LIBsiUFtftXVtlxE9vJP9CklbraswEx0QgPrG98-VMBXloAR9yU6bBQzpXhXbChW-vDXqdvxf0wen7zJBGUACpkb GCC-RQCxsv1A</consumerAccessToken></authorization-data>). DLE error status is -2
    07/08/13 09:11:25:906 | [WARN] | 695FEBE0-F911-4C55-993A-D0D7AC0B2EB5 |  |  |  |  |  | 4935 | FileDownload : Failed to cancell the download (it might not be running)
    07/08/13 09:11:25:943 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {4817D846-700B-474E-A31B-80892B3E92E3} is not installed for language : en_US
    07/08/13 09:11:25:947 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {317243C1-6580-4F43-AED7-37D4438C3DD5} is not installed for language : en_US
    07/08/13 09:11:25:952 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {41A12FFC-89E9-4743-A51E-00975CA31F40} is not installed for language : en_US
    07/08/13 09:11:25:957 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {1E431F12-ACF0-11E2-A93E-C3F61F3900F7} is not installed for language : en_US
    07/08/13 09:11:25:962 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {D7E3240C-5D8B-4DCE-A5BA-D020514C232F} is not installed for language : en_US
    07/08/13 09:11:25:974 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {30FD541D-3C9D-41C4-B240-A994EE4E0231} is not installed for language : en_US
    07/08/13 09:11:25:980 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {DE1E055B-679C-42F8-B114-7B6ED0B8ED95} is not installed for language : en_US
    07/08/13 09:11:25:990 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {8ACD4814-788B-11E1-AC70-A860A781E0D9} is not installed for language : en_US
    07/08/13 09:11:25:996 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {00E094E1-A852-11E2-803D-ACEA632352B4} is not installed for language : en_US
    07/08/13 09:11:26:001 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {3C3EF9F8-2589-468D-9835-09AB615EA170} is not installed for language : en_US
    07/08/13 09:11:26:006 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {97297D0A-0B0F-4CB4-AEFD-FD1B8BB8C944} is not installed for language : en_US
    07/08/13 09:11:26:011 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {610AABC3-96C8-4285-BAFE-9229AE2240AE} is not installed for language : en_US
    07/08/13 09:11:26:015 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {A5ABCE72-09C9-480D-A225-71C2E492D80E} is not installed for language : en_US
    07/08/13 09:11:26:020 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {01E04E1B-2A64-470B-B08F-242909000A31} is not installed for language : en_US
    07/08/13 09:11:26:024 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {BD5669B5-49FF-4490-B956-E9D7CB9B0ADC} is not installed for language : en_US
    07/08/13 09:11:26:029 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {4FAB339E-2132-434F-9376-9CD735E4C69C} is not installed for language : en_US
    07/08/13 09:11:26:034 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF} is not installed for language : en_US
    07/08/13 09:11:26:039 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {D3952427-BE47-49F2-8A96-B0418CD9276D} is not installed for language : en_US
    07/08/13 09:11:26:043 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {D374BD8F-C941-4432-9455-1DE5054F7043} is not installed for language : en_US
    07/08/13 09:11:26:048 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {13B61A4B-7282-4124-ABD6-F6B236E8738A} is not installed for language : en_US
    07/08/13 09:11:26:052 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {39C9FB9C-7A84-11E1-B574-D095DF20721F} is not installed for language : en_US
    07/08/13 09:11:26:057 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {327492D4-78EB-11E1-8ABE-84C55623D190} is not installed for language : en_US
    07/08/13 09:11:26:062 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {C3409B0A-ACE8-11E2-9ED3-A79B9175A9A8} is not installed for language : en_US
    07/08/13 09:11:26:066 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {AAF0D225-F129-40F2-916E-12E28DBD19ED} is not installed for language : en_US
    07/08/13 09:11:26:071 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {60D034D6-7494-4FB2-AA48-EF453ECB1581} is not installed for language : en_US
    07/08/13 09:11:26:076 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {B42E718A-AAE9-4C7D-8990-2AE4C4FE87DF} is not installed for language : en_US
    07/08/13 09:11:26:080 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {244FD30F-63F1-49B9-9D98-1150FF4FFCB1} is not installed for language : en_US
    07/08/13 09:11:26:085 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {135274B3-69EE-4AE8-ACCE-1718A1EBC8CC} is not installed for language : en_US
    07/08/13 09:11:26:090 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/08/13 09:11:26:095 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/08/13 09:11:26:099 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/08/13 09:11:26:104 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {8c8682b4-7a92-4d15-93ac-f402049d3961} is not installed for language : en_US
    07/08/13 09:11:26:109 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {26FD0196-5B4C-4C57-8264-70D1B5398615} is installed for language : en_US
    07/08/13 09:11:26:114 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {74EB3499-8B95-4B5C-96EB-7B342F3FD0C6} is not installed for language : en_US
    07/08/13 09:11:26:119 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {9124DF4E-617D-486B-A970-8FA632244F24} is not installed for language : en_US
    07/08/13 09:11:26:124 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {2D99B50E-431D-4AA8-85C1-172A6F8BCF09} is not installed for language : en_US
    07/08/13 09:11:26:128 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {AA01D250-3E72-4FD7-9A3B-F9A9C1DBC016} is not installed for language : en_US
    07/08/13 09:11:26:133 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {B62DD919-22B1-4AB8-A930-BC4540A1E8B6} is not installed for language : en_US
    07/08/13 09:11:26:138 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {46251F95-B2F8-484A-9B5B-8C0E5A43A202} is not installed for language : en_US
    07/08/13 09:11:26:143 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {42CED1DA-1C36-45D2-88C0-C32DB6B82B49} is not installed for language : en_US
    07/08/13 09:11:26:147 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {505FF1AC-E7F5-4462-BBA7-08900E7E9EEF} is not installed for language : en_US
    07/08/13 09:11:26:152 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {EEAE1D88-B258-4A44-A6BE-32CCC8D641D6} is not installed for language : en_US
    07/08/13 09:11:26:157 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {5D73C19B-BE10-44A6-96B2-A516756ED29F} is not installed for language : en_US
    07/08/13 09:11:26:172 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {3D46121C-A0E6-4259-B7E0-5127C218A096} is not installed for language : en_US
    07/08/13 09:11:26:177 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {29AA12E9-934C-485E-A9A1-D823FEB29880} is not installed for language : en_US
    07/08/13 09:11:26:181 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {BF8B73C5-60DC-426E-8413-CF77CA09BA1F} is not installed for language : en_US
    07/08/13 09:11:26:287 | [INFO] | 5E064B2C-FB8F-409B-A1F1-6C5517688E9D |  |  |  |  |  | 4864 | Going to close the session
    07/08/13 09:11:26:287 | [INFO] | 5E064B2C-FB8F-409B-A1F1-6C5517688E9D |  |  |  |  |  | 4864 | All waiting operations finished for this session
    07/15/13 14:07:52:359 | [INFO] |  |  |  |  | Invalid Session | closeSession | 4864 | No session for the key -
    07/15/13 14:07:52:406 | [INFO] | 695FEBE0-F911-4C55-993A-D0D7AC0B2EB5 |  |  |  |  |  | 4864 | Going to close the session
    07/15/13 14:07:52:505 | [WARN] |  |  |  |  |  |  | 4864 | Failed to delete the direcotry - /tmp/B2A8BA87-5B95-4E49-8A12-29F192A95CE4
    07/15/13 14:07:53:506 | [WARN] |  |  |  |  |  |  | 4864 | Failed to delete the direcotry - /tmp/B2A8BA87-5B95-4E49-8A12-29F192A95CE4
    07/15/13 14:07:54:508 | [WARN] |  |  |  |  |  |  | 4864 | Failed to delete the direcotry - /tmp/B2A8BA87-5B95-4E49-8A12-29F192A95CE4
    07/15/13 14:07:55:509 | [WARN] |  |  |  |  |  |  | 4864 | Failed to delete the direcotry - /tmp/B2A8BA87-5B95-4E49-8A12-29F192A95CE4
    07/15/13 14:07:56:510 | [WARN] |  |  |  |  |  |  | 4864 | Failed to delete the direcotry - /tmp/B2A8BA87-5B95-4E49-8A12-29F192A95CE4
    07/15/13 14:07:57:511 | [INFO] | 695FEBE0-F911-4C55-993A-D0D7AC0B2EB5 |  |  |  |  |  | 4864 | All waiting operations finished for this session
    07/15/13 14:07:57:540 | [INFO] | 77A626EC-7773-481F-961F-06C2FAF1E155 |  |  |  |  |  | 4864 | Going to close the session
    07/15/13 14:07:57:564 | [INFO] | 77A626EC-7773-481F-961F-06C2FAF1E155 |  |  |  |  |  | 4864 | All waiting operations finished for this session
    07/15/13 14:07:57:586 | [INFO] | 14B97A81-63FF-4DCA-9694-2BD9247189B0 |  |  |  |  |  | 4864 | Going to close the session
    07/15/13 14:07:57:814 | [INFO] | 14B97A81-63FF-4DCA-9694-2BD9247189B0 |  |  |  |  |  | 4864 | All waiting operations finished for this session
    07/15/13 14:07:58:029 | [INFO] |  |  |  |  |  |  | 4864 | Update Session is created and key generated is ADA38E53-2026-45B7-AB26-AD50F858B231
    07/15/13 14:07:58:034 | [INFO] |  |  |  |  |  |  | 4864 | Update Session is created and key generated is 44B39C8E-8C73-4709-AD23-A7AF9C2C2A75
    07/15/13 14:07:58:040 | [INFO] |  |  |  |  |  |  | 4864 | Update Session is created and key generated is FEBA4037-C099-4B9D-A58C-C155697AB2B7
    07/15/13 14:07:58:367 | [INFO] |  |  |  |  |  |  | 4864 | Product Session is created and key generated is AEA3B179-5B49-44CA-A48A-82537D3CBF30
    07/15/13 14:08:00:756 | [INFO] | FEBA4037-C099-4B9D-A58C-C155697AB2B7 |  |  |  |  |  | 387196 | Using the overridden aam check url https://ccmdls.adobe.com/AdobeProducts/AAM/1/osx10/AAMVersion.xml
    07/15/13 14:08:02:803 | [INFO] | FEBA4037-C099-4B9D-A58C-C155697AB2B7 |  |  |  |  |  | 387196 | No need to update AAM
    07/15/13 14:08:10:061 | [INFO] |  |  |  |  |  |  | 387358 | UpdaterCoreHelper :: Check for updates returned SUCCESS
    07/15/13 14:08:13:670 | [WARN] | 44B39C8E-8C73-4709-AD23-A7AF9C2C2A75 |  |  |  |  |  | 387288 | Some Error has come during download operation with Error type - -40, and Error Code - 500
    07/15/13 14:08:13:670 | [ERROR] | 44B39C8E-8C73-4709-AD23-A7AF9C2C2A75 |  |  |  |  |  | 387288 | Failed to get the file size for the file (https://prod-rel-ffc-ccm.oobesaas.adobe.com/adobe-ffc-external/core/v1/context?clientID=ap ps_panel_desktop&producerId=posa&contextKey=CB44435651CBF7590A490D4D@AdobeID&authorization Data=<authorization-data><consumerAccessToken>eyJhbGciOiJSUzI1NiJ9.eyJpZCI6IjI3MjI5NDcxOTU1MDUw OTEtMTA0N2YyZTctNmM4ZS00ZmIxLWI4YWMtOTg2YjhkNmUwNDQxIiwic2NvcGUiOiJBZG9iZUlELG9wZW5pZCIsIm FzIjoiaW1zLW5hMSIsImNyZWF0ZWRfYXQiOiIxMzczMjY3NDYxODkxIiwiZXhwaXJlc19pbiI6Ijg2NDAwMDAwIiwi dXNlcl9pZCI6IkNCNDQ0MzU2NTFDQkY3NTkwQTQ5MEQ0REBBZG9iZUlEIiwiY2xpZW50X2lkIjoiQUNDQ19DUzciLC J0eXBlIjoiYWNjZXNzX3Rva2VuIn0.KTUrqqdHY5bjENyqj3BLfd-qtBRUclam5fDmroKYjevuynMFMa3Zp7fm-35J _u5axaeRb4xtWnF_xz4jbKCzZWO_4iFXa5aeTR9hq31S3XA7E2BHZkUYebQNiyZfAgrnNn2ggiO_ioS2apGfyL4Xdu p-RiT5JegobpoK5du99ndHiOaEXZLimWZgN2IhVhK1jmEr48DoGpAaq219qmyAWCjV_sxunCmmT-JJtffyVsVdxpZI _3LIBsiUFtftXVtlxE9vJP9CklbraswEx0QgPrG98-VMBXloAR9yU6bBQzpXhXbChW-vDXqdvxf0wen7zJBGUACpkb GCC-RQCxsv1A</consumerAccessToken></authorization-data>). DLE error status is -2
    07/15/13 14:08:13:670 | [WARN] | 44B39C8E-8C73-4709-AD23-A7AF9C2C2A75 |  |  |  |  |  | 387288 | FileDownload : Failed to cancell the download (it might not be running)
    07/15/13 14:08:13:781 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {4817D846-700B-474E-A31B-80892B3E92E3} is not installed for language : en_US
    07/15/13 14:08:13:786 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {317243C1-6580-4F43-AED7-37D4438C3DD5} is not installed for language : en_US
    07/15/13 14:08:13:791 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {41A12FFC-89E9-4743-A51E-00975CA31F40} is not installed for language : en_US
    07/15/13 14:08:13:796 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {1E431F12-ACF0-11E2-A93E-C3F61F3900F7} is not installed for language : en_US
    07/15/13 14:08:13:801 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {D7E3240C-5D8B-4DCE-A5BA-D020514C232F} is not installed for language : en_US
    07/15/13 14:08:13:856 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {30FD541D-3C9D-41C4-B240-A994EE4E0231} is not installed for language : en_US
    07/15/13 14:08:13:862 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {DE1E055B-679C-42F8-B114-7B6ED0B8ED95} is not installed for language : en_US
    07/15/13 14:08:13:872 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {8ACD4814-788B-11E1-AC70-A860A781E0D9} is not installed for language : en_US
    07/15/13 14:08:13:877 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {00E094E1-A852-11E2-803D-ACEA632352B4} is not installed for language : en_US
    07/15/13 14:08:13:883 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {3C3EF9F8-2589-468D-9835-09AB615EA170} is not installed for language : en_US
    07/15/13 14:08:13:888 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {97297D0A-0B0F-4CB4-AEFD-FD1B8BB8C944} is not installed for language : en_US
    07/15/13 14:08:13:893 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {610AABC3-96C8-4285-BAFE-9229AE2240AE} is not installed for language : en_US
    07/15/13 14:08:13:898 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {A5ABCE72-09C9-480D-A225-71C2E492D80E} is not installed for language : en_US
    07/15/13 14:08:13:903 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {01E04E1B-2A64-470B-B08F-242909000A31} is not installed for language : en_US
    07/15/13 14:08:13:909 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {BD5669B5-49FF-4490-B956-E9D7CB9B0ADC} is not installed for language : en_US
    07/15/13 14:08:13:914 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {4FAB339E-2132-434F-9376-9CD735E4C69C} is not installed for language : en_US
    07/15/13 14:08:13:919 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF} is not installed for language : en_US
    07/15/13 14:08:13:924 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {D3952427-BE47-49F2-8A96-B0418CD9276D} is not installed for language : en_US
    07/15/13 14:08:13:929 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {D374BD8F-C941-4432-9455-1DE5054F7043} is not installed for language : en_US
    07/15/13 14:08:13:935 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {13B61A4B-7282-4124-ABD6-F6B236E8738A} is not installed for language : en_US
    07/15/13 14:08:13:940 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {39C9FB9C-7A84-11E1-B574-D095DF20721F} is not installed for language : en_US
    07/15/13 14:08:13:950 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {327492D4-78EB-11E1-8ABE-84C55623D190} is not installed for language : en_US
    07/15/13 14:08:13:955 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {C3409B0A-ACE8-11E2-9ED3-A79B9175A9A8} is not installed for language : en_US
    07/15/13 14:08:13:960 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {AAF0D225-F129-40F2-916E-12E28DBD19ED} is not installed for language : en_US
    07/15/13 14:08:13:965 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {60D034D6-7494-4FB2-AA48-EF453ECB1581} is not installed for language : en_US
    07/15/13 14:08:13:971 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {B42E718A-AAE9-4C7D-8990-2AE4C4FE87DF} is not installed for language : en_US
    07/15/13 14:08:13:976 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {244FD30F-63F1-49B9-9D98-1150FF4FFCB1} is not installed for language : en_US
    07/15/13 14:08:13:981 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {135274B3-69EE-4AE8-ACCE-1718A1EBC8CC} is not installed for language : en_US
    07/15/13 14:08:13:986 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/15/13 14:08:13:992 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/15/13 14:08:13:997 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {51ae1bd8-403f-4c20-9c2b-35453148bf1b} is not installed for language : en_US
    07/15/13 14:08:14:005 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {8c8682b4-7a92-4d15-93ac-f402049d3961} is not installed for language : en_US
    07/15/13 14:08:14:022 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {26FD0196-5B4C-4C57-8264-70D1B5398615} is installed for language : en_US
    07/15/13 14:08:14:028 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {74EB3499-8B95-4B5C-96EB-7B342F3FD0C6} is not installed for language : en_US
    07/15/13 14:08:14:033 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {9124DF4E-617D-486B-A970-8FA632244F24} is not installed for language : en_US
    07/15/13 14:08:14:040 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {2D99B50E-431D-4AA8-85C1-172A6F8BCF09} is not installed for language : en_US
    07/15/13 14:08:14:045 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {AA01D250-3E72-4FD7-9A3B-F9A9C1DBC016} is not installed for language : en_US
    07/15/13 14:08:14:052 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {B62DD919-22B1-4AB8-A930-BC4540A1E8B6} is not installed for language : en_US
    07/15/13 14:08:14:058 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {46251F95-B2F8-484A-9B5B-8C0E5A43A202} is not installed for language : en_US
    07/15/13 14:08:14:064 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {42CED1DA-1C36-45D2-88C0-C32DB6B82B49} is not installed for language : en_US
    07/15/13 14:08:14:069 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {505FF1AC-E7F5-4462-BBA7-08900E7E9EEF} is not installed for language : en_US
    07/15/13 14:08:14:075 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {EEAE1D88-B258-4A44-A6BE-32CCC8D641D6} is not installed for language : en_US
    07/15/13 14:08:14:080 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {5D73C19B-BE10-44A6-96B2-A516756ED29F} is not installed for language : en_US
    07/15/13 14:08:14:096 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {3D46121C-A0E6-4259-B7E0-5127C218A096} is not installed for language : en_US
    07/15/13 14:08:14:101 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {29AA12E9-934C-485E-A9A1-D823FEB29880} is not installed for language : en_US
    07/15/13 14:08:14:107 | [INFO] |  |  |  |  |  |  | 4864 | getIfProdInstalledInLang : product with adobeCode : {BF8B73C5-60DC-426E-8413-CF77CA09BA1F} is not installed for language : en_US
    07/15/13 14:08:14:380 | [INFO] | AEA3B179-5B49-44CA-A48A-82537D3CBF30 |  |  |  |  |  | 4864 | Going to close the session
    07/15/13 14:08:14:380 | [INFO] | AEA3B179-5B49-44CA-A48A-82537D3CBF30 |  |  |  |  |  | 4864 | All waiting operations finished for this session
    07/16/13 09:08:07:776 | [INFO] |  |  |  |  |  |  | 3619 | freeDiskSpace ... 254189391872
    07/16/13 09:08:07:957 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3619 | No session for the key -
    07/16/13 09:08:07:961 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3619 | No session for the key -
    07/16/13 09:08:07:965 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3619 | No session for the key -
    07/16/13 09:08:07:969 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3619 | No session for the key -
    07/16/13 09:08:08:397 | [INFO] |  |  |  |  |  |  | 3619 | Update Session is created and key generated is E8C2CE83-973B-47F8-B230-FCB1D08714BA
    07/16/13 09:08:08:406 | [INFO] |  |  |  |  |  |  | 3619 | Update Session is created and key generated is 32C63151-1568-4A5E-B8A6-A6F3495A9CC6
    07/16/13 09:08:08:412 | [INFO] |  |  |  |  |  |  | 3619 | Update Session is created and key generated is ADF27141-D115-4114-ADB3-C5A4E9976172
    07/16/13 09:08:08:417 | [INFO] |  |  |  |  |  |  | 3619 | Update Session is created and key generated is BF3849BE-8AFD-4A3B-92ED-C17FB8A69DAC
    07/16/13 09:08:08:445 | [INFO] |  |  |  |  |  |  | 3619 | Product Session is created and key generated is 136C5BBD-F391-40A2-8E71-C8FABA5167AD
    07/16/13 09:08:12:843 | [INFO] | BF3849BE-8AFD-4A3B-92ED-C17FB8A69DAC |  |  |  |  |  | 3358 | Using the overridden aam check url https://ccmdls.adobe.com/AdobeProducts/AAM/1/osx10/AAMVersion.xml
    07/16/13 09:08:14:350 | [INFO] | BF3849BE-8AFD-4A3B-92ED-C17FB8A69DAC |  |  |  |  |  | 3358 | latest AAM is not present
    07/19/13 11:40:11:861 | [INFO] | 136C5BBD-F391-40A2-8E71-C8FABA5167AD |  |  |  |  |  | 3619 | Going to close the session
    07/19/13 11:40:11:875 | [INFO] | 136C5BBD-F391-40A2-8E71-C8FABA5167AD |  |  |  |  |  | 3619 | All waiting operations finished for this session
    07/19/13 11:40:11:908 | [INFO] | ADF27141-D115-4114-ADB3-C5A4E9976172 |  |  |  |  |  | 3619 | Going to close the session
    07/19/13 11:40:11:932 | [INFO] | ADF27141-D115-4114-ADB3-C5A4E9976172 |  |  |  |  |  | 3619 | All waiting operations finished for this session
    07/19/13 11:40:11:936 | [INFO] | E8C2CE83-973B-47F8-B230-FCB1D08714BA |  |  |  |  |  | 3619 | Going to close the session
    07/19/13 11:40:11:936 | [INFO] | E8C2CE83-973B-47F8-B230-FCB1D08714BA |  |  |  |  |  | 3619 | All waiting operations finished for this session
    07/19/13 11:40:11:940 | [INFO] | BF3849BE-8AFD-4A3B-92ED-C17FB8A69DAC |  |  |  |  |  | 3619 | Going to close the session
    07/19/13 11:40:12:091 | [INFO] | BF3849BE-8AFD-4A3B-92ED-C17FB8A69DAC |  |  |  |  |  | 3619 | All waiting operations finished for this session
    07/19/13 11:40:12:404 | [INFO] |  |  |  |  |  |  | 3619 | Update Session is created and key generated is 2169C8F2-6989-43B8-BD93-03462817798E
    07/19/13 11:40:12:411 | [INFO] |  |  |  |  |  |  | 3619 | Update Session is created and key generated is 7B216203-DBCB-4857-B9FF-F4B8CBC57A30
    07/19/13 11:40:12:416 | [INFO] |  |  |  |  |  |  | 3619 | Update Session is created and key generated is 66A5E928-2774-4328-AEB6-DE2764E3D45E
    07/19/13 11:40:12:612 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3619 | No session for the key - 136C5BBD-F391-40A2-8E71-C8FABA5167AD
    07/19/13 11:40:12:626 | [INFO] |  |  |  |  |  |  | 3619 | Product Session is created and key generated is FA3B1CFF-E453-43FF-8FA6-2E7663B96C39
    07/19/13 11:40:12:822 | [INFO] | 66A5E928-2774-4328-AEB6-DE2764E3D45E |  |  |  |  |  | 358647 | Using the overridden aam check url https://ccmdls.adobe.com/AdobeProducts/AAM/1/osx10/AAMVersion.xml
    07/19/13 11:40:15:773 | [INFO] | 66A5E928-2774-4328-AEB6-DE2764E3D45E |  |  |  |  |  | 358647 | latest AAM is not present
    07/23/13 15:19:48:738 | [INFO] |  |  |  |  |  |  | 3608 | freeDiskSpace ... 254127788032
    07/23/13 15:19:48:792 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3608 | No session for the key -
    07/23/13 15:19:48:797 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3608 | No session for the key -
    07/23/13 15:19:48:802 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3608 | No session for the key -
    07/23/13 15:19:48:806 | [INFO] |  |  |  |  | Invalid Session | closeSession | 3608 | No session for the key -
    07/23/13 15:19:48:834 | [INFO] |  |  |  |  |  |  | 3608 | Update Session is created and key generated is 59C6B2B3-EB6F-40C9-B9B5-10ACC9AC8665
    07/23/13 15:19:48:839 | [INFO] |  |

    " borked: To have totally f** something up. Usually by doing something stupid. Specifically used to describe technology that is broken."
    That is exactly what I thought I did. But then again no one warned me there are 'shared components'. So this kind of user behavior should be the starting point for development, no?
    Anyhow, the solution was:
    Renaming the file HD/Library/Application Support/Adobe/caps
    If you then install CC applications a new file 'caps' will be created with the correct updated media information.
    I will keep your link bookmarked just in case I again take something for granted.
    Thanks

  • I have a an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes. All of the other movies on the card download with out a problem.

    I have an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes.
    All of the other movies on the card download with out a problem. The movie in question is not 'corrupt' as you can watch it in iMovie direct from the SD card but as soon as you try to import it, it  just says 'error'. iIve tried moving the file to an external drive ( and other variations on this theme) then importing but have had no luck.
    Can anyone please help me.

    The mystery remains....
    Thanks for the pointers. The file type is .mts (a proprietry sony one).
    I have now found some video converter software (Wondershare and iSkysoft) at a cost. Either will convert this file for me into .mp4. This I can then import into iMovie without any problems. I've checked this on the trial versions and it worked well but without paying am left with a giant watermark in the video
    The mystery (which I still havent solved) is why did 20 other .mts files import fine and then this one not?
    If you could point me in the direction of some free .mts converter software that would be the cherry on the cake.
    Thanks

  • Adobe Print Form Error - Invalid Response Code: (401) Unauthorized

    Hi, I've just configured ADS on Netweaver 2004s. I've run through the config guide and everything works ok including the form generation test report FP_TEST_00 which outputs PDF without issue. I have two problems:
    -When I run a "test connection" on the RFC destination 'ADS' using the ADSUSER for the login details, I get a 403 not authorized error. Changing this user to J2EE_ADMIN resolves the issue and I get a 302 redirect. I've tried adding other permissions to the ADSUSER without any luck.
    -Running a report on the Portal under e.g. Executive Reporting and attempting to just right-click and hit "Print Version" results in a 401 error for request "http://hostXX:portXX/AdobeDocumentServices/Config?style=document" exactly as per this thread: Re: Adobe Form Creation Error - Invalid Response Code: (401) Unauthorized. However, I've double-checked all user details in Visual Administrator (ADS_AGENT) and on the ABAP stack side in su01 and sm59. I also tried changing the users to dialog with no effect. If I go directly to that URL and log in with ADSUSER I get a 403 not authorised error (using J2EE_ADMIN is again successful). I've noticed that in the http access log the HTTP protocol used is 1.1 when using the web browser and 1.0 when using the sm59 connection test. I've heard of problems with using HTTP/1.1, but when I change the options on IE8 to use HTTP/1.0, it changes for all other requests except the request for "http://hostXX:portXX/AdobeDocumentServices/Config?style=document", which is still submitted as HTTP/1.1. Conversely, in sm59 if I specify that it should use HTTP/1.1 under Special Options, I can see from the access log that it is in fact still using HTTP/1.0. Could this be related to the 401 error code that I'm seeing?
    Any help would be appreciated. Thanks,
    John

    I think I've ruled out the HTTP protocol version as being an issue here. However I may have found more useful information on the actual issue.
    In the security log under usr\sap\<SID>\DVEBMGS00\j2ee\cluster\server0\log\system I see a different message for the unsuccessful report PDF generation attempt to that of a direct query to the same URL with the same web browser, as below. The unsuccessful attempt appears to forget the ADSUSER credentials and resort to the default J2EE_GUEST which has no authorisations and therefore fails. The direct query doesn't lose the ADSUSER credentials and I think this is because it prompts for the user/password when needed. Does anyone know why this happens for a direct query to this URL but not for the PDF generation attempt?
    Resulting logs from unsuccessful PDF generation attempt:
    #1.5 #005056AF1EB300750000002D0000142000048B4D2208F055#1279063306899#/System/Security/WS/SecurityProtocol#sap.com/irj#com.sap.security.core.client.ws.AuthenticationContext.setDestination#AICL0001#622##<host>_<sid>_3576650#AICL0001#4c1a62608ed511dfbe2a005056af1eb3#SAPEngine_Application_Thread[impl:3]_5##0#0#Info#1#com.sap.security.core.client.ws.AuthenticationContext#Java###An destination was set with the following properties:
    {0}.#1#{PROXY_ENABLED=false, CLIENT_AUTHENTICATION_KEYSTORE_VIEW=, SAP_SID=, SLD_URL=, USERNAME=ADSUSER, SLD_WS_NAME=, URL=http://<host>:50000/AdobeDocumentServices/Config?style=document, PROXY_URL=, SSL_SERVER_AUTHENTICATION=IGNORE, SLD_WS_SYSTEM_NAME=, PASSWORD=XXX, SLD_WS_PORT=, SAP_CLIENT=, DEFAULT_URL=http://localhost:50000/AdobeDocumentServices/Config?style=document, Authentication=BASIC, CLIENT_AUTHENTICATION_KEYSTORE_CERTIFICATE=, URL_CHOICE=Custom, SAP_LANGUAGE=}#
    #1.5 #005056AF1EB30072000000250000142000048B4D220A12ED#1279063306977#/System/Security/Authentication##com.sap.engine.services.security.authentication.logincontext#J2EE_GUEST#0##<host>_<sid>_3576650#Guest#4c1a62608ed511dfbe2a005056af1eb3#SAPEngine_Application_Thread[impl:3]_24##0#0#Info#1#com.sap.engine.services.security.authentication.logincontext#Plain###LOGIN.FAILED
    User: N/A
    Authentication Stack: com.adobe/AdobeDocumentServices*AdobeDocumentServices_Config
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   SUFFICIENT  ok          exception             true       Authentication did not succeed.#
    Successful direct access of URL http://<host>:50000/AdobeDocumentServices/Config?style=document (click on rpData test and manually log in as ADSUSER):
    #1.5 #005056AF1EB30070000000250000142000048B4D3E260016#1279063778670#/System/Security/Authentication##com.sap.engine.services.security.authentication.logincontext#ADSUSER#675##<host>_<sid>_3576650#Guest#812f72008ed611dfa62d005056af1eb3#SAPEngine_Application_Thread[impl:3]_14##0#0#Info#1#com.sap.engine.services.security.authentication.logincontext#Plain###LOGIN.OK
    User: ADSUSER
    Authentication Stack: com.adobe/AdobeDocumentServices*AdobeDocumentServices_Config
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   SUFFICIENT  ok          true       true                 
    Central Checks                                                                                true                  #
    #1.5 #005056AF1EB30070000000260000142000048B4D3E2666A6#1279063778702#/System/Security/Audit/J2EE##com.sap.engine.services.security.roles.audit#ADSUSER#675##<host>_<sid>_3576650#ADSUSER#812f72008ed611dfa62d005056af1eb3#SAPEngine_Application_Thread[impl:3]_14##0#0#Info#1#com.sap.engine.services.security.roles.audit#Java###{0}: Authorization check for caller assignment to J2EE security role [{1} : {2}].#3#ACCESS.OK#SAP-J2EE-Engine#all#

  • Is there a error with this code

    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class ClickMe extends Applet implements MouseListener {
    private Spot spot = null;
    private static final int RADIUS = 7;
    public void init() {
    addMouseListener(this);
    public void paint(Graphics g) {
    //draw a black border and a white background
    g.setColor(Color.white);
    g.fillRect(0, 0, getSize().width - 1, getSize().height - 1);
    g.setColor(Color.black);
    g.drawRect(0, 0, getSize().width - 1, getSize().height - 1);
    //draw the spot
    g.setColor(Color.red);
    if (spot != null) {
    g.fillOval(spot.x - RADIUS, spot.y - RADIUS, RADIUS * 2, RADIUS * 2);
    public void mousePressed(MouseEvent event) {
    if (spot == null) {
    spot = new Spot(RADIUS);
    spot.x = event.getX();
    spot.y = event.getY();
    repaint();
    public void mouseClicked(MouseEvent event) {}
    public void mouseReleased(MouseEvent event) {}
    public void mouseEntered(MouseEvent event) {}
    public void mouseExited(MouseEvent event) {}
    When I compile the the code I get a "cannot resolve symbol"
    private Spot spot = null;
    spot = new Spot(RADIUS);
    I don't know if these are errors in the code

    'cannot resolve symbol' errors usually mean a problem with the declarations and initialisations at the start of your class. This is specifically to do with your line private Spot spot = null;
    i haven`t much time to look at your code, but i would suggest getting rid of the null initialisation here, and do you ever actually change this value? after a quick look it seems that you only query it to see if the variable spot is null. if you never affect this value, then it will always be null and only one if statement will ever be executed.
    but as i said i haven`t any time, so could be off here
    boutye - boss is coming bak argh!

Maybe you are looking for

  • TS3037 I need help pairing my iPad Air to my Bose wireless speaker via bluetooth

    I need help pairing my iPad Air to my Bose wireless speaker via Bluetooth

  • About Container Category in Integration Process (BPM)

    Hi Friends Can any one  explain me abut Process container variable ReceiverList which is defined as a type "Receiver" and How to use in Integration Process With Examples Message was edited by:         Viswanadh Vadde

  • NO of Standard Reports

    HI folks, Im in a urgent need of this : Can any one tell me that how many no. standard reports in HR module approximately............ Suitable wil reward greatfully....................... Thanks in advance Naga

  • How do I remove a powerline using lightroom

    I am using LR 5.4.   Is there an effective way to remove power lines and other objects from an image?  Been trying to search through the videos, but don't seem to be hitting the right place.

  • Developing apps in Xcode?

    I have recently started developing apps in Xcode, now my problem arises when I want to develop the same app for android or windows. Does this mean I have to learn some new programming language or a software? If I have to, how different is it from Xco