ODAC 12c Release 3 configuration error

Hi, i am getting the following error:
Log file:
INFO: Command C:\WINDOWS\system32\cmd /c call C:\OracleClient\product\12.1.0\client_1\bin\oramtsctl.exe -new    -internal
INFO: ... GenericInternalPlugIn.handleProcess() entered.
INFO: ... GenericInternalPlugIn: getting configAssistantParmas.
INFO: ... GenericInternalPlugIn: checking secretArguments.
INFO: No arguments to pass to stdin
INFO: ... GenericInternalPlugIn: starting read loop.
INFO: Read: Service is being created.
ATTENTION: Skipping line: Service is being created.
INFO: End of argument passing to stdin
INFO: Read: Error: hostname EMGSCMP033.emgs.emergensyscorporation.com is too long.
ATTENTION: Skipping line: Error: hostname XXXXXXX is too long.
INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
INFO: Read: Action: specify one IP address of the host when creating the service.
ATTENTION: Skipping line: Action: specify one IP address of the host when creating the service.
INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
INFO: Read: OUI internal: error occurred on localhost
ATTENTION: Skipping line: OUI internal: error occurred on localhost
INFO: Exceeded the number of arguments passed to stdin. CurrentCount:1 Total args:0
INFO: Completed Plugin named: Oracle Services For Microsoft Transaction Server
If i try to run oramtsctl.exe specifying my IP, i get the following error:
What can i do?
Thank you.

Can you run oramtsctl.exe locally on the machine? Trying to figure out if this is a networking access/permissions problem or an install issue.
Did this problem occur with previous ODAC releases on the same machines?

Similar Messages

  • Transaction aborts after installing ODAC 12c Release 3

    I have .net code that used a transaction scope which works fine using ODAC 11g Release 4, but fails with "Unable to enlist in a distributed transaction" using ODAC 12c Release 1,2, or 3.  The transaction to a single database.  I am at a loss for what could be the issue.
    This issue occurs on both Windows 7 and Windows Server 2008 R2.
    I have reviewed the trace logs for both the Microsoft Distributed Transaction Server, and the Oracle Services for Microsoft Transactions Services.  The MSDTC trace logs indicate that the transaction abort was request was received from the calling application ("RECEIVED_ABORT_REQUEST_FROM_BEGINNER").  The ORAMTS trace logs indicate an OCI error and that there was an attempt to begin a distributed transaction with out logging on ("OCI_ERROR - 2048." ,  "ORA-02048: attempt to begin distributed transaction without logging on")
    I can reproduce this error with a simple code example with just tried to insert records into a table.  If I change the data provider to "System.Data.OracleClient", or uninstall 12c and install 11g this code works fine.
    DataSet1TableAdapters.DataTable1TableAdapter da = new DataSet1TableAdapters.DataTable1TableAdapter();
                using (TransactionScope scope = new TransactionScope())
                    Transaction txn = Transaction.Current;
                    try
                       da.Insert(0, "This ia a title");
                        scope.Complete();
                        lblmessage.Text = "Transaction Succeeded.";
                    catch (Exception ex)
                        txn.Rollback();
                        lblmessage.Text = "Transaction Failed.";
    Can anyone provide any ideas what is happening?  I really would like to use ODAC 12c.
    Thanks.

    Moving to the ODP.NET forum to get a wider audience.

  • Oracle ODAC 12c Release 3 32-bit supports EF 6.x?

    Hello,
    I have Windows  8.1 64-bit with Visual Studio 2013.  I installed the latest Oracle ODAC 12c Release 3 32-bit which says it supports EF 6.  When add the ADO.NET Entity Framework to my project and choose my Oracle data connection, it doesn't allow me to select the Entity Framework 6.0 version.  It has Entity Framework 5.x selected and version 6.x is greyed out.  It says 'An Entity Framework database provider compatible with the latest version of the Entity Framework could not be found for your data connection'.  Why is that?
    Thanks

    How is your app.config? You need to have the Oracle.ManagedDataAccess.Client provider in your app.config:
      <configSections>
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
      </configSections>
    <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
        <providers>
          <provider invariantName="Oracle.ManagedDataAccess.Client"
              type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>
    I have experimented a bit more, and suggest the following:
    1) Remove any Oracle driver references for the various projects. Close Visual Studio.
    2) Uninstall ODP.Net.
    3) Reopen Visual Studio and install the latest version of Nuget package "Oracle Data Provider for .NET (ODP.NET) EntityFramework" (I have "6.121.1-beta (Prerelease)"), and include this package both for your data libraries and the application itself.
    This will make sure that the completed application will have all the necessary drivers, and ensures that all users will be able to compile and run the solution - all the references will point to the dll's included in the Nuget package.
    3) Edit: As the Nuget package I reference above is not authored by Oracle I'd recommend waiting for the correct official Nuget package - I solved it by adding references to Oracle.ManagedDataAccess.dll and Oracle.ManagedDataAccess.EntityFramework.dll located in the local Oracle Home, with "Copy Local" set to True, to ensure that they are distributed along with the package. I added the references after installing the newest version of the ODAC package.
    4) Close Visual Studio and install the latest (beta) version of ODP.Net - this will enable you to run the import wizard. (Currently12C R3 Beta 2 - get the 32 bit version: ODAC 12c Release 3 Beta Download).
    5) Reopen Visual Studio. Make sure that both the application and data library has the <entityFramework> above.
    In this way - any other computer can run and compile your project - they just need to get the Nuget package with the managed driver dll's. But - to run the wizard you need to have ODP.Net, it seems.

  • Re: Oracle ODAC 12c Release 3 32-bit supports EF 6.x?

    I am also facing same problem with latest ODP.NET. Our existing application with 11G and EF 4.3 DB first worked very well. We need to migrate our application from 11G to 12C. But its showstopper for us to proceed. Please help us.
    My environment details
    Latest Oracle ODAC 12c Release 3 - 32-bit released on 24-Dec-2014
    Visual Studio 2013 Update 3 - 32 Bit on Windows 8.1 64 bit OS
    Entity Framework 6.1.31219.0 (EntityFramework.6.1.2)
    I have tried with .Net framework 4.5, 4.5.1 and 4.5.2.
    The latest EntityFramework.dll (6.1.31219.0) added to project reference, EF 6.x option alone comes also getting greyed out.
    If I remove EntityFramework.dll from project reference, getting only option to use EF 5.0
    Tried various config file changes, different versions of EF (6+), also tried reverting to ODAC 12c Release 3 Beta. I could not make it working 12c ODP.Net with EF 6+ DB first.
    Please suggest us the ideal environment for 12c ODP.Net with EF 6+ DB first.
    Thanks

    Have you set the entityFramework correctly in the local app.config/web.config? You need to set it both in any libraries using the code and in the deployed application.
    And - how is the system.data/DbProviderFactories in the correct machine.config? You either have to have it set in the correct machine.config or the local app.config/web.config files.
    Here's my working local config file, using the 12c R3 release version dll's and the managed drivers:
      <configSections>
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
      </configSections>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
        <providers>
          <provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>
      <system.data>
        <DbProviderFactories>
          <!-- Remove in case this is already defined in machine.config -->
          <remove invariant="Oracle.ManagedDataAccess.Client" />
          <add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
        </DbProviderFactories>
      </system.data>
      <connectionStrings>
        <add name="MyOracleModel" connectionString="DATA SOURCE=MySource;PASSWORD=MyPassword;PERSIST SECURITY INFO=True;USER ID=MyUserName" providerName="Oracle.ManagedDataAccess.Client" />
      </connectionStrings>
    And for example
      <oracle.manageddataaccess.client>
        <version number="4.121.2.0">
          <dataSources>
            <dataSource alias="MySource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=MyService)))" />
          </dataSources>
        </version>
      </oracle.manageddataaccess.client>
    for explicit server settings or
      <oracle.manageddataaccess.client>
        <version number="4.121.2.0">
          <settings>
            <setting name="TNS_ADMIN" value="C:\app\path\to\tnsnamesdotora\here\network\ADMIN" />
          </settings>
        </version>
      </oracle.manageddataaccess.client>
    ..to point to a tnsnames.ora file.

  • ODAC 12c release 1 compatibility

    I am starting a Project which will use Oracle 10g release 2 as database and Visual Studio 2012 for development. I would like to ask if the ODAC 12c release 1 would work in that scenario. For the development environment I will be using an Oracle 11g XE but the final product will connect to an Oracle 10g release 2 database.
    Is it possible to use the ODAC 12c for both scenarios?
    Thanks!

    From Oracle's website:
    32-bit ODAC 12c supports connectivity to Oracle Database versions 10.2 and higher.
    So I would assume it would work fine.
    Your test environment is going to be Oracle 10g2, right?

  • ODAC 12c Release 3

    Any news on the release date of the ODAC 12c Release 3, we really need xmltype?
    Rick

    This is a partial list of the planned features:
    Entity Framework Code First and Code First Migrations (requires EF 6)
    native Entity Framework 6 certification
    NuGet support
    .NET Framework 4.5.2 certification
    The beta will be coming before the end of summer.

  • Configuration error  when installing OEM 12c

    Hi
    I was trying to install OEM cloud control 12c release 2 on a 64 bit Red Hat Enterprise Linux Server release 5.7 and in the “OMS Configuration” step the process encountered the following error and stopped.
    INFO: oracle.sysman.top.oms:Securing OMS ......
    INFO: oracle.sysman.top.oms:java.lang.Exception: emkey is not present in repository and backup is not present on file system. Hence emkey cannot be copied to credstore.
    INFO: oracle.sysman.top.oms:           at oracle.sysman.omsca.adapter.wls.OMSWLSAdapter.adapterPostDeployAndReposSetup(OMSWLSAdapter.java:2844)
    INFO: oracle.sysman.top.oms:           at oracle.sysman.omsca.framework.OMSGenericAdapter.postDeployAndReposSetup(OMSGenericAdapter.java:327)
    INFO: oracle.sysman.top.oms:           at oracle.sysman.omsca.framework.OMSCAFreshInstall.execute(OMSCAFreshInstall.java:193)
    INFO: oracle.sysman.top.oms:           at oracle.sysman.omsca.framework.OMSConfigAssistantDriver.main(OMSConfigAssistantDriver.java:240)
    INFO: oracle.sysman.top.oms:OMSCA-ERR:Securing of OMS failed
    INFO: oracle.sysman.top.oms:
    INFO: oracle.sysman.top.oms:OMSCA-ERR:Post "Deploy and Repos Setup" operations failed. Check the trace file:/u02/Middleware/oms/cfgtoollogs/omsca/omsca_20130701175825.log
    INFO: oracle.sysman.top.oms:
    Check the OMS Configuration Assistant logs at: /u02/Middleware/oms/cfgtoollogs/omsca
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration has failed its perform method
    And the following is from the mentioned log file:
    SEVERE: Exception occurred while securing OMS:
    java.lang.Exception: emkey is not present in repository and backup is not present on file system. Hence emkey cannot be copied to credstore.
                    at oracle.sysman.omsca.adapter.wls.OMSWLSAdapter.adapterPostDeployAndReposSetup(OMSWLSAdapter.java:2844)
                    at oracle.sysman.omsca.framework.OMSGenericAdapter.postDeployAndReposSetup(OMSGenericAdapter.java:327)
                    at oracle.sysman.omsca.framework.OMSCAFreshInstall.execute(OMSCAFreshInstall.java:193)
                    at oracle.sysman.omsca.framework.OMSConfigAssistantDriver.main(OMSConfigAssistantDriver.java:240)
    Jul 1, 2013 6:15:22 PM oracle.sysman.omsca.framework.OMSGenericAdapter postDeployAndReposSetup
    SEVERE: OMSCA-ERR:Post "Deploy and Repos Setup" operations failed. Check the trace file:/u02/Middleware/oms/cfgtoollogs/omsca/omsca_20130701175825.log
    Jul 1, 2013 6:15:22 PM oracle.sysman.omsca.framework.OMSCAFreshInstall execute
    SEVERE: Post "Deploy and Repos Setup" operations failed.
    Jul 1, 2013 6:15:22 PM oracle.sysman.omsca.framework.OMSConfigAssistantDriver main
    I have to mention that previously I installed OEM cloud control 12c release 2 on a 64 bit Windows and used the DB that I am trying to use for the current installation as the repository. Actually for some reason I stopped the previous Windows OEM and try to install a new Linux version and I want to use the same DB. Is this the reason for the error? What should I do to solve that? What about to create a new DB schema?
    Ferez

    AkankshaSheoranKaler,
    Yes, I am using same database to house the 12.1.0.2  OMS on win and 12.1.0.2 on linux but I am not going to use the OMS on win.
    Your solution worked for me. Dropping sysman schema and removing it's related synonyms solved the problem, thank you very much.
    Ferez

  • Error in Oracle Database Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13

    on page 88 of the "Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13", the example 5-1 SHOW ALL Command is the same of the "Backup and Recovery User's Guide 11g Release 2 (11.2) E10642-06" on page 82 and that output is related to a Oracle Database 11g version (the 10g doesn't print the first line "RMAN configuration parameters for database with db_unique_name PROD1 are:").

    My test cases here:
    Database administrator workshop: Differences in default RMAN configuration settings between 12c and 11g
    {code}[oracle@vsi08devpom ~]$ export ORACLE_SID=CDB001
    [oracle@vsi08devpom admin]$ sqlplus system/oracle@CDB001
    SQL*Plus: Release 12.1.0.1.0 Production on Thu Sep 26 09:10:50 2013
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    Last Successful login time: Tue Jul 16 2013 13:43:48 +02:00
    Connected to:
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
    SQL> show con_name
    CON_NAME
    CDB$ROOT
    [oracle@vsi08devpom ~]$ rman target /
    Recovery Manager: Release 12.1.0.1.0 - Production on Thu Sep 26 09:12:42 2013
    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: CDB001 (DBID=4134963396)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name CDB001 are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/opt/app/oracle/product/12.1.0/db_1/dbs/snapcf_CDB001.f'; # default{code}
    {code}
    [oracle@localhost orcl]$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Wed Sep 25 08:12:17 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ORCL (DBID=1229390655)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name ORCL are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/home/oracle/app/oracle/product/11.2.0/dbhome_2/dbs/snapcf_orcl.f'; # default
    {code}

  • Oracle Enterprise Manager Agent deployment (Installation and Configuration) Error

    Hello,
    I am trying to create an agent on a linux server using Oracle Enterprise Manager 12.1.0.3. The user is created with root privilege on the server, by change /etc/sudoers entry username the same as the root entry. After that I tried to add host target by clicking Setup->Add Target->Add target Manually->Add Host Targets in the Oracle Enterprise Manager.
    In the Add Target view: I clicked on add, then I entry host and platform information. After that I click next. Then I provided the Linux x86-64 : Installation Details for
    Installation Base Directory, Instance Directory, Name Credential ... then click next. then click Deploy Agent.
    In the Add Host Status view: stages Initialization and Remote Prerequisite Check successfully passed, but in the stage Agent Deployment, it failed in the Installation and Configuration phrase of the Agent Deployment stage.
    The log content is shown below. There are numerous SEVERE Errors. But I don't have much experience in dealing with these type of problems. I thank you in advance for all the helps.
    lf
    WARNING: Validation of XML schema is disabled because AggregateDescriptions.xsd could not be found
    INFO: Creating new CFM connection
    INFO: Creating a new logger for oracle.sysman.top.agent
    INFO: Unmarshalling /users/ncgf/em_agent/core/12.1.0.3.0/inventory/ContentsXML/ConfigXML/oracle.sysman.top.agent.12_1_0_3_0.xml
    INFO: Creating a new logger for OuiConfigVariables
    INFO: Unmarshalling /users/ncgf/em_agent/core/12.1.0.3.0/inventory/ContentsXML/ConfigXML/OuiConfigVariables.1_0_0_0_0.xml
    INFO: Aggregate Description oracle.sysman.top.agent:12.1.0.3.0:common successfully loaded
    INFO: Aggregate Description OuiConfigVariables:1.0.0.0.0:common successfully loaded
    INFO: Successfully returning from CfmFactory.connect()
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 2 aggregate instances saved
    INFO: oracle.sysman.top.agent:IAction.perform() was called on {Action state:configuration in CfmAggregateInstance: oracle.sysman.top.agent:12.1.0.3.0:common:family=CFM:oh=/users/ncgf/em_agent/core/12.1.0.3.0:label=1}
    INFO: Framework waiting for Action to complete at 15:08:10.272
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=configuration Status=is running with ActionStep=0 stepIndex=0 microStep=0
    WARNING: Skipping environment variable line: "}": oracle.sysman.emCfg.common.CfwException: A non-empty environment line must contain "=": }
    WARNING: Failed to read environment variable file /users/ncgf/em_agent/core/12.1.0.3.0/install/envVars.properties: java.io.FileNotFoundException: /users/ncgf/em_agent/core/12.1.0.3.0/install/envVars.properties (No such file or directory)
    INFO: oracle.sysman.top.agent:About to execute plug-in Agent Configuration Assistant
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant is running
    INFO: oracle.sysman.top.agent:Internal PlugIn Class: oracle.sysman.agent.config.AgentConfiguration
    INFO: oracle.sysman.top.agent:Classpath = /users/ncgf/em_agent/core/12.1.0.3.0/oui/jlib/srvm.jar:/users/ncgf/em_agent/core/12.1.0.3.0/jlib/agentConfig.jar:/users/ncgf/em_agent/core/12.1.0.3.0/jlib/emConfigInstall.jar:/users/ncgf/em_agent/core/12.1.0.3.0/sysman/jlib/emagentSDK.jar:/users/ncgf/em_agent/core/12.1.0.3.0/modules/oracle.http_client_11.1.1.jar:/users/ncgf/em_agent/core/12.1.0.3.0/sysman/jlib/log4j-core.jar
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration has been started
    INFO: oracle.sysman.top.agent:Parametes passed to agent configuration are:
    1.ORACLE_HOME=/users/ncgf/em_agent/core/12.1.0.3.0
    2.AGENT_PORT=3872
    3.ORACLE_HOSTNAME=nsn175-89.us.oracle.com
    4.b_doDiscovery=false
    5.AGENT_BASE_DIR=/users/ncgf/em_agent
    6.AGENT_INSTANCE_HOME=/users/ncgf/em_agent/agent_inst
    7.s_hostname=nsn175-89.us.oracle.com
    8.OMS_HOST=nsn175-105.us.oracle.com
    9.b_startAgent=false
    10.b_secureAgent=true
    11.b_chainedInstall=false
    12.b_forceConfigure=false
    13.EM_UPLOAD_PORT=4904
    14.b_forceAgentDefaultPort=false
    15.s_staticPorts=
    16.PROPERTIES_FILE=
    b_skipValidation=false
    INFO: oracle.sysman.top.agent:Validating OMS_HOST and EM_UPLOAD_PORT
    INFO: oracle.sysman.top.agent:Validating with http protocol ...
    INFO: oracle.sysman.top.agent:URL framed is:http://nsn175-105.us.oracle.com:4904/empbs/genwallet
    SEVERE: oracle.sysman.top.agent:Connection refusedUnexpected end of file from server
    INFO: oracle.sysman.top.agent:Validating with https protocol ...
    INFO: oracle.sysman.top.agent:URL framed is:https://nsn175-105.us.oracle.com:4904/empbs/genwallet
    SEVERE: oracle.sysman.top.agent:The EM_UPLOAD_PORT passed is a secure port. Hence AGENT_REGISTRATION_PASSWORD or s_encrSecurePwd should be passed
    INFO: oracle.sysman.top.agent:EM Protocol Switch determined: https
    INFO: oracle.sysman.top.agent:Performing free port detection..
    INFO: oracle.sysman.top.agent:Trying for host : nsn175-89/10.134.175.89 and port : 3872
    INFO: oracle.sysman.top.agent: Trying for host : /127.0.0.1 and port : 3872
    INFO: oracle.sysman.top.agent:** Agent Port Check completed successfully.**
    INFO: oracle.sysman.top.agent:Agent Port from User Passed Port3872
    INFO: oracle.sysman.top.agent:Paths after canonical format conversions are :
    1. state_dir=/users/ncgf/em_agent/agent_inst
    2. agentBaseDir=/users/ncgf/em_agent
    3. oraHome=/users/ncgf/em_agent/core/12.1.0.3.0
    INFO: oracle.sysman.top.agent:Parent directory of agent instance home:/users/ncgf/em_agent
    INFO: oracle.sysman.top.agent:AgentConfiguration:perform:AgentPortHandler for /users/ncgf/em_agent/core/12.1.0.3.0 and hosts=nsn175-89.us.oracle.com returned Port to Use=3872
    INFO: oracle.sysman.top.agent:Instantiating emctl.template file #DEFAULT_EMSTATE# with /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Writing the following contents into /users/ncgf/em_agent/core/12.1.0.3.0/install/oragchomelist
    INFO: oracle.sysman.top.agent:/users/ncgf/em_agent/core/12.1.0.3.0:/users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Both /etc/oragchomelist and /var/opt/oracle/oragchomelist does not exist.
    INFO: oracle.sysman.top.agent:Executing emctl deploy agent command...
    INFO: oracle.sysman.top.agent:AgentConfiguration: Executing emctl deploy agent command...
    INFO: oracle.sysman.top.agent:Executing the command: /users/ncgf/em_agent/core/12.1.0.3.0/bin/emctl deploy agent -L -o nsn175-105.us.oracle.com:4904 -N /users/ncgf/em_agent/agent_inst nsn175-89.us.oracle.com:3872 nsn175-89.us.oracle.com
    INFO: oracle.sysman.top.agent:Creating shared install...
    INFO: oracle.sysman.top.agent:Source location: /users/ncgf/em_agent/core/12.1.0.3.0
    INFO: oracle.sysman.top.agent:Destination (shared install) : /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:Secure Mode: No
    INFO: oracle.sysman.top.agent:DeployMode : agent
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:Creating directories...
    INFO: oracle.sysman.top.agent:Creating private.properties...
    INFO: oracle.sysman.top.agent:Creating blackouts.xml...
    INFO: oracle.sysman.top.agent:Creating targets.xml...
    INFO: oracle.sysman.top.agent:Creating emctl control program...
    INFO: oracle.sysman.top.agent:Creating emtgtctl control program...
    INFO: oracle.sysman.top.agent:Agent will not be secured.
    INFO: oracle.sysman.top.agent:Secure REPOSITORY_URL found. New agent should be configured for secure mode
    INFO: oracle.sysman.top.agent:Secure emdWalletSrcUrl found. New agent should be configured for secure mode
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:Property 'agentTZRegion' is  missing from /users/ncgf/em_agent/agent_inst/sysman/config/emd.properties. Updating it...
    INFO: oracle.sysman.top.agent:An agentTZregion of 'US/Pacific' is installed in /users/ncgf/em_agent/agent_inst/sysman/config/emd.properties.
    INFO: oracle.sysman.top.agent:The command: /users/ncgf/em_agent/core/12.1.0.3.0/bin/emctl deploy agent -L -o nsn175-105.us.oracle.com:4904 -N /users/ncgf/em_agent/agent_inst nsn175-89.us.oracle.com:3872 nsn175-89.us.oracle.com completed with status=0
    SEVERE: oracle.sysman.top.agent:Securing of agent step will be skipped because of the following reasons:
    1. Agent Registration Password was not passed.
    2. b_secureAgent was passed as false
    3. The flag -forceConfigure was assed from agentDeploy.sh
    INFO: oracle.sysman.top.agent:Plugin File:/users/ncgf/em_agent/plugins.txt
    INFO: oracle.sysman.top.agent:Plugin Homes found.
    INFO: oracle.sysman.top.agent:Executing command :/users/ncgf/em_agent/core/12.1.0.3.0/perl/bin/perl /users/ncgf/em_agent/core/12.1.0.3.0/bin/AgentPluginDeploy.pl -oracleHome /users/ncgf/em_agent/core/12.1.0.3.0 -agentDir /users/ncgf/em_agent -pluginIdsInfoFile /users/ncgf/em_agent/plugins.txt -action configure -emStateDir /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:
    INFO: oracle.sysman.top.agent:The Agent emStateDir location passed is /users/ncgf/em_agent/agent_inst
    INFO: oracle.sysman.top.agent: The log file is /users/ncgf/em_agent/agent_inst/install/logs/agentplugindeploy_2013_10_16_15_08_11.log
    INFO: oracle.sysman.top.agent: The temp file created to check R/W permissions in Oraclehome: /users/ncgf/em_agent/core/12.1.0.3.0 is /users/ncgf/em_agent/core/12.1.0.3.0/rwFile
    INFO: oracle.sysman.top.agent:Plugin command completed with status=0
    INFO: oracle.sysman.top.agent:Executing command :/users/ncgf/em_agent/agent_inst/bin/emctl listplugins agent -type all
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager Cloud Control 12c Release 3
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
    INFO: oracle.sysman.top.agent:---------------------------------------------------------------
    INFO: oracle.sysman.top.agent:---------------------------------------------------------------
    SEVERE: oracle.sysman.top.agent:ERROR: The Management Agent configuration failed. The plug-in configuration for the oracle.sysman.oh monitoring plug-in may have failed, or this plug-in may not be present in the Management Agent software. Ensure that the Management Agent software has the oracle.sysman.oh monitoring plug-in, if not then retry the operation. If the agent software has the oracle.sysman.oh monitoring plug-in, view the plug-in deployment log /users/ncgf/em_agent/agent_inst/install/logs to check if the plug-in configuration for the oracle.sysman.oh monitoring plug-in failed.
    SEVERE: oracle.sysman.top.agent:Agent configuration has failed
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration finished with status = false
    INFO: oracle.sysman.top.agent:AgentConfiguration:agent configuration finished with status = false
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant has failed its perform method
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 2 aggregate instances saved
    INFO: done waiting for Action from 15:08:10.272
    Thank you for your help AkankshaSheoranKaler. I have executed the following command based on your request. If there is any issue, please let me know. Thanks!
    "Can you run this command to make sure that the agents bits were downloaded correctly : oms home /bin /emcli verify_updates
    Share the output of the command. I am suspecting this is a know issue (Bug 17300008) but i will wait for your output.  Also if you can open an SR with oracle support to track this issue and its resolution. "
    [ncgf@nsn175-105 bin]$ ./emcli setup -url=https://nsn175-105.us.oracle.com:7803/em -u sername=SYSMAN
    Oracle Enterprise Manager 12c 3.
    Copyright (c) 1996, 2013 Oracle Corporation and/or its affiliates. All rights reserve d.
    The configuration directory "/users/ncgf" may not be local. See the "dir" option in t he help for the setup command.
    Do you want to continue using this directory? [yes/no] yes
    Enter password
    Emcli setup successful
    [ncgf@nsn175-105 bin]$ ./emcli verify_updates
    Verifying updates. Starting validation...
    Type       : Plug-in
    Description: Demo Hostsample Test Plugin
    Attributes
            Version: 1201000100
            Revision: 0
            OS Platform: Generic Platform
            Plug-in Name: Demo Host Sample Plugin
    Archives are missing from the Software Library. Unable to determine the URL for downloading the update. The update might not have come from Oracle Enterprise Manager Store.
    For each update with missing archives, emcli import_update can be used with a -force option to re-upload the archives to the Software Library.

       Hello AkankshaSheoranKaler
    We have done the following, but we aren't able to resolve this issue. Thank you for your help!
    lf
    “This  happen if the software library is not accessible, readable or unmounted (if it is in shared file system).”
    On Enterprise Manager server [nsn175-105], we did the following:
    1. we modified /etc/exports to include this line: /export *(rw,no_root_squash,sync)
    we start nfs service by executing command “service nfs start”.  
    On Management Agent server (nsn175-89), we verified that we are able to mount /export directory of EM server.
    On Management Agent server, we started firefox browser and were able to run successfully https://nsn175-105.us.oracle.com:4904/empbs/genwallet
    After making this change, we ran agent deployment again. We encountered the same error as shown above.
    “You can fix the software library or you can download the agent bits in offline mode.”
    For fixing the software library, select Setup->Provision and Patching->Offline Patching, then select Offline Patching radio button, download: https://updates.oracle.com/download/em_catalog.zip. Next upload this zip file.
    “Try downloading the bits again”
    We are not sure what agent bits are. Would you please explain this and provide procedure how we can download this?
    (Here I have attempted to fix the software library, but I am new to Enterprise Manager and not sure how to interpret this).

  • [SOLVED] configure: error: cannot run C compiled programs

    I'm trying to build lib32-libxkbcommon 0.5.0-1 from AUR with makepkg. I already tried installing pacman (setting the default makepkg.conf) and multilib-devel with no luck.
    makepkg messages:
    ==> Making package: lib32-libxkbcommon 0.5.0-1 (Mon May 11 00:17:05 EEST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found libxkbcommon-0.5.0.tar.xz
    ==> Validating source files with sha256sums...
    libxkbcommon-0.5.0.tar.xz ... Passed
    ==> Extracting sources...
    -> Extracting libxkbcommon-0.5.0.tar.xz with bsdtar
    bsdtar: Failed to set default locale
    ==> Starting prepare()...
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking whether to enable maintainer-specific portions of Makefiles... yes
    checking for style of include used by make... GNU
    checking for gcc... gcc -m32
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... configure: error: in `/mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0':
    configure: error: cannot run C compiled programs.
    If you meant to cross compile, use `--host'.
    See `config.log' for more details
    ==> ERROR: A failure occurred in build().
    Aborting...
    makepkg.conf:
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
    'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
    'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
    'rsync::/usr/bin/rsync --no-motd -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/wget
    #-- The package required by makepkg to download VCS sources
    # Format: 'protocol::package'
    VCSCLIENTS=('bzr::bzr'
    'git::git'
    'hg::mercurial'
    'svn::subversion')
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    #-- Compiler and Linker Flags
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CPPFLAGS="-D_FORTIFY_SOURCE=2"
    CFLAGS="-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4"
    CXXFLAGS="${CFLAGS}"
    LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
    #-- Make Flags: change this for DistCC/SMP systems
    MAKEFLAGS="-j5"
    #-- Debugging flags
    DEBUG_CFLAGS="-g -fvar-tracking-assignments"
    DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(!distcc color !ccache check !sign)
    # A negated environment option will do the opposite of the comments below.
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    #-- check: Run the check() function if present in the PKGBUILD
    #-- sign: Generate PGP signature file
    BUILDENV=(!distcc color !ccache check !sign)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    #-- Specify a directory for package building.
    #BUILDDIR=/tmp/makepkg
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- staticlibs: Leave static library (.a) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    #-- upx: Compress binary executable files using UPX
    #-- debug: Add debugging flags as specified in DEBUG_* variables
    OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Log files: specify a fixed directory where all log files will be placed
    #LOGDEST=/home/makepkglogs
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    #-- Specify a key to use for package signing
    #GPGKEY=""
    # COMPRESSION DEFAULTS
    COMPRESSGZ=(gzip -c -f -n)
    COMPRESSBZ2=(bzip2 -c -f)
    COMPRESSXZ=(xz -c -z -)
    COMPRESSLRZ=(lrzip -q)
    COMPRESSLZO=(lzop -q)
    COMPRESSZ=(compress -c -f)
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    config.log:
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by libxkbcommon configure 0.5.0, which was
    generated by GNU Autoconf 2.69. Invocation command line was
    $ ./configure --prefix=/usr --libdir=/usr/lib32 --disable-docs --disable-static
    ## Platform. ##
    hostname = Arch
    uname -m = x86_64
    uname -r = 4.0.1-1-ARCH
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Wed Apr 29 12:00:26 CEST 2015
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = unknown
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /usr/local/sbin
    PATH: /usr/local/bin
    PATH: /usr/bin
    PATH: /usr/lib/jvm/default/bin
    PATH: /usr/bin/site_perl
    PATH: /usr/bin/vendor_perl
    PATH: /usr/bin/core_perl
    ## Core tests. ##
    configure:2424: checking for a BSD-compatible install
    configure:2492: result: /usr/bin/install -c
    configure:2503: checking whether build environment is sane
    configure:2558: result: yes
    configure:2709: checking for a thread-safe mkdir -p
    configure:2748: result: /usr/bin/mkdir -p
    configure:2755: checking for gawk
    configure:2771: found /usr/bin/gawk
    configure:2782: result: gawk
    configure:2793: checking whether make sets $(MAKE)
    configure:2815: result: yes
    configure:2844: checking whether make supports nested variables
    configure:2861: result: yes
    configure:2987: checking whether to enable maintainer-specific portions of Makefiles
    configure:2996: result: yes
    configure:3023: checking for style of include used by make
    configure:3051: result: GNU
    configure:3122: checking for gcc
    configure:3149: result: gcc -m32
    configure:3378: checking for C compiler version
    configure:3387: gcc -m32 --version >&5
    gcc (GCC) 5.1.0
    Copyright (C) 2015 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:3398: $? = 0
    configure:3387: gcc -m32 -v >&5
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/5.1.0/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: /build/gcc-multilib/src/gcc-5-20150505/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --with-default-libstdcxx-abi=c++98
    Thread model: posix
    gcc version 5.1.0 (GCC)
    configure:3398: $? = 0
    configure:3387: gcc -m32 -V >&5
    gcc: error: unrecognized command line option '-V'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3398: $? = 1
    configure:3387: gcc -m32 -qversion >&5
    gcc: error: unrecognized command line option '-qversion'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3398: $? = 1
    configure:3418: checking whether the C compiler works
    configure:3440: gcc -m32 -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    configure:3444: $? = 0
    configure:3492: result: yes
    configure:3495: checking for C compiler default output file name
    configure:3497: result: a.out
    configure:3503: checking for suffix of executables
    configure:3510: gcc -m32 -o conftest -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    configure:3514: $? = 0
    configure:3536: result:
    configure:3558: checking whether we are cross compiling
    configure:3566: gcc -m32 -o conftest -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    In file included from /usr/include/stdio.h:27:0,
    from conftest.c:11:
    /usr/include/features.h:365:25: fatal error: sys/cdefs.h: No such file or directory
    compilation terminated.
    configure:3570: $? = 1
    configure:3577: ./conftest
    ./configure: line 3579: ./conftest: No such file or directory
    configure:3581: $? = 127
    configure:3588: error: in `/mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0':
    configure:3590: error: cannot run C compiled programs.
    If you meant to cross compile, use `--host'.
    See `config.log' for more details
    ## Cache variables. ##
    ac_cv_env_CC_set=set
    ac_cv_env_CC_value='gcc -m32'
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4'
    ac_cv_env_CPPFLAGS_set=set
    ac_cv_env_CPPFLAGS_value=-D_FORTIFY_SOURCE=2
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_DOT_set=
    ac_cv_env_DOT_value=
    ac_cv_env_DOXYGEN_set=
    ac_cv_env_DOXYGEN_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value=-Wl,-O1,--sort-common,--as-needed,-z,relro
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_PKG_CONFIG_LIBDIR_set=
    ac_cv_env_PKG_CONFIG_LIBDIR_value=
    ac_cv_env_PKG_CONFIG_PATH_set=set
    ac_cv_env_PKG_CONFIG_PATH_value=/usr/lib32/pkgconfig
    ac_cv_env_PKG_CONFIG_set=
    ac_cv_env_PKG_CONFIG_value=
    ac_cv_env_XCB_XKB_CFLAGS_set=
    ac_cv_env_XCB_XKB_CFLAGS_value=
    ac_cv_env_XCB_XKB_LIBS_set=
    ac_cv_env_XCB_XKB_LIBS_value=
    ac_cv_env_XORG_MALLOC_DEBUG_ENV_set=
    ac_cv_env_XORG_MALLOC_DEBUG_ENV_value=
    ac_cv_env_YACC_set=
    ac_cv_env_YACC_value=
    ac_cv_env_YFLAGS_set=
    ac_cv_env_YFLAGS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_path_install='/usr/bin/install -c'
    ac_cv_path_mkdir=/usr/bin/mkdir
    ac_cv_prog_AWK=gawk
    ac_cv_prog_ac_ct_CC='gcc -m32'
    ac_cv_prog_make_make_set=yes
    am_cv_make_support_nested_variables=yes
    ## Output variables. ##
    ACLOCAL='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing aclocal-1.14'
    ADMIN_MAN_DIR=''
    ADMIN_MAN_SUFFIX=''
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='$${TAR-tar}'
    AM_BACKSLASH='\'
    AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
    AM_DEFAULT_VERBOSITY='1'
    AM_V='$(V)'
    APP_MAN_DIR=''
    APP_MAN_SUFFIX=''
    AR=''
    AUTOCONF='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing autoconf'
    AUTOHEADER='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing autoheader'
    AUTOMAKE='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing automake-1.14'
    AWK='gawk'
    BASE_CFLAGS=''
    BUILD_LINUX_TESTS_FALSE=''
    BUILD_LINUX_TESTS_TRUE=''
    CC='gcc -m32'
    CCDEPMODE=''
    CFLAGS='-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4'
    CHANGELOG_CMD=''
    CPP=''
    CPPFLAGS='-D_FORTIFY_SOURCE=2'
    CWARNFLAGS=''
    CYGPATH_W='echo'
    DEFS=''
    DEPDIR='.deps'
    DLLTOOL=''
    DOT=''
    DOXYGEN=''
    DRIVER_MAN_DIR=''
    DRIVER_MAN_SUFFIX=''
    DSYMUTIL=''
    DUMPBIN=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    ENABLE_DOCS_FALSE=''
    ENABLE_DOCS_TRUE=''
    ENABLE_X11_FALSE=''
    ENABLE_X11_TRUE=''
    EXEEXT=''
    FGREP=''
    FILE_MAN_DIR=''
    FILE_MAN_SUFFIX=''
    GREP=''
    HAVE_DOT=''
    HAVE_DOT_FALSE=''
    HAVE_DOT_TRUE=''
    HAVE_DOXYGEN_FALSE=''
    HAVE_DOXYGEN_TRUE=''
    HAVE_NO_UNDEFINED_FALSE=''
    HAVE_NO_UNDEFINED_TRUE=''
    INSTALL_CMD=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    LD=''
    LDFLAGS='-Wl,-O1,--sort-common,--as-needed,-z,relro'
    LIBOBJS=''
    LIBS=''
    LIBTOOL=''
    LIB_MAN_DIR=''
    LIB_MAN_SUFFIX=''
    LIPO=''
    LN_S=''
    LTLIBOBJS=''
    MAINT=''
    MAINTAINER_MODE_FALSE='#'
    MAINTAINER_MODE_TRUE=''
    MAKEINFO='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing makeinfo'
    MANIFEST_TOOL=''
    MAN_SUBSTS=''
    MISC_MAN_DIR=''
    MISC_MAN_SUFFIX=''
    MKDIR_P='/usr/bin/mkdir -p'
    NM=''
    NMEDIT=''
    OBJDUMP=''
    OBJEXT=''
    OTOOL64=''
    OTOOL=''
    PACKAGE='libxkbcommon'
    PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=libxkbcommon'
    PACKAGE_NAME='libxkbcommon'
    PACKAGE_STRING='libxkbcommon 0.5.0'
    PACKAGE_TARNAME='libxkbcommon'
    PACKAGE_URL='http://xkbcommon.org'
    PACKAGE_VERSION='0.5.0'
    PATH_SEPARATOR=':'
    PKG_CONFIG=''
    PKG_CONFIG_LIBDIR=''
    PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
    RANLIB=''
    RT_LIBS=''
    SED=''
    SET_MAKE=''
    SHELL='/bin/sh'
    STRICT_CFLAGS=''
    STRIP=''
    VERSION='0.5.0'
    XCB_XKB_CFLAGS=''
    XCB_XKB_LIBS=''
    XKBCONFIGROOT=''
    XLOCALEDIR=''
    XORG_MALLOC_DEBUG_ENV=''
    XORG_MAN_PAGE=''
    YACC=''
    YACC_INST=''
    YFLAGS=''
    ac_ct_AR=''
    ac_ct_CC='gcc -m32'
    ac_ct_DUMPBIN=''
    am__EXEEXT_FALSE=''
    am__EXEEXT_TRUE=''
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__include='include'
    am__isrc=''
    am__leading_dot='.'
    am__nodep='_no'
    am__quote=''
    am__tar='$${TAR-tar} chof - "$$tardir"'
    am__untar='$${TAR-tar} xf -'
    bindir='${exec_prefix}/bin'
    build=''
    build_alias=''
    build_cpu=''
    build_os=''
    build_vendor=''
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host=''
    host_alias=''
    host_cpu=''
    host_os=''
    host_vendor=''
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/install-sh'
    libdir='/usr/lib32'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    mkdir_p='$(MKDIR_P)'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target_alias=''
    ## confdefs.h. ##
    /* confdefs.h */
    #define PACKAGE_NAME "libxkbcommon"
    #define PACKAGE_TARNAME "libxkbcommon"
    #define PACKAGE_VERSION "0.5.0"
    #define PACKAGE_STRING "libxkbcommon 0.5.0"
    #define PACKAGE_BUGREPORT "[url]https://bugs.freedesktop.org/enter_bug.cgi?product=libxkbcommon[/url]"
    #define PACKAGE_URL "[url]http://xkbcommon.org[/url]"
    #define PACKAGE "libxkbcommon"
    #define VERSION "0.5.0"
    configure: exit 1
    other info:
    core/pacman 4.2.1-1
    multilib/gcc-multilib 4.9.2-4 (multilib-devel) [installed]
        The GNU Compiler Collection - C and C++ frontends for multilib
    multilib/lib32-fakeroot 1.20.2-1 (multilib-devel) [installed]
        Tool for simulating superuser privileges (32-bit)
    multilib/lib32-libltdl 2.4.5-1 (multilib-devel) [installed]
        A generic library support script (32-bit)
    Last edited by tsester (2015-05-10 22:10:28)

    tsester wrote:P.S.: I recently transfered the linux system between failing disks
    In that case you should probably check that no other packages are missing files with
    pacman -Qkk 2>&1 | grep "No such file or directory"
    Any packages that report that they're missing files, you should reinstall.

  • EPM 11.1.2.3 configuration error

    Background:
    ENV:  windows 2008 R2 64
              8G RAM
              .net 4 framework
              JDK
              office 2010
    DB: oracle Database 11g R2
    EPM:  11.1.2.3 win 64
    install component: fundation services
                               essbase
    the component installation is done.
    when doing the configuration, the step Set Up shared Services and Registry Database connection associated with database instance home:
    two options here with radio button, the default is first one, both of them are gray, I can't select
    connect to a previously configured Shared services database
    perform first-time configuration of shared services database
    I need to select the second one for first configuration. but I am not sure which step is error, server configuration error? anyohter setup is error. make me confused.

    yes, I downloaded all the files from edelivery.
    The packages as follows, and unzip all the packages in one folder. Is there any missing?
    Download   EPM System Release 11.1.2.3.0 for Microsoft Windows (64-bit) Part 1 V37944-01 1.7G
    Download   EPM System Release 11.1.2.3.0 for Microsoft Windows (64-bit) Part 2 V37945-01 1.5G
    Download   EPM System Release 11.1.2.3.0 Part 3 V37933-01 1.5G
    Download   EPM System Release 11.1.2.3.0 for Microsoft Windows (64-bit) Part 4 V37946-01 2.1G
    Download   EPM System Release 11.1.2.3.0 for Microsoft Windows (64-bit) Part 5 V37947-01 2.2G
    Download   EPM System Release 11.1.2.3.0 for Microsoft Windows (64-bit) Part 6 V37948-01 524M
    Download   EPM System Release 11.1.2.3.0 for Microsoft Windows (64-bit) Part 7 V37949-01 401M
    Download   EPM System Release 11.1.2.3.0 for Microsoft Windows (64-bit) Oracle HTTP Server V37950-01 1.7G
    Download   EPM System Release 11.1.2.3.0 Client Installers for Microsoft Windows V37938-01 2.3G

  • How to set JDBC Data Sources in Oracle MapViewer for Oracle database 12c Release 1 (12.1.0.1)

    How to set JDBC Data Sources in Oracle MapViewer for Oracle database 12c Release 1 (12.1.0.1)?
    The following is my configuration in the conf\mapViewerConfig.xml:
    <map_data_source name="mvdemo12"
    jdbc_host="127.0.0.1"
    jdbc_sid="orcl12c1"
    jdbc_port="1522"
    jdbc_user="mvdemo"
    jdbc_password="7OVl2rJ+hOYxG5T3vKJQb+hW4NPgy9EN"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="true"
    editable="true"/>
    <!--  ****  -->
    But it does not work.
    After use "sqlplus mvdemo/[email protected]:1522/pdborcl", it connected to the Oracle database 12c.
    Does anyone know it?
    Thanks,

    For 11.1.1.7.1 use the syntax for jdbc_sid, i.e.
    //mypdb1.foo.com as described in the README,
    - MapViewer native (non-container) data sources can now use database service name in place of SID. To supply a db service name, you will use the same jdbc_sid attribute, but specify the service name with double slashes in front, such as follows:
      <map_data_source name="myds"
        jdbc_host="foo.com"
        jdbc_sid="//mypdb1.foo.com"
        jdbc_port="1522"
      />
    For 11.1.1.7.0 use a container_ds instead.
    i.e. instead of using
    <map_data_source name="my_12c_test"
                       jdbc_host="mydbinstance"
                       jdbc_sid="pdborcl12c"
                       jdbc_port="1522"
                       jdbc_user="mytestuser"
                       jdbc_password="m2E7T48U3LfRjKwR0YFETQcjNb4gCMLG8/X0KWjO00Q="
                       jdbc_mode="thin"
                       number_of_mappers="6"
                       allow_jdbc_theme_based_foi="false"
                       editable="false"
       />
    use
      <map_data_source name="my_12c_test"
                       container_ds="jdbc/db12c"
                       number_of_mappers="6"
                       allow_jdbc_theme_based_foi="false"
                       editable="false"
       />
    In my case the Glassfish 3.1.2.2 JDBC connection pool definition was
    Property
    url  jdbc:oracle:thin:@mydbinstance:1522/pdborcl12c.rest_of.service.name
    Uncheck the Wrap JDBC Objects option in Advanced panel, i.e. the Edit JDBC Connection Pool Advanced properties page.
    Add a JDBC resource for that newly created pool
    Use that in mapviewerconfig.xml as above

  • In system log shows Error in technical configuration Error during the ret

    Hi,
    In sm21 it shows <Error in technical configuration Error during the retieval of logon data stored in>.
    Task...... Process                     User...... Terminal Session TCode Program        Cl Problem cl         Package
    30808      Dialog work process No. 009 SAPSYS                    1       TASK_VITAL_RUN K  SAP Web AS Problem SOAP_FT_TOOLS
    In wp trace shows below with the matched time:
    A Thu May 26 13:08:03 2011
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: end RX_GET_MESSAGE
    H
    H Thu May 26 13:08:05 2011
    H  *** ERROR => HTTP> IcfGetDTFromTaskHandler: ThEppGetRootContextIdAsXuuid failed with (98)! [icfutil.c   1660]
    [icftrace.c   597]
    H  *** ERROR => HTTP> IcfGetDTFromTaskHandler: ThEppGetRootContextIdAsXuuid failed with (98)! [icfutil.c   1660]
    [icftrace.c   597]
    H
    H Thu May 26 13:08:09 2011
    H  *** ERROR => HTTP> IcfGetDTFromTaskHandler: ThEppGetRootContextIdAsXuuid failed with (98)! [icfutil.c   1660]
    [icftrace.c   597]
    H
    H Thu May 26 13:08:10 2011
    H  *** ERROR => HTTP> IcfGetDTFromTaskHandler: ThEppGetRootContextIdAsXuuid failed with (98)! [icfutil.c   1660]
    [icftrace.c   597]
    H
    H Thu May 26 13:08:12 2011
    H  *** ERROR => HTTP> IcfGetDTFromTaskHandler: ThEppGetRootContextIdAsXuuid failed with (98)! [icfutil.c   1660]
    [icftrace.c   597]
    H
    H Thu May 26 13:08:13 2011
    H  *** ERROR => HTTP> IcfGetDTFromTaskHandler: ThEppGetRootContextIdAsXuuid failed with (98)! [icfutil.c   1660]
    [icftrace.c   597]
    H
    H Thu May 26 13:08:15 2011
    H  *** ERROR => HTTP> IcfGetDTFromTaskHandler: ThEppGetRootContextIdAsXuuid failed with (98)! [icfutil.c   1660]
    [icftrace.c   597]
    Kind of error when retrieve the logon data.
    Kernel 711  PI system
    SP level 04
    What possibily casued this? No further information I can have.
    Thanks,
    Emma

    Hello
    Please implement the latest kernel for your release. See note #19466. The error will not occur with the latest kernel patch.
    Regards
    Mark

  • Configuration error 5 on After Effects CC

    Hi, since two weeks I am struggling with the Configuration Error 5 at startup of After Effects CC. I tried to uninstall, reinstall, used CC Cleaner Tool, tried to install from a different user and so on. Nothing helps. I need advice.
    I am on an iMac with i7 and Nvidia 780M with 4 GB VRam. OSX 10.9.3

    Hi Jeff, here comes the PDApp.log:
    05/27/14 11:48:48:078 | [INFO] |  | ASU | OPM | OPM |  |  | 2385 | Build Version - 8.0.0.19
    05/27/14 11:48:48:078 | [INFO] |  | ASU | OPM | OPM |  |  | 2385 | Logging Level verbosity Set  to 4
    05/27/14 11:48:48:141 | [INFO] |  | ASU | OPM | OPM |  |  | 2385 | Schema version and schema compatibility version are same or greater than current
    05/27/14 11:48:48:143 | [INFO] |  | ASU | OPM | OPM |  |  | 2385 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 11:50:15:062 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Build Version - 8.0.0.72
    05/27/14 11:50:15:062 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Logging Level verbosity Set  to 4
    05/27/14 11:50:15:062 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Application initialization start, Looking for command line arguments
    05/27/14 11:50:15:062 | [INFO] |  | ASU | PDApp | PDApp.CommandLineParser |  |  | 8395 | Parsing the command line provided. Number of command line arguments is 6
    05/27/14 11:50:15:063 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Detecting Applet Database file...
    05/27/14 11:50:15:063 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | AppletManager initialize...
    05/27/14 11:50:15:063 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Fetching Applet registeration information...
    05/27/14 11:50:15:063 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Applet database path - /Library/Application Support/Adobe/OOBE/PDApp/
    05/27/14 11:50:15:063 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | PIM library path - /Library/Application Support/Adobe/OOBE/PDApp/core/AdobePIM.dylib
    05/27/14 11:50:15:063 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Loading PIM library...
    05/27/14 11:50:15:261 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Fetching PIM API's...
    05/27/14 11:50:15:273 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | Build Version - 8.0.0.72
    05/27/14 11:50:15:273 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | Logging Level verbosity Set  to 4
    05/27/14 11:50:15:273 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | CREATE PIM Instance ...
    05/27/14 11:50:15:285 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | trying to createOrUpdatePIMDbSchema.
    05/27/14 11:50:15:287 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | Current db schema version on machine 1.
    05/27/14 11:50:15:287 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | Current db schema version to install 1.
    05/27/14 11:50:15:287 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | PIM DB Schema is up to date. Current schema version is 1.
    05/27/14 11:50:15:287 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | PIM Database is Up To Date.
    05/27/14 11:50:15:287 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Getting applet data from Applet database
    05/27/14 11:50:15:289 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | All installed pakages version string (pim_getCurrentPackagesVersion) is CCM:8.0.0.23|D6:8.0.0.72|DECore:8.0.0.72|DWA:3.0.94.0|IPC:8.0.0.22|LWA:3.0.64.0|P6:7.0.0. 478|P7:8.0.0.73|PDApp:8.0.0.72|UWA:8.0.0.22
    05/27/14 11:50:15:289 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | PIMSqlite closeDB status 0
    05/27/14 11:50:15:289 | [INFO] |  | ASU | PIM | PIM |  |  | 8395 | FREE PIM Instance ...
    05/27/14 11:50:15:289 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Registering Applets...
    05/27/14 11:50:15:291 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Loading Applet Switcher library: /Library/Application Support/Adobe/OOBE/PDApp/core/switcher/LWA_UI.dylib
    05/27/14 11:50:15:294 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Build Version - 8.0.0.72
    05/27/14 11:50:15:294 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Logging Level verbosity Set  to 4
    05/27/14 11:50:15:294 | [INFO] |  | ASU | ProvSwitcher | Common.CommandLineParser |  |  | 8395 | Parsing the command line provided. Number of command line arguments is 6
    05/27/14 11:50:15:295 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Unable to fetch licensing LEID from amtLib xml file. Fallback to Driver LEID
    05/27/14 11:50:15:295 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Considering following LEID for applet version switching : AfterEffects-CS7-Mac-GM
    05/27/14 11:50:15:296 | [WARN] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Unable to fetch AppSerialNumber from amtLib xml file. Unable to check for ProductInfo mapping!
    05/27/14 11:50:15:296 | [WARN] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Dynamic XML Not Found
    05/27/14 11:50:15:296 | [ERROR] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Recieved empty serial number, returning false
    05/27/14 11:50:15:296 | [ERROR] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Product not running under subscription
    05/27/14 11:50:15:296 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Detected identifier in LEID: CS7
    05/27/14 11:50:15:296 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Detected identifier in LEID: CS7
    05/27/14 11:50:15:296 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Detected identifier in LEID: CS7
    05/27/14 11:50:15:296 | [INFO] |  | ASU | ProvSwitcher | ProvSwitcher |  |  | 8395 | Not updating the applet version for appletID: LWA_UI appletVersion: 3.0
    05/27/14 11:50:15:296 | [WARN] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Unable to get the applet switching info... Response is: 8
    05/27/14 11:50:15:296 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Non Deployment workflow identified...
    05/27/14 11:50:15:296 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | No Non Deployment workflow PDApp running so new instance is allowed to run...
    05/27/14 11:50:15:308 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Initializing native WindowManager
    05/27/14 11:50:15:308 | [INFO] |  | ASU | PDApp | PDApp.MessageQuequeManager |  |  | 8395 | Message Queue Manager initialized...
    05/27/14 11:50:15:308 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 8395 | AsyncMsgProcessor initialized...
    05/27/14 11:50:15:308 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 8395 | AsyncMsgProcessor Message Queue initialized...
    05/27/14 11:50:15:308 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | ExternalGateway initialized...
    05/27/14 11:50:15:308 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | NativeCommandHandler initialized...
    05/27/14 11:50:15:308 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | NativePlatformHandler initialized...
    05/27/14 11:50:15:330 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Registering Notification to listen messages from another instance
    05/27/14 11:50:15:364 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Creating APEWindow...
    05/27/14 11:50:15:364 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Creating window instance
    05/27/14 11:50:15:364 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Checking for appletID and appletVersion given in CommandLineOptions
    05/27/14 11:50:15:371 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Creating APE stage instance
    05/27/14 11:50:16:222 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Loading main SWF with Path and args - /Library/Application Support/Adobe/OOBE/PDApp
    05/27/14 11:50:16:493 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Assigning window ID - 1 to created window
    05/27/14 11:50:16:751 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | MessageHandler initialized...
    05/27/14 11:50:16:759 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 8395 | Logging Level verbosity Set to  INFO
    05/27/14 11:50:16:759 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 8395 | Processing the startup Command
    05/27/14 11:50:16:761 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Starting Applet registeration...
    05/27/14 11:50:16:767 | [INFO] |  | ASU | PDApp | PDAPP.MainDisplayMediator |  |  | 8395 | Looking up for the Exact versioned applet for ID :LWA_UI
    05/27/14 11:50:16:769 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading Applet: LWA_UI Version = 3.0
    05/27/14 11:50:16:791 | [INFO] |  | ASU | PDApp | PDApp.ZStringLoader |  |  | 8395 | PDAPP SWF - locale set to - de_DE
    05/27/14 11:50:16:792 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 0 out of 1776587
    05/27/14 11:50:16:835 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 65536 out of 1776587
    05/27/14 11:50:16:836 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 131072 out of 1776587
    05/27/14 11:50:16:837 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 196608 out of 1776587
    05/27/14 11:50:16:837 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 262144 out of 1776587
    05/27/14 11:50:16:838 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 327680 out of 1776587
    05/27/14 11:50:16:840 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 393216 out of 1776587
    05/27/14 11:50:16:841 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 458752 out of 1776587
    05/27/14 11:50:16:842 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 524288 out of 1776587
    05/27/14 11:50:16:844 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 589824 out of 1776587
    05/27/14 11:50:16:867 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 655360 out of 1776587
    05/27/14 11:50:16:868 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 720896 out of 1776587
    05/27/14 11:50:16:869 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 786432 out of 1776587
    05/27/14 11:50:16:870 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 851968 out of 1776587
    05/27/14 11:50:16:871 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 917504 out of 1776587
    05/27/14 11:50:16:872 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 983040 out of 1776587
    05/27/14 11:50:16:873 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1048576 out of 1776587
    05/27/14 11:50:16:875 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1114112 out of 1776587
    05/27/14 11:50:16:876 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1179648 out of 1776587
    05/27/14 11:50:16:877 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1245184 out of 1776587
    05/27/14 11:50:16:878 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1310720 out of 1776587
    05/27/14 11:50:16:879 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1376256 out of 1776587
    05/27/14 11:50:16:899 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1441792 out of 1776587
    05/27/14 11:50:16:900 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1507328 out of 1776587
    05/27/14 11:50:16:901 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1572864 out of 1776587
    05/27/14 11:50:16:903 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1638400 out of 1776587
    05/27/14 11:50:16:904 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1703936 out of 1776587
    05/27/14 11:50:16:905 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1769472 out of 1776587
    05/27/14 11:50:16:905 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 8395 | Loading progress 1776587 out of 1776587
    05/27/14 11:50:17:191 | [INFO] |  | ASU | PDApp | P7Flex.AppStartupCommand |  |  | 8395 | Processing application startup command...
    05/27/14 11:50:17:193 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | Recieved Applet Loading Completion
    05/27/14 11:50:17:194 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 8395 | Trying to load ZString for preferred locale - de_DE
    05/27/14 11:50:17:195 | [INFO] |  | ASU | PDApp | P7Flex.AppStartupCommand |  |  | 8395 | Dpi_X: 72, Dpi_Y: 72 and so DPIType is 1
    05/27/14 11:50:17:225 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 8395 | Locale set to - de_DE
    05/27/14 11:50:17:246 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Loading Applet - LWA_Native for WindowID - 1
    05/27/14 11:50:17:248 | [INFO] |  | ASU | LWANative | LWANative |  |  | 8395 | Build Version - 8.0.0.73
    05/27/14 11:50:17:248 | [INFO] |  | ASU | LWANative | LWANative |  |  | 8395 | Logging Level verbosity Set  to 4
    05/27/14 11:50:17:249 | [INFO] |  | ASU | PDApp | P7Flex.AMTLibProxy |  |  | 8395 | Licensing AMT path does not exist, override path fallback to App AMT path.
    05/27/14 11:50:17:252 | [INFO] |  | ASU | PDApp | ProvCommon.ZStringLoader |  |  | 8395 | Applet locale set to - de_DE
    05/27/14 11:50:17:253 | [INFO] |  | ASU | PDApp | ProvCommon.CheckForStageEnvironmentCommand |  |  | 8395 | Checking stage verses production environment.
    05/27/14 11:50:17:256 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_openSession
    05/27/14 11:50:17:256 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | pwa_openSession Session key : 08F2F730-3B32-4480-B867-A12EB1031E17
    05/27/14 11:50:17:259 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Build Version - 8.0.0.19
    05/27/14 11:50:17:259 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Logging Level verbosity Set  to 4
    05/27/14 11:50:17:260 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Schema version and schema compatibility version are same or greater than current
    05/27/14 11:50:17:262 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 11:50:17:262 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:50:17:262 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | No Record found for the input fields in opm_getValueForKey
    05/27/14 11:50:17:262 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Released OPM refrence successfully in opm_freeLibRef
    05/27/14 11:50:17:263 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_openSession
    05/27/14 11:50:17:263 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Done opening PWASession, session key - 08F2F730-3B32-4480-B867-A12EB1031E17
    05/27/14 11:50:17:264 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | getEndpointsByname...
    05/27/14 11:50:17:266 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_getEndPointsByName
    05/27/14 11:50:17:266 | [INFO] |  | ASU | LWANative | OPM |  |  | 8395 | CS6 Creative Cloud Membership : This product version is for GM
    05/27/14 11:50:17:269 | [ERROR] |  | ASU | LWANative | OPM |  |  | 8395 | received empty url from dispatchlib
    05/27/14 11:50:17:269 | [INFO] |  | ASU | LWANative | OPM |  |  | 8395 | Fetched URL- for LEID-GM
    05/27/14 11:50:17:269 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_getEndPointsByName
    05/27/14 11:50:17:269 | [INFO] |  | ASU | PDApp | ProvCommon.CheckForStageEnvironmentCommand |  |  | 8395 | Production environemnt detected from dispatchtable
    05/27/14 11:50:17:270 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Closing PWASession: 08F2F730-3B32-4480-B867-A12EB1031E17 Commit: false
    05/27/14 11:50:17:272 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_closeSession
    05/27/14 11:50:17:274 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_closeSession
    05/27/14 11:50:17:276 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_openSession
    05/27/14 11:50:17:276 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | pwa_openSession Session key : 92DFEC51-153F-44BF-8479-76FC07A2C63E
    05/27/14 11:50:17:277 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Build Version - 8.0.0.19
    05/27/14 11:50:17:277 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Logging Level verbosity Set  to 4
    05/27/14 11:50:17:277 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Schema version and schema compatibility version are same or greater than current
    05/27/14 11:50:17:279 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 11:50:17:279 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:50:17:279 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | No Record found for the input fields in opm_getValueForKey
    05/27/14 11:50:17:279 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Released OPM refrence successfully in opm_freeLibRef
    05/27/14 11:50:17:280 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_openSession
    05/27/14 11:50:17:283 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_setAppXMLData
    05/27/14 11:50:17:284 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_setAppXMLData
    05/27/14 11:50:17:285 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Done opening PWASession, session key - 92DFEC51-153F-44BF-8479-76FC07A2C63E
    05/27/14 11:50:17:285 | [INFO] |  | ASU | PDApp | P7Flex.ProvisioningNativeApplet |  |  | 8395 | Performing checkWorkflowType...
    05/27/14 11:50:17:287 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_checkWFType
    05/27/14 11:50:17:325 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Got null language in PVPL. Adding ALL
    05/27/14 11:50:17:326 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Got null language in PVPL. Adding ALL
    05/27/14 11:50:17:326 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Got null language in PVPL. Adding ALL
    05/27/14 11:50:17:326 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Got null language in PVPL. Adding ALL
    05/27/14 11:50:17:326 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_checkWFType
    05/27/14 11:50:17:328 | [INFO] |  | ASU | PDApp | P7Flex.AppStartupCommand |  |  | 8395 | Screen reader seems to be inactive. Setting enableEEP to false
    05/27/14 11:50:17:330 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | getEndpointsByname...
    05/27/14 11:50:17:332 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_getEndPointsByName
    05/27/14 11:50:17:332 | [INFO] |  | ASU | LWANative | OPM |  |  | 8395 | CS6 Creative Cloud Membership : This product version is for GM
    05/27/14 11:50:17:333 | [INFO] |  | ASU | LWANative | OPM |  |  | 8395 | Fetched URL-https://na1r.services.adobe.com/account/amfgateway2 for LEID-AfterEffects-CS7-Mac-GM
    05/27/14 11:50:17:333 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_getEndPointsByName
    05/27/14 11:50:17:333 | [INFO] |  | ASU | PDApp | P7Flex.AppStartupCommand |  |  | 8395 | Analytics EndPoint : https://na1r.services.adobe.com/account/amfgateway2
    05/27/14 11:50:17:334 | [INFO] |  | ASU | PDApp | P7Flex.AMTLibProxy |  |  | 8395 | Licensing AMT path does not exist, override path fallback to App AMT path.
    05/27/14 11:50:17:334 | [INFO] |  | ASU | PDApp | P7Flex.AppStartupCommand |  |  | 8395 | Done processing of StartupCommand
    05/27/14 11:50:17:335 | [INFO] |  | ASU | PDApp | P7Flex.StartWorkflowCommand |  |  | 8395 | Start processing of StartWorkflowCommand, workflow detected: EULA
    05/27/14 11:50:17:336 | [INFO] |  | ASU | PDApp | Provisioning.ScreenNavigationCommand |  |  | 8395 | Showing screen : SCREEN_EULA
    05/27/14 11:50:17:337 | [INFO] |  | ASU | PDApp | AAMShared.DynamicViewMediator |  |  | 8395 | Showing screen with screenID : SCREEN_EULA
    05/27/14 11:50:17:340 | [INFO] |  | ASU | PDApp | P7Flex.ProvisioningNativeApplet |  |  | 8395 | Fetching EULA language list...
    05/27/14 11:50:17:341 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_getEULALocaleList
    05/27/14 11:50:17:346 | [INFO] |  | ASU | PDApp | P7Flex.ProvisioningNativeApplet |  |  | 8395 | Done fetching EULA languge list.
    05/27/14 11:50:17:349 | [INFO] |  | ASU | PDApp | P7Flex.ProvisioningNativeApplet |  |  | 8395 | Fetching EULA for locale - de_DE
    05/27/14 11:50:17:350 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_getEULA
    05/27/14 11:50:17:612 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_openSession
    05/27/14 11:50:17:612 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | pwa_openSession Session key : C90C09DF-6FC2-4696-B98F-77F8453B7161
    05/27/14 11:50:17:613 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Build Version - 8.0.0.19
    05/27/14 11:50:17:613 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Logging Level verbosity Set  to 4
    05/27/14 11:50:17:613 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Schema version and schema compatibility version are same or greater than current
    05/27/14 11:50:17:614 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 11:50:17:614 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:50:17:614 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | No Record found for the input fields in opm_getValueForKey
    05/27/14 11:50:17:615 | [INFO] |  | ASU | OPM | OPM |  |  | 8395 | Released OPM refrence successfully in opm_freeLibRef
    05/27/14 11:50:17:615 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_openSession
    05/27/14 11:50:17:618 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_setAppXMLData
    05/27/14 11:50:17:618 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_setAppXMLData
    05/27/14 11:50:17:619 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Done opening PWASession, session key - C90C09DF-6FC2-4696-B98F-77F8453B7161
    05/27/14 11:50:17:621 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_getEULAVerXml
    05/27/14 11:50:17:621 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_getEULAVerXml
    05/27/14 11:50:17:625 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_getProductLine
    05/27/14 11:50:17:756 | [INFO] |  | ASU | PDApp | P7Flex.CheckProxySettingsCommand |  |  | 8395 | Checking for proxy settings...
    05/27/14 11:50:17:842 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenEulaMediator |  |  | 8395 | onRegister
    05/27/14 11:50:17:843 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBaseMediator |  |  | 8395 | onRegister
    05/27/14 11:50:17:843 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.ContentFooterMediator4B9167D1-9B91-00F4-0D73 -3D166AF3490F |  |  | 8395 | onRegister
    05/27/14 11:50:18:213 | [INFO] |  | ASU | PDApp | P7Flex.CheckProxySettingsCommand |  |  | 8395 | Authentication proxy Check Status : 200
    05/27/14 11:50:22:019 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenEulaMediator |  |  | 8395 | handleNotification : ComponentNotification.SHAREDFOOTERPRIMARYCLICK
    05/27/14 11:50:22:020 | [INFO] |  | ASU | PDApp | P7Flex.SetEULAOnlineCommand |  |  | 8395 | Setting EULA Online
    05/27/14 11:50:22:021 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Setting EULA Online for locale - de_DE
    05/27/14 11:50:22:021 | [WARN] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Invalid accessToken argument while performing setEULAOnline
    05/27/14 11:50:22:023 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_setEULAOnline
    05/27/14 11:50:22:023 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_setEULAOnline
    05/27/14 11:50:22:024 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Setting License Agreement for locale - de_DE
    05/27/14 11:50:22:026 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_setLicenseAgreementInformation
    05/27/14 11:50:22:027 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_setLicenseAgreementInformation
    05/27/14 11:50:22:028 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Closing PWASession: C90C09DF-6FC2-4696-B98F-77F8453B7161 Commit: true
    05/27/14 11:50:22:029 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_closeSession
    05/27/14 11:50:22:032 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_closeSession
    05/27/14 11:50:22:033 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 8395 | Closing PWASession: 92DFEC51-153F-44BF-8479-76FC07A2C63E Commit: false
    05/27/14 11:50:22:034 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_closeSession
    05/27/14 11:50:22:036 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | End : pwa_closeSession
    05/27/14 11:50:22:036 | [INFO] |  | ASU | PDApp | P7Flex.QuitCommand |  |  | 8395 | Quitting workflow with launchApp: true
    05/27/14 11:50:22:037 | [INFO] |  | ASU | PDApp | P7Flex.ProvisioningNativeApplet |  |  | 8395 | Performing LaunchApplication for path - /Applications/Adobe After Effects CC/Adobe After Effects CC.app/Contents/MacOS/After Effects
    05/27/14 11:50:22:039 | [INFO] |  | ASU | LWANative | P7Native |  |  | 8395 | Start : pwa_launchApplication
    05/27/14 11:50:22:052 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 8395 | Un-loading Applet - LWA_Native for window ID - 1
    05/27/14 11:50:22:052 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | Callng the finalize function of the applet ID - LWA_Native
    05/27/14 11:50:22:053 | [INFO] |  | ASU | PDApp | PDApp.HostMessageHandler |  |  | 8395 | Recieved force window close message
    05/27/14 11:50:22:053 | [INFO] |  | ASU | PDApp | PDApp.HostMessageHandler |  |  | 8395 | Sending message to native
    05/27/14 11:50:22:054 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Destroying window with ID - 1
    05/27/14 11:50:22:057 | [WARN] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | GetAPEWindowIDString failed, Unable to find PlayerRef!
    05/27/14 11:50:22:181 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Last window destroyed quiting as event. Quiting application as an event (async)...
    05/27/14 11:50:22:344 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | Destroying PDApp main window with ID - 1
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 8395 | DestroyAllAPEWindow failed, APE Window count is zero while destroying all APEWindow's
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Terminating MessageQueueManager
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 8395 | Terminating AsyncMsgProcessor Message Queue
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 8395 | Terminating AsyncMsgProcessor
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp.MessageQuequeManager |  |  | 8395 | Message Queue Manager destructed
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Terminating WindowManager
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Terminating NativeCommandHandler
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | NativeCommandHandler destructed
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Terminating NativePlatformHandler
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | NativePlatformHandler destructed
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Terminating ExternalGateway
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 8395 | ExternalGateway destructed
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Terminating ETSWrapper
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Terminating APE
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Releasing all locks acquired
    05/27/14 11:50:22:347 | [INFO] |  | ASU | PDApp | PDApp |  |  | 8395 | Quiting Application
    05/27/14 11:54:11:265 | [INFO] |  | ASU | OPM | P7Native |  |  | 3981 | Performing fetch default user for clientID...
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3981 | Performing fetchDefaultUserInfoForClientId...
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | returning size of value as:33 in opm_getValueForKey
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | Successfully retreived value from opm domain:IMSLib subdomain:CSServiceMap key:CreativeCloud_v1_5 in opm_getValueForKey
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | returning size of value as:1859 in opm_getValueForKey
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:b106cd6657b4b404fe347bff154d9681 in opm_getValueForKey
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3981 | Performing releaseData...
    05/27/14 11:54:11:266 | [INFO] |  | ASU | OPM | P7Native |  |  | 3981 | Default user found for client_id: CreativeCloud_v1_5
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | P7Native |  |  | 3981 | Performing fetch default user for clientID...
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3981 | Performing fetchDefaultUserInfoForClientId...
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | returning size of value as:33 in opm_getValueForKey
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | Successfully retreived value from opm domain:IMSLib subdomain:CSServiceMap key:CreativeCloud_v1_5 in opm_getValueForKey
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | returning size of value as:1859 in opm_getValueForKey
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 11:59:43:534 | [INFO] |  | ASU | OPM | OPM |  |  | 3981 | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:b106cd6657b4b404fe347bff154d9681 in opm_getValueForKey
    05/27/14 11:59:43:535 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3981 | Performing releaseData...
    05/27/14 11:59:43:535 | [INFO] |  | ASU | OPM | P7Native |  |  | 3981 | Default user found for client_id: CreativeCloud_v1_5
    05/27/14 12:04:16:156 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Build Version - 2.5.0.367
    05/27/14 12:04:16:200 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Logging Level verbosity Set  to 4
    05/27/14 12:04:16:201 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Creating PIM instance for path: /Applications/Utilities/Adobe Application Manager/
    05/27/14 12:04:16:201 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | trying to createOrUpdatePIMDbSchema.
    05/27/14 12:04:16:202 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Current db schema version on machine 1.
    05/27/14 12:04:16:202 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Current db schema version to install 2.
    05/27/14 12:04:16:202 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | SUCCESS Created Tables.
    05/27/14 12:04:16:203 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | PIM Database is Up To Date.
    05/27/14 12:04:16:204 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | PIMSqlite closeDB status 0
    05/27/14 12:04:16:204 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | sqlite(pim.db) at path /Applications/Utilities/Adobe Application Manager is already closed
    05/27/14 12:04:16:204 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | FREE PIM Instance ...
    05/27/14 12:04:16:229 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Build Version - 2.5.0.367
    05/27/14 12:04:16:230 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Logging Level verbosity Set  to 4
    05/27/14 12:04:16:230 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Creating PIM instance for path: /Applications/Utilities/Adobe Creative Cloud
    05/27/14 12:04:16:230 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | trying to createOrUpdatePIMDbSchema.
    05/27/14 12:04:16:230 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Current db schema version on machine 2.
    05/27/14 12:04:16:230 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | Current db schema version to install 2.
    05/27/14 12:04:16:230 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | PIM DB Schema is up to date. Current schema version is 2.
    05/27/14 12:04:16:230 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | PIM Database is Up To Date.
    05/27/14 12:04:16:234 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | PIMSqlite closeDB status 0
    05/27/14 12:04:16:234 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | sqlite(pim.db) at path /Applications/Utilities/Adobe Creative Cloud is already closed
    05/27/14 12:04:16:234 | [INFO] |  | ASU | PIM | PIM |  |  | 3842 | FREE PIM Instance ...
    05/27/14 12:04:18:459 | [INFO] |  | ASU | LWANative | LWANative |  |  | 3842 | Build Version - 8.0.0.73
    05/27/14 12:04:18:459 | [INFO] |  | ASU | LWANative | LWANative |  |  | 3842 | Logging Level verbosity Set  to 4
    05/27/14 12:04:19:480 | [INFO] |  | ASU | LWANative | P7Native |  |  | 3842 | Start : pwa_openSession
    05/27/14 12:04:19:480 | [INFO] |  | ASU | LWANative | P7Native |  |  | 3842 | pwa_openSession Session key : BA5F857C-FDA4-4A40-921F-320212DD450E
    05/27/14 12:04:19:671 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Build Version - 8.0.0.19
    05/27/14 12:04:19:671 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Logging Level verbosity Set  to 4
    05/27/14 12:04:19:672 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Schema version and schema compatibility version are same or greater than current
    05/27/14 12:04:19:753 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 12:04:19:753 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:19:753 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | No Record found for the input fields in opm_getValueForKey
    05/27/14 12:04:19:754 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Released OPM refrence successfully in opm_freeLibRef
    05/27/14 12:04:19:764 | [INFO] |  | ASU | LWANative | P7Native |  |  | 3842 | End : pwa_openSession
    05/27/14 12:04:19:767 | [INFO] |  | ASU | LWANative | P7Native |  |  | 3842 | Start : pwa_getDeviceID
    05/27/14 12:04:19:768 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Build Version - 8.0.0.73
    05/27/14 12:04:19:768 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Logging Level verbosity Set  to 4
    05/27/14 12:04:19:769 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Schema version and schema compatibility version are same or greater than current
    05/27/14 12:04:19:828 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 12:04:19:829 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:19:829 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | returning size of value as:65 in opm_getValueForKey
    05/27/14 12:04:19:829 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:19:829 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully retreived value from opm domain:IMSLib subdomain:Default key:deviceID in opm_getValueForKey
    05/27/14 12:04:19:829 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Device ID result XML: <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <result>
        <deviceId>6559E9889354F5CB3AA998C2D81F8FECA6EBCD9EC3B46709EA16A4DFCF56215D</deviceId>
        <deviceName>eckarts-imac-3.fritz.box</deviceName>
    </result>
    05/27/14 12:04:19:829 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | End : pwa_getDeviceID
    05/27/14 12:04:19:829 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Released OPM refrence successfully in opm_freeLibRef
    05/27/14 12:04:19:832 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Start : pwa_closeSession
    05/27/14 12:04:20:046 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | End : pwa_closeSession
    05/27/14 12:04:20:047 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Build Version - 8.0.0.19
    05/27/14 12:04:20:047 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Logging Level verbosity Set  to 4
    05/27/14 12:04:20:049 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Schema version and schema compatibility version are same or greater than current
    05/27/14 12:04:20:246 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 12:04:20:246 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:246 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | No Record found for the input fields in opm_getValueForKey
    05/27/14 12:04:20:246 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Released OPM refrence successfully in opm_freeLibRef
    05/27/14 12:04:20:253 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Performing openIMSLibSession...
    05/27/14 12:04:20:253 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | pwa_openIMSLibSession Session key : FDD3AF42-6AFB-4A5F-81AA-04126E57AD85
    05/27/14 12:04:20:265 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 3842 | Build Version - 8.0.0.9
    05/27/14 12:04:20:265 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 3842 | Logging Level verbosity Set  to 4
    05/27/14 12:04:20:265 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 3842 | Creating IMSLib instance with product Version ...
    05/27/14 12:04:20:265 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Build Version - 8.0.0.9
    05/27/14 12:04:20:265 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Logging Level verbosity Set  to 4
    05/27/14 12:04:20:267 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Schema version and schema compatibility version are same or greater than current
    05/27/14 12:04:20:504 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 12:04:20:504 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 3842 | OPMWrapper allocation succeeded
    05/27/14 12:04:20:504 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | This product version is for GM
    05/27/14 12:04:20:505 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | URL retreived from dispatchlib https://ims-prod06.adobelogin.com
    05/27/14 12:04:20:505 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Created IMSLib instance with LEID:GM and endpoint:https://ims-prod06.adobelogin.com
    05/27/14 12:04:20:505 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:505 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | No Record found for the input fields in opm_getValueForKey
    05/27/14 12:04:20:505 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 3842 | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    05/27/14 12:04:20:506 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 3842 | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    05/27/14 12:04:20:506 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Failed get proxy credentials from local store while creating IMSLib Ex instance ...
    05/27/14 12:04:20:506 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Performing IMS_registerClientToGroup..
    05/27/14 12:04:20:563 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Performing opm_getRecords...
    05/27/14 12:04:20:563 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:563 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:563 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | returning size of value as:61 in opm_getValueForKey
    05/27/14 12:04:20:563 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:563 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully retreived value from opm domain:IMSLib subdomain:BuddyGroup key:0 in opm_getValueForKey
    05/27/14 12:04:20:563 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Successfully registered AAM Client to Buddy group in openSession.
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Performing registeration of client to group
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Performing IMS_registerClientToGroup..
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Performing opm_getRecords...
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | returning size of value as:61 in opm_getValueForKey
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully retreived value from opm domain:IMSLib subdomain:BuddyGroup key:0 in opm_getValueForKey
    05/27/14 12:04:20:566 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Registered Client to group successfully!
    05/27/14 12:04:20:568 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Performing fetch default user for clientID...
    05/27/14 12:04:20:568 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Performing fetchDefaultUserInfoForClientId...
    05/27/14 12:04:20:568 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:568 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | returning size of value as:33 in opm_getValueForKey
    05/27/14 12:04:20:569 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:569 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully retreived value from opm domain:IMSLib subdomain:CSServiceMap key:CreativeCloud_v1_5 in opm_getValueForKey
    05/27/14 12:04:20:569 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:569 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | returning size of value as:1859 in opm_getValueForKey
    05/27/14 12:04:20:569 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:569 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:b106cd6657b4b404fe347bff154d9681 in opm_getValueForKey
    05/27/14 12:04:20:569 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Performing releaseData...
    05/27/14 12:04:20:569 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Default user found for client_id: CreativeCloud_v1_5
    05/27/14 12:04:20:572 | [INFO] |  | ASU | OPM | P7Native |  |  | 3842 | Performing fetch Access token for user...
    05/27/14 12:04:20:573 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Performing IMS_fetchAccessToken2 ...
    05/27/14 12:04:20:573 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Failed to retreive locale from the input xml while invoking IMS_fetchAccessToken2
    05/27/14 12:04:20:573 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Performing fetch accessToken...
    05/27/14 12:04:20:573 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Invalid argument inLocale while invoking IMS_fetchAccessToken
    05/27/14 12:04:20:573 | [INFO] |  | ASU | OPM | IMSLib |  |  | 3842 | Using environment:https://ims-prod06.adobelogin.com
    05/27/14 12:04:20:573 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:573 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | returning size of value as:1859 in opm_getValueForKey
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:b106cd6657b4b404fe347bff154d9681 in opm_getValueForKey
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | returning size of value as:65 in opm_getValueForKey
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 3842 | Successfully retreived value from opm domain:IMSLib subdomain:Default key:deviceID in opm_getValueForKey
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | No Record found for the input fields in opm_getValueForKey
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 4292 | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 4292 | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 4292 | Failed to get proxyCredentials from local store in setProxyCredentialsForHTTPRequest
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 4292 | Authproxy credentials set successfully in SendHTTPRequest in IMSLibHelper
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | No Record found for the input fields in opm_getValueForKey
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 4292 | Failed in getting value for key in OPMGetValueForKey domain:IMSLib subDomain:https://ims-prod06.adobelogin.com key:ConnectionInitiatedTime
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | No Record found for the input fields in opm_getValueForKey
    05/27/14 12:04:20:574 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 4292 | Failed in getting value for key in OPMGetValueForKey domain:IMSLib subDomain:https://ims-prod06.adobelogin.com key:LastAttemptTime
    05/27/14 12:04:21:507 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:507 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully deleted records in opm.db for domain:IMSLib subDomain:https://ims-prod06.adobelogin.com key:FailureAttempts opm_deleteRecordForFields
    05/27/14 12:04:21:507 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 4292 | Successfully deleted records from opm for domain:IMSLib subDomain:https://ims-prod06.adobelogin.com key:FailureAttempts
    05/27/14 12:04:21:512 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:512 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully deleted records in opm.db for domain:IMSLib subDomain:https://ims-prod06.adobelogin.com key:LastAttemptTime opm_deleteRecordForFields
    05/27/14 12:04:21:512 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | 4292 | Successfully deleted records from opm for domain:IMSLib subDomain:https://ims-prod06.adobelogin.com key:LastAttemptTime
    05/27/14 12:04:21:512 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 4292 |  HTTPConnector response successful in SendHTTPRequest in IMSLibHelper
    05/27/14 12:04:21:512 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | 4292 | user has not selected 'Remember Me', proxy data is not saved in local store
    05/27/14 12:04:21:513 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:513 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | returning size of value as:1859 in opm_getValueForKey
    05/27/14 12:04:21:513 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:513 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:b106cd6657b4b404fe347bff154d9681 in opm_getValueForKey
    05/27/14 12:04:21:537 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:537 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully updated opm.db for fields domain:IMSLib subdomain:SignInUsers key:b106cd6657b4b404fe347bff154d9681 in opm_setValueForKey
    05/27/14 12:04:21:537 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Performing opm_getRecords...
    05/27/14 12:04:21:537 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:537 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:537 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | returning size of value as:61 in opm_getValueForKey
    05/27/14 12:04:21:537 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:537 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully retreived value from opm domain:IMSLib subdomain:BuddyGroup key:0 in opm_getValueForKey
    05/27/14 12:04:21:560 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:560 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully updated opm.db for fields domain:IMSLib subdomain:CSServiceMap key:426eb9f9-9989-45dd-8b7c-1bcdc957c8e5 in opm_setValueForKey
    05/27/14 12:04:21:583 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:583 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully updated opm.db for fields domain:IMSLib subdomain:CSServiceMap key:CreativeCloud_v1_5 in opm_setValueForKey
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully updated opm.db for fields domain:IMSLib subdomain:Default key:deviceID in opm_setValueForKey
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | IMSLib |  |  | 4292 | Invoking client callback function with response and status : 0
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | P7Native |  |  | 4292 | Proceeding with fetchAccessToken callback...
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | P7Native |  |  | 4292 | Start : updateLastLoggedInUser
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | IMSLib |  |  | 4292 | Performing fetchDefaultUserInfoForClientId...
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | returning size of value as:33 in opm_getValueForKey
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:601 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully retreived value from opm domain:IMSLib subdomain:CSServiceMap key:426eb9f9-9989-45dd-8b7c-1bcdc957c8e5 in opm_getValueForKey
    05/27/14 12:04:21:602 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:602 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | returning size of value as:1859 in opm_getValueForKey
    05/27/14 12:04:21:602 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:602 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:b106cd6657b4b404fe347bff154d9681 in opm_getValueForKey
    05/27/14 12:04:21:604 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Build Version - 8.0.0.19
    05/27/14 12:04:21:604 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Logging Level verbosity Set  to 4
    05/27/14 12:04:21:604 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Schema version and schema compatibility version are same or greater than current
    05/27/14 12:04:21:625 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 12:04:21:625 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:625 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | No Record found for the input fields in opm_getValueForKey
    05/27/14 12:04:21:625 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Released OPM refrence successfully in opm_freeLibRef
    05/27/14 12:04:21:666 | [INFO] |  | ASU | OPM | P7Native |  |  | 4292 | End : updateLastLoggedInUser
    05/27/14 12:04:21:684 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Build Version - 8.0.0.19
    05/27/14 12:04:21:684 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Logging Level verbosity Set  to 4
    05/27/14 12:04:21:684 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Schema version and schema compatibility version are same or greater than current
    05/27/14 12:04:21:724 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 12:04:21:724 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | _opm_handle_OPDReturnedStatus called with opdStatus as:0
    05/27/14 12:04:21:724 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | No Record found for the input fields in opm_getValueForKey
    05/27/14 12:04:21:724 | [INFO] |  | ASU | OPM | OPM |  |  | 4292 | Released OPM refrence successfully in opm_freeLibRef
    05/27/14 12:04:23:521 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | Build Version - 2.5.0.367
    05/27/14 12:04:23:521 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | Logging Level verbosity Set  to 4
    05/27/14 12:04:23:542 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | trying to createOrUpdatePIMDbSchema.
    05/27/14 12:04:23:542 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | Current db schema version on machine 1.
    05/27/14 12:04:23:542 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | Current db schema version to install 2.
    05/27/14 12:04:23:542 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | SUCCESS Created Tables.
    05/27/14 12:04:23:542 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | PIM Database is Up To Date.
    05/27/14 12:04:23:542 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | PIMSqlite closeDB status 0
    05/27/14 12:04:23:543 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | trying to createOrUpdatePIMDbSchema.
    05/27/14 12:04:23:543 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | Current db schema version on machine 2.
    05/27/14 12:04:23:543 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | Current db schema version to install 2.
    05/27/14 12:04:23:543 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | PIM DB Schema is up to date. Current schema version is 2.
    05/27/14 12:04:23:543 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | PIM Database is Up To Date.
    05/27/14 12:04:23:543 | [INFO] |  | ASU | PIM | PIM |  |  | 4292 | PIMSqlite closeDB status 0
    05/27/14 12:04:27:659 | [INFO] |  | ASU | OPM | OPM |  |  | 4163 | Build Version - 8.0.0.19
    05/27/14 12:04:27:659 | [INFO] |  | ASU | OPM | OPM |  |  | 4163 | Logging Level verbosity Set  to 4
    05/27/14 12:04:27:678 | [INFO] |  | ASU | OPM | OPM |  |  | 4163 | Schema version and schema compatibility version are same or greater than current
    05/27/14 12:04:27:680 | [INFO] |  | ASU | OPM | OPM |  |  | 4163 | Successfully opened opm session, db location:/Users/eckartarns/Library/Application Support/Adobe/OOBE/opm.db in opm_createLibRef
    05/27/14 12:07:23:908 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 6252 | Build Version - 7.0.0.145
    05/27/14 12:07:23:908 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 6252 | Logging Level verbosity Set  to 4
    05/27/14 12:07:23:908 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | 6252 | Creating IMSLib instance ...
    05/27/14 12:07:23:908 | [INFO] |  | ASU | OPM | OPM |  |  | 6252 | Build Version - 7.0.0.145
    05/27/14 12:07:23:908 | [INFO] |  | ASU | OPM | OPM |  |  | 6252 | Logging Level verbosity Set  to 4
    05/27/14 12:07:23:920 | [INFO] |  | ASU | OPM | OPM |  |  | 6252 | Schema version and schema compatibility version are same or greater than current

  • Configuration Error - Error 6  - Flash Builder 4 Plug In

    Upon starting eclipse (after installing the fb4 plug in) I get a 'Configuration Error' error 6. Anyone have any ideas as to what this is and how to get over it. At the moment I cant even trial the software which I am evaluating for our company. I am not a flex / java dev so please assume an astounding level of ignorance! I have reinstalled several times and also tried with various different versions of Eclipse including the bundled option (which I do not particularly want to be forced to use anyway).... all of this to no avail. Version inf follows:-
    OSX 10.6.1
    Eclipse = Helios, latest release
    Thanks in advance.

    Hi,
    Are you using a Carbon version of Helios? There aren't many of those posted (most are Cocoa), but I think the SDK distro is still offered in Carbon flavor.
    If that alone doesn't help, try looking for your error in these tables:
    http://kb2.adobe.com/cps/834/cpsid_83481.html
    Though FB4 Plug-in is not exactly a CS5 app, it uses CS5 install/licensing libraries, so the same solutions would probably apply.
    -Chris

Maybe you are looking for

  • Unable to log in the VPN

    Hi, I'm running the latest OS X and Server app. I want to run a VPN, I tried to configure it, but I'm not able to log in it. the error message is: authentication failed. I enabled three network users to log in the VPN and I'm one of those three users

  • How to remove credit card details from Windows azure account?

    Hi friends, I Just want to remove my credit card details from my windows azure account. Is there any possiblity or else i just want to delete my account. Plz help me. Thanks dvishnu

  • Prevent overwriting of variable during second loop...

    Hello together, I have an issue with getting the first value of a variable - I want to store the value of an output variable in the first sequence of my for loop. How can I prevent that the variable is not being overwritten during the next loops. Wou

  • Sending a URL link instead of workitem

    Hi Friends Could anyone explain me how to send a URL link to the inbox of a user instead of an workitem? -Vinod

  • Working with delegations ---- basics help

    Hi All, Can anyone please let me know how exactly to work with delegations..... Any code or explanations will be really helpful...... eg. I need to know how exactly to delegate an approval process... what tags to be used... and where it needs to be p