JNI_CreateJavaVM fails in Multithreaded app.

Hello,
when i call JNI_CreateJavaVM in a multithreaded application, I ll get the error:
"ERROR: Could not find the pthread library (2). Are you running a supported Linux
distribution?"
So, given the following program, everyhing works okay:
----code---
#include "jni.h"
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void jnicall()
JNIEnv *env;
JavaVM *jvm;
jint res;
jclass cls;
jmethodID mid;
jstring jstr;
jclass stringClass;
jobjectArray args;
JavaVMInitArgs vm_args;
JavaVMOption options[1];
options[0].optionString = "-Djava.class.path=.";
vm_args.version = 0x00010002;
vm_args.options = options;
vm_args.nOptions = 1;
vm_args.ignoreUnrecognized = JNI_TRUE;
res = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
if (res < 0) {
fprintf(stderr, "Can't create Java VM\n");
exit(1);
cls = env->FindClass("Hello");
if (cls == NULL) {
goto destroy;
mid = env->GetStaticMethodID(cls, "main", "([Ljava/lang/String;)V");
if (mid == NULL) {
goto destroy;
jstr = env->NewStringUTF(" from C!");
if (jstr == NULL) {
goto destroy;
stringClass = env->FindClass("java/lang/String");
args = env->NewObjectArray(1, stringClass, jstr);
if (args == NULL) {
goto destroy;
env->CallStaticVoidMethod(cls, mid, args);
destroy:
if (env->ExceptionOccurred()) {
env->ExceptionDescribe();
jvm->DestroyJavaVM();
int main()
jnicall();
---code---
But when I replace main with something like
---code---
int main()
pthread_t thread;
if (0 != pthread_create(&thread, NULL, (void*(*)(void*))jnicall, NULL))
fprintf(stderr, "Cannot create thread");
exit(1);
---code---
Really strange is that is does not matter, how i use pthread functions: even if
i call the jnicall function directly from main but start a different thread using
pthread_create, i get this method too:
---code---
int main()
pthread_t thread;
jnicall();
if (0 != pthread_create(&thread, NULL, (void*(*)(void*))some_other_thread_without_jni,
NULL))
fprintf(stderr, "Cannot create thread");
exit(1);
---code---
My system is a Suse Linux Enterprise Server 8.0 (wth United Linux 1.0) (kernel
2.4.19, glibc is 2.2.5); the Jrockit stuff is JRockit 8.1 SP 2
Any ideas?
TIA,
Johannes

Try checking that the environment variable LD_ASSUME_KERNEL=2.2.5 is not
set.
From the release notes at:
http://edocs.bea.com/wljrockit/docs81/relnotes/relnotes.html#1041981
Best Regards,
Josefin Hallberg
BEA WebLogic JRockit
Customer Centric Engineering
"Johannes Hampel" <[email protected]> wrote in message
news:[email protected]...
>
Hello,
when i call JNI_CreateJavaVM in a multithreaded application, I ll getthe error:
"ERROR: Could not find the pthread library (2). Are you running asupported Linux
distribution?"
So, given the following program, everyhing works okay:
----code---
#include "jni.h"
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void jnicall()
JNIEnv *env;
JavaVM *jvm;
jint res;
jclass cls;
jmethodID mid;
jstring jstr;
jclass stringClass;
jobjectArray args;
JavaVMInitArgs vm_args;
JavaVMOption options[1];
options[0].optionString = "-Djava.class.path=.";
vm_args.version = 0x00010002;
vm_args.options = options;
vm_args.nOptions = 1;
vm_args.ignoreUnrecognized = JNI_TRUE;
res = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
if (res < 0) {
fprintf(stderr, "Can't create Java VM\n");
exit(1);
cls = env->FindClass("Hello");
if (cls == NULL) {
goto destroy;
mid = env->GetStaticMethodID(cls, "main", "([Ljava/lang/String;)V");
if (mid == NULL) {
goto destroy;
jstr = env->NewStringUTF(" from C!");
if (jstr == NULL) {
goto destroy;
stringClass = env->FindClass("java/lang/String");
args = env->NewObjectArray(1, stringClass, jstr);
if (args == NULL) {
goto destroy;
env->CallStaticVoidMethod(cls, mid, args);
destroy:
if (env->ExceptionOccurred()) {
env->ExceptionDescribe();
jvm->DestroyJavaVM();
int main()
jnicall();
---code---
But when I replace main with something like
---code---
int main()
pthread_t thread;
if (0 != pthread_create(&thread, NULL, (void*(*)(void*))jnicall,NULL))
fprintf(stderr, "Cannot create thread");
exit(1);
---code---
Really strange is that is does not matter, how i use pthread functions:even if
i call the jnicall function directly from main but start a differentthread using
pthread_create, i get this method too:
---code---
int main()
pthread_t thread;
jnicall();
if (0 != pthread_create(&thread, NULL,(void*(*)(void*))some_other_thread_without_jni,
NULL))
fprintf(stderr, "Cannot create thread");
exit(1);
---code---
My system is a Suse Linux Enterprise Server 8.0 (wth United Linux 1.0)(kernel
2.4.19, glibc is 2.2.5); the Jrockit stuff is JRockit 8.1 SP 2
Any ideas?
TIA,
Johannes

Similar Messages

  • Multithread App !

    Hi Friends,
    I have a multithreaded app that refers stock price and suggest end user upon the availability, as of now it was running as a Swing app. we are thinking of porting it on web. So how can a end user access this Stock price screener using webservices ?
    Here are my challenges :
    1. I cannot deploy it in J2ee Webserver as they are managed environment.
    2. We have not yet migrated to jdk1.6 ( WE WILL DO THAT NEXT YR DEPENDING HOW THE PRODUCT IS PERFORMING)
    So how can this be acheived in a strict(ideal) j2ee environment.
    My boss is strict about J2ee standard, I donot know how to implement this in budget n time ??
    I am really scratching my head about the same for an hour n so I have not find a decent answer on web also. Is it that violting the basic rule of j2ee is the only way out. ("don't sponge a thread in a managed environment" ). I know there are software that are running thread with in like log4j but they have special grant to run not my application.
    thks.s.das

    EJP wrote:
    I would have failed you in the interview for the garrulous verbosity of writing Boolean.TRUE.equals, which can be completely omitted, and Boolean.FALSE.equals, which can be replaced by !.Students learn what in the books, and lot of java books I see using the same style:
    http://books.google.com/books?id=DXYZZVlWOAkC&pg=PA286&dq=Boolean.TRUE.equals%28&hl=en&sa=X&ei=i31sT8jdJonh0QH01-jyBg&ved=0CDIQ6AEwAA#v=onepage&q=Boolean.TRUE.equals%28&f=false
    http://books.google.com/books?id=ppNBCdxxW5AC&pg=PA439&dq=Boolean.TRUE.equals%28&hl=en&sa=X&ei=i31sT8jdJonh0QH01-jyBg&ved=0CD8Q6AEwAg#v=onepage&q=Boolean.TRUE.equals%28&f=false
    Here is more serious mistakes, looks like the book author doesn't understand the difference between Boolean and boolean, Integer and int:
    http://books.google.com/books?id=FPxif81mgYoC&pg=PA219&dq=Boolean.TRUE.equals%28&hl=en&sa=X&ei=i31sT8jdJonh0QH01-jyBg&ved=0CDgQ6AEwAQ#v=onepage&q=Boolean.TRUE.equals%28&f=false
    When you code wrong, you make something wrong for your application, When you teach wrong, you make lot of wrongs .... :D

  • I fail to buy apps in itunes store b'cause i don't have master card or visa accounts''

    I fail to buy apps in itunes store b'cause i don't have master card or visa accounts'

    http://support.apple.com/kb/HT5552
    Accepted payment types
    You need an Apple ID to buy items in the iTunes Store, Mac App Store, App Store and iBookstore. When you create an Apple ID for any of these stores, you will need to provide a payment method for purchases. The available payment methods vary by country, but typically you can use:
    Credit cards
    iTunes Cards
    iTunes Store Gift Certificates
    Content Codes
    Store credit (including Allowance Account balances)
    ClickandBuy
    PayPal
    In countries where the iTunes Store only sells apps, the accepted payment methods are Visa, MasterCard, and American Express. Other payment types such as gift cards, store credit, monthly allowances, ClickandBuy, and PayPal are not accepted. Depending on your App Store country, prices may be listed in your local currency, US Dollars, or Euros.

  • SSRS Reports " Failed to unload app domain DefaultDomain.The following exception occurred: Error while unloading appdomain. (Exception from HRESULT: 0x80131015). error

    Hi,
    I'm using SQL Server 2008R2 Reporting Services.
    When i click on Web Services URL link it throws the below error.
    "Report Server has encountered a SharePoint error. (rsSharePointError) Get Online Help
    The system cannot find the path specified. (Exception from HRESULT: 0x80070003)"
    and in the Event viewer i can see the below error for reporting services.
    "Failed to unload app domain DefaultDomain.  The following exception occurred: Error while unloading appdomain. (Exception from HRESULT: 0x80131015)."
    Any help would be greatly appreciated.

    Related thread has a solution:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/e97b0c14-c428-4b83-b5a2-dc58eb6be258/ssrs-2008-failed-to-unload-app-domain-defaultdomain-exception-from-hresult-0x80131015?forum=sqlreportingservices
    Kalman Toth Database & OLAP Architect
    Free T-SQL Scripts
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Failed to install apps on my ipod touch

    failed to install apps on my ipod touch...lps help me thankz

    Are the apps compatible with your model iPod and its iOS?
    Do you have Restrictions set that prohibit installing those apps? Settings>General>Restrictions
    Can yo download/purchase them directly to your iPod?
    Have yo successfully synced apps from that iTunes library before?

  • Why itunes failed to install apps on iphone after update to ios 6.0.1? And how to restore my purshased apps from itunes?

    Why itunes failed to install apps on iphone after update to ios 6.0.1? And how to restore my purshased apps from itunes?

    See:
    Frequently asked questions about viewing and syncing video with iTunes and iPod
    Why can't I transfer videos to my iPod?
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod

  • Transactions in Multithreaded app

    Is it safe to use the same java.sql.Connection instance all over multithreaded app? Is transaction session associated with a thread? Or one Connection keeps just one transaction session for all threads?
    Any help's appreciated.

    Is it safe to use the same java.sql.Connection
    instance all over multithreaded app?Yes, providing your access/uses is thread safe, i.e. syncronised.
    Is transaction
    session associated with a thread?No a connection.
    Or one Connection
    keeps just one transaction session for all threads?Yes.
    A transactions should be autonomous, if all threads use the same transaction, it would be pointless using transactions in the first place.
    Any help's appreciated.Checkout these link, your should
    http://developer.java.sun.com/developer/onlineTraining/Programming/JDCBook/bmp.html
    http://developer.java.sun.com/developer/onlineTraining/Programming/JDCBook/jdbc.html
    http://developer.java.sun.com/developer/technicalArticles/xml/metadata/

  • Failed to install App Store on my Mac Book 5.

    I followed the instructions to download app store on my mac. I went to Software update, and updated my system, then I restarted my macbook without seeing any dialog to install App Store. After restarted my mac book, I was looking for App Store. I found it in downloads, and I deleted it and emptied my trash can by accident. So I failed to install App Store and try to update my system in order to download the app store again on my Mack Book; however, it says "Your software is up to date."
    SO how can I get the App Store after updating the software, but failed to install? I want App Store, and I am Snow Leopard. It's been trying nuts for trying to figure out how to get the App Store.

    Failed to install App Store wrote:
    I followed the instructions to download app store on my mac.
    What instructions do you refer to & where did you find them? As has been mentioned by several other people, the Mac App Store is a part of the OS 10.6.6 update. Apple does not offer it as a separate download. Even if it were available as a separate download, it will not work with any version of Leopard (OS 10.5) or any version of Snow Leopard less than 10.6.6.
    Click on the "About this Mac" item in the Apple menu. In the window that pops up, right under the words "Mac OS X" you will see the version of the OS you are running. If it says you are running 10.5.8, then you are running Leopard, not Snow Leopard, & Software Update will only offer you updates for that OS version. To upgrade the OS from Leopard to Snow Leopard you must buy a retail copy of Snow Leopard & install it. Once you do, Software Update will offer you updates for that OS version, including the 10.6.6 one that includes the Mac App Store.

  • IO performance of multithreaded app

    In a multithreaded app there are N threads. These threads produce some data and write to disk. The data is written on disk in following two ways:
    1. Each thread is writing data to a different file.(All files are on same disk)
    2. All threads write data to a single file.
    After running some tests the results show that 2nd case takes 20% more time than 1st.
    I want to know the actual reason the this, whether there is some parallel io happening, or some other reason.
    Vinit.

    Hi Vinit,
    Assuming that you have set thread councurrency level to a proper value, a simple reason is that writing to a file involves locking the corresponding inode. So if all your threads are writing to the same file , there is a chance that the LWPs corresponding to your user threads sleep inside the kernel for the lock on the inode . This will reduce the performance.
    BTW , you didn't give your machine configuration ..
    Thanks,
    Prajeesh

  • I bought apps from apps store,my money was taken and den I downloaded the pass buh 2 didn't work .it told me iTunes failed to install app,the apps were the dark knight rises(batman) and asphalt 7 I need help plss am using iPad 2

    bought apps from apps store,my money was taken and den I downloaded the apps buh 2 didn't work .it told me iTunes failed to install app,the apps are the dark knight rises(batman) and asphalt 7 I need help plss am using iPad 2

    Although iTune terms says that all sales are final. You can try explaining to get a refund.
    http://www.apple.com/support/itunes/contact/

  • What is the impact of Failed registration of app type 2 (Signals) from plugin unity Error

    Hi,
    I'm getting this warning message in my VMware (Ms Windows Server 2003) hosting a website using IIS.
    My users started to experience application slowness after the issue occured. So i wonder what is the impact of this error message? Does it really impact the server performance?
    Event Type: Warning
    Event Source: VMware Tools
    Event Category: None
    Event ID: 1000
    Date:  12/15/2013
    Time:  12:32:41 PM
    User:  xxxxxx
    Computer: xxxxxx
    Description:
    [ warning] [vmusr:vmtoolsd] Failed registration of app type 2 (Signals) from plugin unity.
    Thanks

    I had the same thought
    wilnesse dericer

  • Failed to sync apps

    I can not sync my ipod when I try to notice appears Your computer does not have permission, then give the authorization but still the same.

    exact message "(name of apps) failed to sync.
    it only fails on some apps.
    music syncs just fine.
    ive had this problem before and it was by one of this forums.
    it was a certain file that needs to be deleted in windows and that resolved the issue.
    i just forgot the file name.

  • Oracle Grid root.sh is failing onFirstNode configuration failed at /u01/app/grid/11.2.0.4/crs/instal due to ora.oc4j start timeout

    We have a 4 node Rac, oracle root.sh is failing on the First Node. when I looked at the logs I found the oc4j is timeout to start on Node1 whereas it is able to start on all other nodes with in 2 mins. this is causing to fail root.sh. Can you please help me what is the issue.
    Oracle Rac Node 1 oc4j failed on Node1 due to timeout able to start on other node.
     oracle:]/u01/app/grid/11.2.0.4/bin > ./crsctl start res ora.oc4j -n node1
    CRS-2672: Attempting to start 'ora.oc4j' node1
    CRS-2674: Start of 'ora.oc4j' on 'node1' failed
    CRS-2679: Attempting to clean 'ora.oc4j' on node1
    CRS-2681: Clean of 'ora.oc4j' on 'node1' succeeded
    CRS-4000: Command Start failed, or completed with errors.  [oracle:]/u01/app/grid/11.2.0.4/bin > ./crsctl start res ora.oc4j -n node2
    CRS-2672: Attempting to start 'ora.oc4j' on 'node2'
    CRS-2676: Start of 'ora.oc4j' on 'node2' succeeded

    Please follow Metalink Note 1050908.1.
    This might help
    Cheers
    FJFranken

  • Autoconfig fail EBS R12 Apps-Node with EBS 11gR2 RAC

    Platform: HPUX IA 64-11.31
    DB: 11.2.0.3
    Nodes: 2
    We were following metalink note 823587.1 and have successfully converted single-instance database of EBS R12 to 20node RAC. When we are trying to do steps of Section-3.8 of the note the autoconfig is running in error. See the below error message from the "adconfig.log" file:
    cat /etc/hosts
    =========
    127.0.0.1 localhost.localdomain localhost
    #Public IP
    172.16.101.23 ts1db1.bukhatir.ae ts1db1
    172.16.101.24 ts1db2.bukhatir.ae ts1db2
    #Vip
    172.16.101.44 ts1_vip1.bukhatir.ae ts1_vip1
    172.16.101.45 ts1_vip2.bukhatir.ae ts1_vip2
    #inerconnect
    10.0.0.1 ts1_prv1.bukhatir.ae ts1_prv1
    10.0.0.2 ts1_prv2.bukhatir.ae ts1_prv2
    172.16.101.20 ts1apps1.bukhatir.ae ts1apps1
    172.16.101.21 ts1apps2.bukhatir.ae ts1apps2
    =========
    Generate Tns Names
    Logfile: /locapps1/apps/apps/TEST_ts1apps1/admin/log/04101202/NetServiceHandler.log
    Classpath : /ts1apps/apps/apps_st/comn/java/lib/appsborg2.zip:/ts1apps/apps/apps_st/comn/java/classes
    Updating s_tnsmode to 'generateTNS'
    UpdateContext exited with status: 0
    AC-50480: Internal error occurred: java.lang.Exception: Error while generating listener.ora.
    Error generating tnsnames.ora from the database, temporary tnsnames.ora will be generated using templates
    Instantiating Tools tnsnames.ora
    Tools tnsnames.ora instantiated
    Web tnsnames.ora instantiated
    adgentns.pl exiting with status 2
    ERRORCODE = 2 ERRORCODE_END
    xecuting script in InstantiateFile:
    /locapps1/apps/apps/TEST_ts1apps1/admin/install/adgendbc.sh
    script returned:
    adgendbc.sh started at Tue Apr 10 12:03:56 UAE 2012
    SQL*Plus: Release 10.1.0.5.0 - Production on Tue Apr 10 12:03:57 2012
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter value for 1: Enter value for 2: Enter value for 3: Connected.
    [ APPS_DATABASE_ID ]
    Application Id : 0
    Profile Value : TEST
    Level Name: SITE
    INFO : Updated/created profile option value.
    PL/SQL procedure successfully completed.
    Commit complete.
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    ==============================
    * * * * DBC PARAMETERS * * * *
    ==============================
    fnd_jdbc_buffer_min=1
    fnd_jdbc_buffer_max=5
    fnd_jdbc_buffer_decay_interval=300
    fnd_jdbc_buffer_decay_size=5
    fnd_jdbc_usable_check=false
    fnd_jdbc_context_check=true
    fnd_jdbc_plsql_reset=false
    ====================================
    * * * * NO CUSTOM PARAMETERS * * * *
    ====================================
    Unique constraint error (00001) is OK if key already exists
    Creating the DBC file...
    java.sql.SQLException: The Network Adapter could not establish the connection
    Database connection to jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))(ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip2.bukhatir.ae)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=TEST))) failed
    ADD call failed with exit code 1
    Updating Server Security Authentication
    java.sql.SQLException: Invalid number format for port number
    Database connection to jdbc:oracle:thin:@host_name:port_number:database failed
    Updating Server Security Authentication failed with exit code 1
    Restoring DBC file from backed up location /locapps1/apps/apps/TEST_ts1apps1/appltmp/TXK/TEST_Tue_Apr_10_12_03_2012.dbc
    adgendbc.sh ended at Tue Apr 10 12:04:01 UAE 2012
    adgendbc.sh exiting with status 1
    ERRORCODE = 1 ERRORCODE_END
    See the network configuration files from the environment:
    ===========
    Dbhome
    ===========
    /orahome/oradb/app/product/11.2.0.3/network/admin/TEST1_ts1db1/listener.ora
    LISTENER_TEST =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ts1_vip1.bukhatir.ae)(PORT = 1521)(IP = FIRST)))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ts1db1)(PORT = 1521)(IP = FIRST)))
    SID_LIST_LISTENER_TEST =
    (SID_LIST =
    (SID_DESC = (ORACLE_HOME = /orahome/oradb/app/product/11.2.0.3)(SID_NAME = TEST1))
    STARTUP_WAIT_TIME_LISTENER_TEST = 0
    CONNECT_TIMEOUT_LISTENER_TEST = 10
    TRACE_LEVEL_LISTENER_TEST = OFF
    LOG_DIRECTORY_LISTENER_TEST = /orahome/oradb/app/product/11.2.0.3/network/admin
    LOG_FILE_LISTENER_TEST = TEST1
    TRACE_DIRECTORY_LISTENER_TEST = /orahome/oradb/app/product/11.2.0.3/network/admin
    TRACE_FILE_LISTENER_TEST = TEST1
    ADMIN_RESTRICTIONS_LISTENER_TEST = ON
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER_TEST = OFF
    IFILE=/orahome/oradb/app/product/11.2.0.3/network/admin/TEST1_ts1db1/listener_ifile.ora
    /orahome/oradb/app/product/11.2.0.3/network/admin/TEST1_ts1db1/tnsnames.ora
    TEST=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=TEST)
    (INSTANCE_NAME=TEST1)
    TEST1=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=TEST)
    (INSTANCE_NAME=TEST1)
    TEST1_FO=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=TEST)
    (INSTANCE_NAME=TEST1)
    TEST_FO=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=TEST)
    (INSTANCE_NAME=TEST1)
    TEST1_LOCAL=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))
    TEST_BALANCE=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (LOAD_BALANCE=YES)
    (FAILOVER=YES)
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))
    (CONNECT_DATA=
    (SERVICE_NAME=TEST)
    TEST_REMOTE=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))
    #TEST_REMOTE=
    # (DESCRIPTION=
    # (ADDRESS_LIST=
    # (ADDRESS=(PROTOCOL=tcp)(HOST=tsscan.bukhatir.ae)(PORT=1521))
    TEST1_local=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip1.bukhatir.ae)(PORT=1521))
    extproc_connection_data =
    (DESCRIPTION=
    (ADDRESS_LIST =
    (ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROCTEST1))
    (CONNECT_DATA=
    (SID=PLSExtProc)
    (PRESENTATION = RO)
    IFILE=/orahome/oradb/app/product/11.2.0.3/network/admin/TEST1_ts1db1/TEST1_ts1db1_ifile.ora
    ===========
    Gridhome
    ===========
    /gridhome/oragrid/11.2.0/grid/network/admin/listener.ora
    LISTENER=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER)))) # line added by Agent
    LISTENER_SCAN3=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN3)))) # line added by Agent
    LISTENER_SCAN2=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN2)))) # line added by Agent
    LISTENER_SCAN1=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN1)))) # line added by Agent
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER_SCAN1=ON # line added by Agent
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER_SCAN2=ON # line added by Agent
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER_SCAN3=ON # line added by Agent
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER=ON # line added by Agent
    /gridhome/oragrid/11.2.0/grid/network/admin/endpoints_listener.ora
    LISTENER_TS1DB1=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=ts1_vip1)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=172.16.101.23)(PORT=1521)(IP=FIRST)))) # line
    added by Agent
    ===========
    Listener EBShome
    ===========
    cd $TNS_ADMIN
    /locapps1/apps/apps/TEST_ts1apps1/ora/10.1.2/network/admin/listener.ora
    APPS_TEST =
    (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= TCP)(Host= ts1apps1)(Port= 1629))
    SID_LIST_APPS_TEST =
    (SID_LIST =
    ( SID_DESC = ( SID_NAME = FNDSM )
    ( ORACLE_HOME = /ts1apps/apps/tech_st/10.1.2 )
    ( PROGRAM = /ts1apps/apps/apps_st/appl/fnd/12.0.0/bin/FNDSM )
    ( envs='MYAPPSORA=/ts1apps/apps/apps_st/appl/APPSTEST_ts1apps1.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/locapps1/apps/apps/TEST_ts1apps1/admin/scripts/gsmst
    art.sh' )
    ( SID_DESC = ( SID_NAME = FNDFS )
    ( ORACLE_HOME = /ts1apps/apps/tech_st/10.1.2 )
    ( PROGRAM = /ts1apps/apps/apps_st/appl/fnd/12.0.0/bin/FNDFS )
    ( envs='EPC_DISABLED=TRUE,NLS_LANG=American_America.AL32UTF8,LD_LIBRARY_PATH=/ts1apps/apps/tech_st/10.1.2/lib32:/ts1apps/apps/tech_st/10.1.2/lib:/ts1apps/apps/tech_s
    t/10.1.2/jdk/jre/lib/IA64N:/ts1apps/apps/tech_st/10.1.2/jdk/jre/lib/IA64N/server:/ts1apps/apps/apps_st/appl/sht/12.0.0/lib,SHLIB_PATH=/ts1apps/apps/tech_st/10.1.2/lib32:/ts1apps/apps
    /tech_st/10.1.2/lib:/ts1apps/apps/tech_st/10.1.2/jdk/jre/lib/IA64N:/ts1apps/apps/tech_st/10.1.2/jdk/jre/lib/IA64N/server:/ts1apps/apps/apps_st/appl/sht/12.0.0/lib,LIBPATH=/ts1apps/ap
    ps/tech_st/10.1.2/lib32:/ts1apps/apps/tech_st/10.1.2/lib:/ts1apps/apps/tech_st/10.1.2/jdk/jre/lib/IA64N:/ts1apps/apps/tech_st/10.1.2/jdk/jre/lib/IA64N/server:/ts1apps/apps/apps_st/ap
    pl/sht/12.0.0/lib,APPLFSTT=TEST_BALANCE;TEST;TEST_FO,APPLFSWD=/locapps1/apps/apps/TEST_ts1apps1/appl/admin;/locapps1/apps/apps/TEST_ts1apps1/appltmp;/ts1apps/apps/apps_st/comn/webapp
    s/oacore/html/oam/nonUix/launchMode/restricted' )
    STARTUP_WAIT_TIME_APPS_TEST = 0
    CONNECT_TIMEOUT_APPS_TEST = 10
    TRACE_LEVEL_APPS_TEST = OFF
    LOG_DIRECTORY_APPS_TEST = /locapps1/apps/apps/TEST_ts1apps1/logs/ora/10.1.2/network
    LOG_FILE_APPS_TEST = APPS_TEST
    TRACE_DIRECTORY_APPS_TEST = /locapps1/apps/apps/TEST_ts1apps1/logs/ora/10.1.2/network
    TRACE_FILE_APPS_TEST = APPS_TEST
    ADMIN_RESTRICTIONS_APPS_TEST = ON
    IFILE = /locapps1/apps/apps/TEST_ts1apps1/ora/10.1.2/network/admin/TEST_ts1apps1_listener_ifile.ora
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_APPS_TEST = OFF
    /locapps1/apps/apps/TEST_ts1apps1/ora/10.1.2/network/admin/tnsnames.ora
    TEST = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1db1)(PORT=1521))
    (CONNECT_DATA=(SID=TEST1))
    # Net8 definitions for FNDFS and FNDSM on the HTTP server node - ts1apps1
    FNDFS_ts1apps1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDFS_ts1apps1.bukhatir.ae = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    # For when the profile FS_SVC_PREFIX is set these entries will be used
    FNDFS_TEST1_ts1apps1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDFS_TEST1_ts1apps1.bukhatir.ae = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDSM_ts1apps1_TEST1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDSM))
    FNDSM_ts1apps1.bukhatir.ae_TEST1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDSM))
    # Net8 definitions for FNDFS and FNDSM on the forms server node - ts1apps1
    FNDFS_ts1apps1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDFS_ts1apps1.bukhatir.ae = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    # For when the profile FS_SVC_PREFIX is set these entries will be used
    FNDFS_TEST1_ts1apps1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDFS_TEST1_ts1apps1.bukhatir.ae = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDSM_ts1apps1_TEST1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDSM))
    FNDSM_ts1apps1.bukhatir.ae_TEST1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDSM))
    # Net8 definitions for FNDFS and FNDSM on the administration server node - ts1apps1
    FNDFS_ts1apps1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDFS_ts1apps1.bukhatir.ae = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    # For when the profile FS_SVC_PREFIX is set these entries will be used
    FNDFS_TEST1_ts1apps1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDFS_TEST1_ts1apps1.bukhatir.ae = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDSM_ts1apps1_TEST1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDSM))
    FNDSM_ts1apps1.bukhatir.ae_TEST1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDSM))
    # Net8 definitions for FNDFS and FNDSM on the concurrent processing server node - ts1apps1
    FNDFS_ts1apps1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDFS_ts1apps1.bukhatir.ae = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    # For when the profile FS_SVC_PREFIX is set these entries will be used
    FNDFS_TEST1_ts1apps1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDFS_TEST1_ts1apps1.bukhatir.ae = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDFS))
    FNDSM_ts1apps1_TEST1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDSM))
    FNDSM_ts1apps1.bukhatir.ae_TEST1 = (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=ts1apps1)(PORT=1629))
    (CONNECT_DATA=(SID=FNDSM))
    IFILE=/locapps1/apps/apps/TEST_ts1apps1/ora/10.1.2/network/admin/TEST_ts1apps1_ifile.ora

    Yes, following message is also reported in the adconfig.log:
    Unique constraint error (00001) is OK if key already exists
    Creating the DBC file...
    java.sql.SQLException: The Network Adapter could not establish the connection
    Database connection to jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(HOST=ts1_vip2.bukhatir.ae)(PORT=1523))(ADDRESS=(PROTOCOL=tcp)(HOST=
    ts1_vip1.bukhatir.ae)(PORT=1523)))(CONNECT_DATA=(SERVICE_NAME=TEST))) failed
    ADD call failed with exit code 1
    Updating Server Security Authentication
    java.sql.SQLException: Invalid number format for port number
    Database connection to jdbc:oracle:thin:@host_name:port_number:database failed
    Updating Server Security Authentication failed with exit code 1
    Restoring DBC file from backed up location /locapps1/apps/apps/TEST_ts1apps1/appltmp/TXK/TEST_Mon_Apr_16_13_13_2012.dbc
    adgendbc.sh ended at Mon Apr 16 13:13:46 UAE 2012
    adgendbc.sh exiting with status 1
    ERRORCODE = 1 ERRORCODE_END
    .end std out.
    .end err out.
    Did you see Autoconfig has failed on Apps tier on adgendbc.cmd with error: ADD call failed with exit code 1, UPDATE call failed with exit code 1 [ID 359739.1]?But we have the file version:
    $Header: AdminAppServer.java 120.11.12010000.6 2010/04/13 15:24:03 fskinner ship $

  • Application Manager (6.2all) fails to Install Apps and Update Apps

    I have searched the forums for weeks and have yet to find a solution that works.  I am currently running WIndows 7 Pro 64 Bit in a corporate environment.  I orginally installed all my apps from the Application Manager and then one day about a month ago, it stopped working.  I know I have read posts that you can download the trials but there are certain products that you cannot get in a trial like Edge Animate.  I have done the following things to resolve: (in no paticular order, just everything I have tried thus far).  I really need to get Edge Animate installed.  I have spent over a week trying to solve this so hopeuflly someone out there can see something I am not.
    Read all my logs and compared them to other forum issues.
    Uninstalled every Adobe App and ran the Cleaner Tool.
    Re-Installed the AAM Manager 6.2all.
    Created a new admin account on my computer and tried from there.
    Tried on a different computer.
    Renamed my OOBE folder.
    Turned off all my antivirus and firewall software.  I tested to make sure that I could get to the https license site and I could. 
    Rebuilt my machine from scratch.  NO ADOBE SOFTWARE, ANIT-VIRUS etc.  Still the same issues.  For installing new software I get:  The download appears corrupt, Press Cancel -(60)
    And for updates I get: Update Failed: The download appears corrupt.  ...... (U43M1D207).
    Here is the weird part.  I watch step by step what it does.  I open up Applicaiton Manger.  Click on Install (say for Edge Animate).  Go to my Users\AppData\Local\Temp folder and see that it creates a temporary folder with letters and numbers.  I can see 4 files being downloaded fully.  Edge Animate.exe (2), Manifest.xml and info.  It fully downloads them and then they disappear and that's  when the error appears.  I made sure that the proper rights were on that folder and set to Full Access. 
    Here is my PDAPP.log:  I cleared out the log and ran the install for a new app and an update so you can see both errors.
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | RunMeFirst |  |  | 6248 | Build Version - 7.0.0.230
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | RunMeFirst |  |  | 6248 | Logging Level verbosity Set  to 4
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | RunMeFirst |  |  | 6248 | Launching the Bootstrapper in elevated mode
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | Utilities |  |  | 6248 | Path to Process :C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\Set-up.bin Process Directory :C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2 arguments being passed :"C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\Set-up.bin"
    02/05/13 12:01:12:611 | [INFO] |  | ASU | RunMeFirst | Utilities |  |  | 6248 | Success in CreateProcess
    02/05/13 12:01:13:079 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Build Version - 7.0.0.233
    02/05/13 12:01:13:079 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Logging Level verbosity Set  to 4
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Start Adobe Setup
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | TimeLog: Bootstrapper Start
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | TimeLog: Start initial checks
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Dictionary Path: C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\resources\Dictionary\en_US\stringTable.zdct
    02/05/13 12:01:13:095 | [INFO] |  | ASU | Setup | PIM |  |  | 6256 | XML is valid
    02/05/13 12:01:13:095 | [WARN] |  | ASU | Setup | PIM |  |  | 6256 | Failed to find Node
    02/05/13 12:01:13:173 | [INFO] |  | ASU | Setup | Utilities |  |  | 6280 | Semaphore is not locked
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Build Version - 7.0.0.233
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Logging Level verbosity Set  to 4
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | Utilities |  |  | 6280 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\pim.db-journal' does not exist
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | Utilities |  |  | 6280 | File 'C:\Users\a01gassu\AppData\Local\Temp\\asuap.txt' does not exist
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Build Version - 7.0.0.233
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Logging Level verbosity Set  to 4
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | CREATE PIM Instance ...
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | Utilities |  |  | 6280 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | Utilities |  |  | 6280 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db' does not exist
    02/05/13 12:01:13:204 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | trying to createOrUpdatePIMDbSchema.
    02/05/13 12:01:13:298 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | SUCCESS Created Tables.
    02/05/13 12:01:13:298 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | PIM Database is Up To Date.
    02/05/13 12:01:13:298 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Updater Inventory location:C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\resources\updaterinventory.dll
    02/05/13 12:01:13:298 | [INFO] |  | ASU | PIM | PIM |  |  | 6280 | Acquired System level ACF lock ...
    02/05/13 12:01:13:313 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | TimeLog: End initial checks
    02/05/13 12:01:13:313 | [INFO] |  | ASU | Setup | Setup |  |  | 6284 | TimeLog: Begin Installing
    02/05/13 12:01:13:313 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Current OS version is: Major:6, Minor:1, ServicePack:1
    02/05/13 12:01:13:313 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:313 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:407 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:407 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:438 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:438 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:469 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:469 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:485 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:485 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:516 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:516 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:547 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:547 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:641 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:641 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | pim_haveEnoughDiskSpaceToInstallPackages reqSize ... 122563823
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Executing Adobe Genuine Validation for all the AAM packages
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\core\PDApp.pimx'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\core\PDApp.pima'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\D6\D6.pimx'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\D6\D6.pima'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DECore\DECore.pimx'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DECore\DECore.pima'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DWA\DWA.pimx'
    02/05/13 12:01:13:672 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DWA\DWA.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\P6\P6.pimx'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\P6\P6.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\LWA\LWA.pimx'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\LWA\LWA.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\UWA\UWA.pimx'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\UWA\UWA.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\CCM\CCM.pimx'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Validating package file: 'C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\CCM\CCM.pima'
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Adobe Genuine Validation PASSED for all the AAM packages
    02/05/13 12:01:13:688 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\core\PDApp.pimx
    02/05/13 12:01:13:703 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:13:703 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:953 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:13:953 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:13:953 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:15:279 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\core\PDApp.pimx' does not exist
    02/05/13 12:01:15:654 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\core\PDApp.pimx.
    02/05/13 12:01:15:763 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\D6\D6.pimx
    02/05/13 12:01:15:763 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:15:778 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:15:919 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:15:919 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:16:434 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\D6\D6.pimx' does not exist
    02/05/13 12:01:17:026 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\D6\D6.pimx.
    02/05/13 12:01:17:104 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DECore\DECore.pimx
    02/05/13 12:01:17:104 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:17:104 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:17:229 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:17:229 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:17:229 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:18:914 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\DECore\DECore.pimx' does not exist
    02/05/13 12:01:19:226 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DECore\DECore.pimx.
    02/05/13 12:01:19:366 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DWA\DWA.pimx
    02/05/13 12:01:19:366 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:19:366 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:19:819 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:19:819 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:19:819 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:20:365 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\DWA\DWA.pimx' does not exist
    02/05/13 12:01:20:739 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\DWA\DWA.pimx.
    02/05/13 12:01:21:176 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\P6\P6.pimx
    02/05/13 12:01:21:176 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:21:176 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:21:316 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:21:316 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:24:327 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\P6\P6.pimx' does not exist
    02/05/13 12:01:25:435 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\P6\P6.pimx.
    02/05/13 12:01:25:825 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\LWA\LWA.pimx
    02/05/13 12:01:25:825 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:25:825 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:26:121 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:26:121 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:26:121 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:28:306 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\LWA\LWA.pimx' does not exist
    02/05/13 12:01:28:742 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\LWA\LWA.pimx.
    02/05/13 12:01:29:491 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\UWA\UWA.pimx
    02/05/13 12:01:29:491 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:29:491 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:29:881 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:29:881 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:31:582 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\UWA.pimx' does not exist
    02/05/13 12:01:32:206 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\UWA\UWA.pimx.
    02/05/13 12:01:32:299 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | START installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\CCM\CCM.pimx
    02/05/13 12:01:32:299 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | XML is valid
    02/05/13 12:01:32:299 | [WARN] |  | ASU | PIM | PIM |  |  | 6284 | Failed to find Node
    02/05/13 12:01:32:455 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertPackageUpdateList.
    02/05/13 12:01:32:455 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS insertAppletRegInfoList.
    02/05/13 12:01:33:750 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\CCM.pimx' does not exist
    02/05/13 12:01:34:561 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | Path to Process :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeApplicationManager(URIHandler).exe Process Directory :C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities arguments being passed :"C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeApplicationManager(URIHandler).exe" --register=true --createShortcut=true
    02/05/13 12:01:34:561 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | Success in CreateProcess
    02/05/13 12:01:35:092 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | Sucessfully launched and executed process...
    02/05/13 12:01:35:092 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Successfully executed install modifier at path: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\CCM\Utilities\AdobeApplicationManager(URIHandler).exe'
    02/05/13 12:01:35:092 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | SUCCESS installPackage at file C:\Users\a01gassu\Desktop\Adobe Application Manager 6.2\packages\CCM\CCM.pimx.
    02/05/13 12:01:35:841 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\PDAppFlex.swf' does not exist
    02/05/13 12:01:35:919 | [INFO] |  | ASU | PIM | Utilities |  |  | 6284 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\PDAppFlex-app.xml' does not exist
    02/05/13 12:01:35:965 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Processing ... _pimCreateOrUpdateAAMInventory
    02/05/13 12:01:35:981 | [INFO] |  | ASU | PIM | PIM |  |  | 6284 | Inventory Already present on the machine...
    02/05/13 12:01:35:981 | [INFO] |  | ASU | Setup | Setup |  |  | 6284 | TimeLog: End Installing. Now launching PDApp
    02/05/13 12:01:36:558 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | Bootstrapping successful. PDApp launched. Quitting Bootstrapper
    02/05/13 12:01:36:558 | [INFO] |  | ASU | PIM | PIM |  |  | 6256 | PIMSqlite closeDB status 0
    02/05/13 12:01:36:558 | [INFO] |  | ASU | PIM | PIM |  |  | 6256 | FREE PIM Instance ...
    02/05/13 12:01:36:558 | [INFO] |  | ASU | Setup | Setup |  |  | 6256 | =================  End Adobe Setup. Exit code: 0  =================
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Build Version - 7.0.0.233
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Logging Level verbosity Set  to 4
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.CommandLineParser |  |  | 6544 | Parsing the command line provided. Number of command line arguments is 4
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Detecting Applet Database Library file...
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Fetching Applet registeration information...
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | AppletManager initialize...
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Applet database path - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | PIM library path - C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\AdobePIM.dll
    02/05/13 12:01:49:210 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Loading PIM library...
    02/05/13 12:01:49:226 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | Build Version - 7.0.0.233
    02/05/13 12:01:49:226 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | Logging Level verbosity Set  to 4
    02/05/13 12:01:49:226 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | CREATE PIM Instance ...
    02/05/13 12:01:49:226 | [INFO] |  | ASU | PIM | Utilities |  |  | 6544 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\pim.db-journal' does not exist
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | trying to createOrUpdatePIMDbSchema.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | Current db schema version on machine 1.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | Current db schema version to install 1.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | PIM DB Schema is up to date. Current schema version is 1.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | PIM Database is Up To Date.
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Getting applet data from Applet database
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | All installed pakages version string (pim_getCurrentPackagesVersion) is CCM:7.0.0.237|D6:7.0.0.235|DECore:7.0.0.235|DWA:3.0.97.0|LWA:3.0.97.0|P6:7.0.0.125|PDApp: 7.0.0.235|UWA:7.0.0.235
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | PIMSqlite closeDB status 0
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PIM | PIM |  |  | 6544 | FREE PIM Instance ...
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Registering Applets...
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | DWA AppletID argument not specified on command line. Trying to find the existing instance
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | This is the first instance so creating a thread for listening to the created pipe
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PipeThread |  |  | 6556 | Pipe thread started
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp |  |  | 6544 | Starting AsyncMessageProcessor
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 6544 | AsyncMsgProcessor initialized...
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.AsyncMsgProcessor |  |  | 6544 | AsyncMsgProcessor started. on thread id = 6564
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 6544 | Initializing native WindowManager
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 6544 | Creating window instance
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 6544 | Checking for appletID and appletVersion given in CommandLineOptions
    02/05/13 12:01:49:288 | [INFO] |  | ASU | PDApp | PDApp.WindowManager |  |  | 6544 | Creating APE stage instance
    02/05/13 12:01:50:349 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 6544 | MessageHandler initialized...
    02/05/13 12:01:50:349 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 6544 | ExternalGateway initialized...
    02/05/13 12:01:50:349 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 6544 | NativeCommandHandler initialized...
    02/05/13 12:01:50:365 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 6544 | Logging Level verbosity Set to  INFO
    02/05/13 12:01:50:365 | [INFO] |  | ASU | PDApp | PDApp.StartupCommand |  |  | 6544 | Processing the startup Command
    02/05/13 12:01:50:365 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Starting Applet registeration...
    02/05/13 12:01:50:380 | [INFO] |  | ASU | PDApp | PDAPP.MainDisplayMediator |  |  | 6544 | Looking up for the Exact versioned applet for ID :CCM_UI
    02/05/13 12:01:50:380 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading Applet: CCM_UI Version = 1.0
    02/05/13 12:01:50:396 | [INFO] |  | ASU | PDApp | PDApp.ZStringLoader |  |  | 6544 | PDAPP SWF - locale set to - en_US
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 0 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 65536 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 131072 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 196608 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 262144 out of 1481767
    02/05/13 12:01:50:411 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 327680 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 393216 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 458752 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 524288 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 589824 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 655360 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 720896 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 786432 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 851968 out of 1481767
    02/05/13 12:01:50:427 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 917504 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 983040 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1048576 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1114112 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1179648 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1245184 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1310720 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1376256 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1441792 out of 1481767
    02/05/13 12:01:50:443 | [INFO] |  | ASU | PDApp | PDAPP.AppletManager |  |  | 6544 | Loading progress 1481767 out of 1481767
    02/05/13 12:01:50:864 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = ApplicationStartupCommand, type = null
    02/05/13 12:01:50:864 | [INFO] |  | ASU | PDApp | CCM.AppStartup |  |  | 6544 | Processing the application startup command
    02/05/13 12:01:50:864 | [INFO] |  | ASU | PDApp | PDApp.ExternalGateway |  |  | 6544 | Recieved Applet Loading Completion
    02/05/13 12:01:50:864 | [INFO] |  | ASU | PDApp | CCM.AppStartup |  |  | 6544 | DPI values are 96,96 and DPIType is set to 1
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.ScreenBasePopupWindowMediator |  |  | 6544 | onRegister
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | CCM.AppStartup |  |  | 6544 | Going to start the workflow
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = bootEXECUTE_CCM_WORKFLOW, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initCCMNativeSignal, type = null
    02/05/13 12:01:50:879 | [INFO] |  | ASU | PDApp | CCM.InitializeCCMNativeCommand |  |  | 6544 | inside initial windows show
    02/05/13 12:01:50:895 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Loading Applet - CCM_Native for WindowID - 1
    02/05/13 12:01:50:911 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | startApplet
    02/05/13 12:01:50:911 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:50:911 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initZstringSignal, type = null
    02/05/13 12:01:50:942 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 6544 | Trying to load ZString for preferred locale - en_US
    02/05/13 12:01:50:942 | [INFO] |  | ASU | PDApp | ZStringLoader |  |  | 6544 | Locale set to - en_US
    02/05/13 12:01:50:942 | [INFO] |  | ASU | PDApp | CCM.InitializeZstringCommand |  |  | 6544 | Font fallback applied is applicationFonts 'Lucida Grande, Segoe UI, Tahoma, _sans' inputControlFonts: 'Lucida Grande, Segoe UI, Tahoma, _sans'
    02/05/13 12:01:50:957 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = zstringLoadCompleteSignal, type = null
    02/05/13 12:01:50:957 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:50:957 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:50:957 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initAppletViewSignal, type = null
    02/05/13 12:01:50:973 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = ShowScreen, type = null
    02/05/13 12:01:50:973 | [INFO] |  | ASU | PDApp | AAMShared.DynamicViewMediator |  |  | 6544 | Showing screen with screenID : com.adobe.aam.shared.view.compositeComponent::CCMMainView
    02/05/13 12:01:51:067 | [INFO] |  | ASU | PDApp | CCM.PrepareInitialAppletView |  |  | 6544 | Going to show the window now!!!
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = RegisterMediatorCommand, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.compositeComponent.CCMMainViewMediator |  |  | 6544 | onRegister
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMMainContentMediator |  |  | 6544 | onRegister
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_CONTENT_REFRESH_DATA, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMMainContentMediator |  |  | 6544 | handleNotification : CCM_CONTENT_REFRESH_DATA
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMNavigationPanelMediator |  |  | 6544 | onRegister
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_NAVIGATION_PANEL_REFRESH_DATA, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMNavigationPanelMediator |  |  | 6544 | handleNotification : CCM_NAVIGATION_PANEL_REFRESH_DATA
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = ccmInitialViewCompleteSignal, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_MAIN_CONTENT_IS_BUSY, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMMainContentMediator |  |  | 6544 | handleNotification : CCM_MAIN_CONTENT_IS_BUSY
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:51:238 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = preprocess_ccm_applet, type = null
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = populateSystemInfoDataSignal, type = null
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | SystemUtilities |  |  | 6544 | Current system is a windows system
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | SystemUtilities |  |  | 6544 | Current system is 64 bit
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initNativeSessionsSignal, type = null
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | createSession
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | dlmAppletSessionProxy.sessionId = {76C89C44-B9B1-47A2-9A71-3CB13E3C36C5}
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initGlobalUpdateSession, type = null
    02/05/13 12:01:51:254 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | createSession
    02/05/13 12:01:51:316 | [INFO] |  | ASU | PDApp | CCMNativeApplet |  |  | 6544 | dlmAppletSessionProxy.sessionId = {5621E9AD-39EA-4686-B443-DA3AB4C158F6}
    02/05/13 12:01:51:332 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:51:332 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = readGlobalPrefSignal, type = null
    02/05/13 12:01:51:332 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Build Version - 7.0.0.237
    02/05/13 12:01:51:332 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Logging Level verbosity Set  to 4
    02/05/13 12:01:51:332 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:52:003 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:52:003 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:52:003 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:52:003 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:52:003 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:52:003 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = readUpdatesPrefSignal, type = null
    02/05/13 12:01:52:065 | [INFO] |  | ASU | PDApp | PDApp.MessageQuequeManager |  |  | 6544 | Message Queue Manager initialized...
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = handleNativeDataSignal, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = readUpdatesPrefResultSignal, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = GetUpdaterPreferencesCompleteSignal, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:52:569 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = check_new_aam_version, type = null
    02/05/13 12:01:52:579 | [INFO] |  | ASU | OPM | Utilities |  |  | 6640 | File 'C:\Users\a01gassu\AppData\Local\Temp\{2C77F8A3-4149-4CB9-8AEF-CF29B6E39246}AAMVersion.xm l' does not exist
    02/05/13 12:01:52:579 | [INFO] |  | ASU | OPM | Utilities |  |  | 6640 | File 'C:\Users\a01gassu\AppData\Local\Temp\{2C77F8A3-4149-4CB9-8AEF-CF29B6E39246}\AAMVersion.x ml' does not exist
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | Build Version - 7.0.0.233
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | Logging Level verbosity Set  to 4
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | CREATE PIM Instance ...
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | Utilities |  |  | 6640 | File 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\pim.db-journal' does not exist
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | trying to createOrUpdatePIMDbSchema.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | Current db schema version on machine 1.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | Current db schema version to install 1.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | PIM DB Schema is up to date. Current schema version is 1.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | PIM Database is Up To Date.
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | PIMSqlite closeDB status 0
    02/05/13 12:01:55:847 | [INFO] |  | ASU | PIM | PIM |  |  | 6640 | FREE PIM Instance ...
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = handleNativeDataSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = aamVersionCheckCompleteSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = parseInputXmlForDownloadRequestSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = showAdobeLogInSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = initProvCommonSignal, type = null
    02/05/13 12:01:56:206 | [INFO] |  | ASU | PDApp | PDApp.AppletManager |  |  | 6544 | Loading Applet - LWA_Native for WindowID - 1
    02/05/13 12:01:56:237 | [INFO] |  | ASU | LWANative | LWANative |  |  | Build Version - 7.0.0.124
    02/05/13 12:01:56:237 | [INFO] |  | ASU | LWANative | LWANative |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:56:237 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = INIT_PROV_COMMON_NOTIFICATION, type = null
    02/05/13 12:01:56:237 | [INFO] |  | ASU | PDApp | ProvCommon.ZStringLoader |  |  | 6544 | Applet locale set to - en_US
    02/05/13 12:01:56:237 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = FetchDefaultUserCommand, type = null
    02/05/13 12:01:56:253 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing openIMSLibSession...
    02/05/13 12:01:56:253 | [INFO] |  | ASU | LWANative | LWANative |  |  | pwa_openIMSLibSession Session key : {8DEAC40A-3487-4680-A7A9-3F9EECF19730}
    02/05/13 12:01:56:268 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:56:268 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:56:268 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Creating IMSLib instance ...
    02/05/13 12:01:56:268 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:56:268 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:56:268 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | IMSLib |  |  | Failed get proxy credentials from local store while creating IMSLib instance ...
    02/05/13 12:01:56:487 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Done opening IMSSession, session key - {8DEAC40A-3487-4680-A7A9-3F9EECF19730}
    02/05/13 12:01:56:487 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Fetching default user profile for requested ClientID...
    02/05/13 12:01:56:487 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing fetch default user for clientID...
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | IMSLib |  |  | Performing fetchDefaultUserInfoForClientId...
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:56:487 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:56:689 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:33 in opm_getValueForKey
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:CSServiceMap key:426eb9f9-9989-45dd-8b7c-1bcdc957c8e5 in opm_getValueForKey
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:57:937 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:1166 in opm_getValueForKey
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:e58f52b002e54a2b37e40e58b8e8a057 in opm_getValueForKey
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | IMSLib |  |  | Performing releaseData...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Retrieved default user profile successfully
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Closing IMSSession: {8DEAC40A-3487-4680-A7A9-3F9EECF19730}
    02/05/13 12:01:58:421 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing closeIMSLibSession...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | OPM | IMSLib |  |  | Releasing IMSLib instance ...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Done closing IMSSession: {8DEAC40A-3487-4680-A7A9-3F9EECF19730}
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = FetchAccessTokenCommand, type = null
    02/05/13 12:01:58:421 | [INFO] |  | ASU | PDApp | CCM.FetchAccessTokenCommand |  |  | 6544 | Fetching access token for the requested user...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing openIMSLibSession...
    02/05/13 12:01:58:421 | [INFO] |  | ASU | LWANative | LWANative |  |  | pwa_openIMSLibSession Session key : {BD969FC5-445B-49A9-AEF9-ECA298FC59E2}
    02/05/13 12:01:58:421 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:58:421 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:58:421 | [INFO] |  | ASU | IMSLib | IMSLib |  |  | Creating IMSLib instance ...
    02/05/13 12:01:58:437 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:58:437 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:58:437 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | OPM |  |  | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | IMSLib |  |  | Failed get proxy credentials from local store while creating IMSLib instance ...
    02/05/13 12:01:58:640 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Done opening IMSSession, session key - {BD969FC5-445B-49A9-AEF9-ECA298FC59E2}
    02/05/13 12:01:58:640 | [INFO] |  | ASU | PDApp | ProvisioningNativeAppletBase |  |  | 6544 | Performing fetchAccessToken...
    02/05/13 12:01:58:640 | [INFO] |  | ASU | LWANative | LWANative |  |  | Performing fetch Access token for user...
    02/05/13 12:01:58:640 | [INFO] |  | ASU | OPM | IMSLib |  |  | Performing fetch accessToken...
    02/05/13 12:01:58:655 | [INFO] |  | ASU | OPM | IMSLib |  |  | Using environment:ims-na1.adobelogin.com
    02/05/13 12:01:58:655 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:58:655 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:58:655 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:1166 in opm_getValueForKey
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:e58f52b002e54a2b37e40e58b8e8a057 in opm_getValueForKey
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:65 in opm_getValueForKey
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:Default key:deviceID in opm_getValueForKey
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | setting authproxy credentials in fetchAccessTokenForDeviceToken
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:01:58:796 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | OPM |  |  | No Record found for the input fields in opm_getValueForKey
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | IMSLib_OPMWrapper |  |  | Failed in getting value for key in OPMGetValueForKey domain:OOBE subDomain:ProxyCredentials key:ProxyUsername
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed to get proxy user name from local db in getProxyCredentialsFromLocalStore
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed to get proxyCredentials from local store in setProxyCredentialsForHTTPRequest
    02/05/13 12:01:59:026 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | Failed in setting authproxy credentials in fetchAccessTokenForDeviceToken
    02/05/13 12:01:59:036 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | GetIEProxyInfo - No default proxy present on the user machine
    02/05/13 12:02:01:308 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | GetIEProxyInfo - Failed to get proxy for the url, error:12180
    02/05/13 12:02:01:308 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | GetIEProxyInfo - proxy Url is
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE...
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | HTTP Request Status code 200.
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | HTTPConnector |  |  | The http request returned response code:0
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | IMSLibHelper |  |  | user has not selected 'Remember Me', proxy data is not saved in local store
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:02:01:698 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:02:02:447 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:02:02:447 | [INFO] |  | ASU | OPM | OPM |  |  | returning size of value as:1166 in opm_getValueForKey
    02/05/13 12:02:02:447 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully retreived value from opm domain:IMSLib subdomain:SignInUsers key:e58f52b002e54a2b37e40e58b8e8a057 in opm_getValueForKey
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully updated opm.db for fields domain:IMSLib subdomain:SignInUsers key:e58f52b002e54a2b37e40e58b8e8a057 in opm_setValueForKey
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:02:02:525 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:02:02:650 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully updated opm.db for fields domain:IMSLib subdomain:CSServiceMap key:426eb9f9-9989-45dd-8b7c-1bcdc957c8e5 in opm_setValueForKey
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Build Version - 7.0.0.11
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Logging Level verbosity Set  to 4
    02/05/13 12:02:02:728 | [INFO] |  | ASU | OPM | OPM |  |  | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:02:03:086 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:02:03:445 | [INFO] |  | ASU | OPM | OPM |  |  | Successfully updated opm.db for fields domain:IMSLib subdomain:Default key:deviceID in opm_setValueForKey
    02/05/13 12:02:03:445 | [INFO] |  | ASU | OPM | OPM |  |  | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:02:03:445 | [INFO] |  | ASU | OPM | IMSLib |  |  | Invoking client callback function with response and status : 0
    02/05/13 12:02:03:445 | [INFO] |  | ASU | LWANative | LWANative |  |  | Proceeding with fetchAccessToken callback...
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = FetchAccessTokenStatusCommand, type = null
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | CCM.FetchAccessTokenCommand |  |  | 6544 | Received FetchAccessToken response with status : success
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | CCM.FetchAccessTokenCommand |  |  | 6544 | AccessToken generated successfully.
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = ADOBEID_SIGNIN_ACCESSTOKEN_RESPONSE, type = null
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = adobeLogInDoneSignal, type = null
    02/05/13 12:02:03:492 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = sendAnalyticsSignal, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = adobeLogInCompleteSignal, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = showPostAdobeIdScreenSignal, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_MAIN_CONTENT_IS_BUSY, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMMainContentMediator |  |  | 6544 | handleNotification : CCM_MAIN_CONTENT_IS_BUSY
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = CCM_NAVIGATION_PANEL_REFRESH_DATA, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | com.adobe.aam.shared.view.mediator.component.CCMNavigationPanelMediator |  |  | 6544 | handleNotification : CCM_NAVIGATION_PANEL_REFRESH_DATA
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = loadUserPrefSignal, type = null
    02/05/13 12:02:03:508 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Build Version - 7.0.0.237
    02/05/13 12:02:03:508 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Logging Level verbosity Set  to 4
    02/05/13 12:02:03:508 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Schema version and schema compatibility version are same or greater than current
    02/05/13 12:02:03:679 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Successfully opened opm session, db location:C:\Users\a01gassu\AppData\Local\Adobe\OOBE\opm.db in opm_createLibRef
    02/05/13 12:02:05:255 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | returning size of value as:339 in opm_getValueForKey
    02/05/13 12:02:05:255 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Successfully retreived value from opm domain:OOBE subdomain:CCM_Pref key:1b8ec8539d00c8de37ed1903f379b493 in opm_getValueForKey
    02/05/13 12:02:05:255 | [INFO] |  | ASU | OPM | OPM |  |  | 6544 | Released OPM refrence successfully in opm_freeLibRef
    02/05/13 12:02:05:255 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:02:05:255 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = prefetchProductsIcons, type = null
    02/05/13 12:02:05:271 | [INFO] |  | ASU | OPM | Utilities |  |  | 6688 | File 'C:\Users\a01gassu\AppData\Local\Temp\{2C77F8A3-4149-4CB9-8AEF-CF29B6E39246}\{9AC7DB7C-67 B4-4AC4-BD10-97E94251ED00}.xml' does not exist
    02/05/13 12:02:05:832 | [INFO] |  | ASU | PDApp | CCM.ETSCommunicator |  |  | 6544 | Response: SUCCESS
    02/05/13 12:02:09:498 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = handleNativeDataSignal, type = null
    02/05/13 12:02:09:498 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = IconsPrefetchResult, type = null
    02/05/13 12:02:09:529 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = productsIconsFetchedSignal, type = null
    02/05/13 12:02:09:529 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow, type = null
    02/05/13 12:02:09:529 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = execute_ccm_workflow_manager, type = null
    02/05/13 12:02:09:529 | [INFO] |  | ASU | PDApp | DLM.ApplicationFacade |  |  | 6544 | sendNotification = fetchAvailableUpdatesSignal, type = null
    2/5/2013 12:02:10 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:10 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:10 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:10 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:10 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:11 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:11 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:11 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:11 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:11 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:11 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:11 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:11 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:11 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:11 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:11 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:11 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:11 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:11 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:11 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:11 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:11 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:11 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:12 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:12 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:12 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:12 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:12 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:12 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:12 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:12 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:12 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:12 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:12 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:12 [INFO] OPM - Released OPM refrence successfully
    2/5/2013 12:02:12 [INFO] OPM - Build Version - 6.0.281.0
    2/5/2013 12:02:12 [INFO] OPM - Logging Level verbosity Set  to 4
    2/5/2013 12:02:12 [INFO] OPM - Schema version and schema compatibility version are same or greater than current
    2/5/2013 12:02:12 [INFO] OPM - No Record found for the input fields
    2/5/2013 12:02:12 [INFO] OPM - Released OPM refrence successfully
    2/5

    Matt,
    I am glad (well not glad, it sucks but I'm glad I'm not alone)  to hear you are experiencing the same thing.  I have literally tried everything to get this to work.  I even took a brand new laptop out of the box and Adobe was the only thing I installed.  I can usually follow other posts and fix issues but I am stumped and WAY aggrivated.  I love the concept as does my editing team but I'm in charge of installing and updating 5 PC's and my team is now aggrivated that they can't get what they need to do their jobs.  Even if you download the trials, you don't get everything you need for the whole cloud process.  Not to mention we all  need updates badly and really need to start using Edge Animate. 

Maybe you are looking for

  • If I re-install my osx will iTunes Match have to upload loads of files again?

    Hi I am having some issues with my iMac freezing up and a lot of beachball incidents.  Does anybody know if iTunes Match will need to upload songs again that it needed to first time around if I fresh install a copy of OSX?  I have a reasonably large

  • PO version management - view history version

    Hi expert, I'm using PO version management together with change PO output. 1. Is there a way to pre-view or re-print a certain history version of the PO output? currently only the last version can be previewed and I got error message when I try to re

  • Infotype 2

    Hello, In Infotype 2 if the firstname and lastname are same is there any function module to get the name without duplicate. Regards, Aravind

  • Output type requirement

    Hi,    We are trying to tag a requirement to all the PO output types to stop them from triggering when the PO is put on hold. I see the transaction NACE and find requirements already tagged to few of the output types. If I have to add our requirement

  • How do I turn off font preview in Photoshop CC2014

    Though I can see that the font preview on the fonts selector could be useful, I dislike that is has been forced upon us. It slows things down, and I don't need to preview the fonts. Is there any way to turn this off please?