Serialization problem

Hey guys,.

I'm trying to understand why I get following error: incompatible types found: java.io.Serializable, required: int

Here's my method and imports CO:

Import oracle.apps.fnd.common.VersionInfo;
Import oracle.apps.fnd.framework.webui.OAControllerImpl;
Import oracle.apps.fnd.framework.webui.OAPageContext;
Import oracle.apps.fnd.framework.webui.beans.OAWebBean;
Import oracle.apps.fnd.framework.OAApplicationModule;

import java.io.Serializable;
java.lang.String import;

' Public Sub processRequest (pageContext OAPageContext, OAWebBean webBean)
{
super.processRequest (pageContext, webBean);
OAApplicationModule am = (OAApplicationModule) pageContext.getRootApplicationModule ();
String usrname = pageContext.getUserName ();
[Serializable] params = {usrname};

int empid = am.invokeMethod("getManagerId",params); He does not here

Integer pers_id = new Integer (empid);
String personid = pers_id.toString ();
[Serializable] parameters = {personid};
am.invokeMethod ("initDetails", parameters);
}

Here's my AM method:

public int getManagerId (String usrname)
{
int id;
ResultSet resultset = null;
Try
{
Conn Connection is getOADBTransaction () .getJdbcConnection ();.
String query = "SELECT EMPLOYEE_NUMBER FROM XXPER_PO_EMPLOYEE_DETAILS_V WHERE ORACLE_USERNAME = '" + usrname + "'";
PreparedStatement stmt = conn.prepareStatement (query);
ResultSet = stmt.executeQuery ();
ID = (int) resultset.getInt ("EMPLOYEE_NUMBER");
}
catch (System.Exception e)
{}

return the id;
}


Thank you

Published by: 940793 on June 29, 2012 09:04

Change:

public int getManagerId(String usrname)
{
return id;
}

TO:

public String getManagerId(String usrname)
{
return ""+id;
}

Change:

int empid = am.invokeMethod("getManagerId",params);

TO:

int empid = Integer.parseInt((String)am.invokeMethod("getManagerId",params));

Tags: Java

Similar Questions

  • Application modular Flex and BlazeDS serialization problem

    Hey there,
    I write modular Flex application using BlazeDS to communicate with managed by backend Java spring. I created Java objects on the server side and the relevant ActionScript objects in flex.

    I used RemoteClass metatag to serialize objects from flex to java. Everything works perfectly fine, when I work with the objects that first loaded module. I am able to serialize the form of objects as Java. But when I reload module or load another flex module I'm losing the types of objects serialized. I get this error message then:

    faultCode:Server.ResourceUnavailable faultString: 'Can't call method "updateProfile".' faultDetail: ' types of expected arguments are (com.konrady.cms.entity.User), but provided types have been (flex.messaging.io.amf.ASObject) and processed (null).

    I tried to invesigate this question, and I'm sure this is the problem with loading flex modules. When I insert ModuleA first of all, I am able to serialize the quant to Java objects. But when I load moduleB, I can't serialize objects and more. Loading moduleA again after that ModuleB are also not possible to serialize objects.
    When I load moduleB firstly I can serialize objects of it. Reloading flex modules brokes Serialization...

    Someone has encountered this problem before? I will be grateful for any piece of advice.

    Ouch, I hope that someone with a full understanding of these multi-application configurations will come to your front rescure I spoil completely.

    I would like to tell you of a long series of publications dealing with the complexity of such a request in the middle of the AIR [which is my case], but due to the mishandling of the code formatted in this forum tool, which deals as the thread to 'How to Test AIR 1.5' in the developer forum is almost impossible to follow and , at the end of the day, he never gave a "How-to" document as I had hoped.  Under "can someone Open the Black Box" in the Adobe AIR forum, there are some ideas that might be relevant.  To reduce the time of download of network for the scheme - not really reduce congestion of memory - I configured my use of SWFLoader in the AIR application to successfully benefit from the Flex Framework RSL.  I don't think that the possibility of using BlazeDS classes in the scheme is directly related to this difference, but it can be indirectly related.

    Following this line of thought, you could get the 'how to debug Actionscript to Java serialization problem' that I posted on the forum Configuration and commissioning, which can help, but it seems that you have found the information of stack trace good to help in your search for failures.

    The new information - or at least what I had not detected from your previous post - seems to be this:

    Home - or not properly accesses remote objects, I'm not clear.

    Load A sub-application successfully access Remote Objects.

    Load sub-application B fails when you try to access remote objects.

    This seems to make clear that "dumping" is not what is causing the failure.  I think, then, is that your problem has to do with loading, and now I have to expose my ignorance to the world and how it was that I finally managed to get my multi-application to subsequently work issues at stake.  If it helps your big case, or if only it gives off just using one or several of the teams in question Adobe - Flex SDK team, team air, BlazeDS team - then we all benefit.

    Somewhere that I can't find now, there is this big PDF file describing the scenarios to pump Flex of MashUps and other environments where a disconnnected development team may have to deal with different versions of RSL - done one or two side-notes on the AIR, it focuses on the Flex.  From there on, I won some glimmer of an idea of the ApplicationDomain class and class related SecurityDomain.  I could not, on a bet, give you a clear statement on the results of the use of the different options.  The code I use to achieve successfully the dynamic loading of my scheme via the SWFLoader is loaded with comments showing that I n "t got a clue.  I tried all combinations; This is what works for me:

    var context: LoaderContext = new LoaderContext();

    context.allowLoadBytesCodeExcecution = true;

    context.applicationDomain = ApplicationDomain.currentDomain;

    var swfLoader:SWFLoader = new SWFLoader();

    swfLoader.trustContent = true;

    swfLoader.loaderContext = context;

    swfLoader.source = byteArray;

    The byteArray was populated by readBytes() starting from a FileStream.  As I said, my use case is sub-appliciations Flex and/or air base running in an envelope of AIR.  Presumably, you get to the same place in pure Flex using SWFLoader.load () after you have configured the ApplicationDomain or SecurityDomain via the LoaderContext.

    All I can hope. After dragging you in all this rubbish is the link of the duration of the BlazeDS code begins to work for you, as it did for me.  In particular, which does not [even though I was debugging problems other than BlazeDS in time] was to set the LoaderContext this way:

    context.applicationDomain = new ApplicationDomain (ApplicationDomain.currentDomain);

    or was this another incantation:

    context.applicationDomain = new ApplicationDomain (null);

    These three variants have the world to do with the way the runtime detects and calls methods on classes in the application.  Only the first allows me to work successfully with RemoteObjects in any subsidiary application that happens to need support on the server side.

  • AMF3 serialization problems. How to put a BeanProxy custom?

    Hello

    When I serialize to AMF3 a BigDecimal whose value is null on the Flex client side app I get 0 instead of null or NaN.

    What I would like is that when a java variable pointed null is serialized on the client Flex app I get null or NaN (if it's a number on the client side).

    Also, when I serialize NaN flex client I want to it to be deserialized to null on the coast of Java.

    Is it possible to customize the serialization of specific objects?

    I read in some places that mention the use of a custom proxy bean. But I couldn't find how to implement or configure such a thing.

    I use the BalzeDS AMF3 serialization classes.

    Thanks in advance,

    Polaco.

    Hi Polaco,

    Normally you can access the method protected subclasses even in another package.

    The marshaler of type has the advantage of dealing with not only withbeans but also with parameters, you switch to a method call. I guess in your case, it doesn't really matter.

    Concerning the registration against the object class, the issue is in how BlazeDS. BlazeDS is messages, and those messages are of course subclasses of object. And these including Ack messages are serialized in the same way that your items are. That's where can side effect and, more than likely, will have occurred.

    The problem is that you not only customize your own objects, but also used by BlazeDS.

    The best way to understand how this all works is to run your server in debug mode, set breakpoints, and run something.

    Here is how I got it to work:

    When BlazeDS serialize or deserialize something, if it is not a simple type, it will seek a BeanProxy registered in the class of the object. First of all against the actual class, then against the implemented interfaces, then it goes up in the class hierarchy. If it does not find it, it will create one based on the default BeanProxy.

    Then, it will use this BeanProxy for a list of the properties of the class and getValue or setVlaue when it is read or written something on an object.

    There is also a method that handles the creation of the real object.

    I understand the idea behind it, the goal is to have blazeDs using the proxy instead of the real and class objects so it can use caches instead of actually using reflection all the time.

    This article looks at the implementation of a beanProxy to add some features of anotation to BlazeDS http://www.flexpasta.com/index.php/2008/05/19/blazeds-with-annotations-for-remote-objects/

    And it uses this mechanism to provide a way to manage the serialization of enum http://flexblog.faratasystems.com/2007/09/16/adding-enum-support-to-flex-amf-protocol

    Hope this helps,

    Nicolas.

  • Object binding problem which is not serializable clustered JNDI

    Hello

    I have an ApplicationLifecycleListener class that has a preStart() method that instantiates one object & JNDI binds.

    This object is a reference to an object that is not Serializable (progress.message.jimpl.Connection).

    When I bind it on a single server (without clusters), everything works fine, when I move to a clustered environment, I get the

    java.io.NotSerializableException: progress.message.jimpl.Connection

    I clear the weblogic.jndi.WLContext.REPLICATE_BINDINGS = 'false' to try and get around that, but no luck.

    Please can someone explain why the exception occurs in a cluster but not in a single server environment?

    Thank you very much

    Mandy

    Hi Mandy,.

    As you have found the InitialContext as follows:

    InitialContext ic = new world; Which is the best way to get the InitialContext when the Code is running on the same JVM (which means same WebLogic Server) when you try to link your objects... This means that the class of the Module Loader already has the class Employee Loaded inside. That is why your code is able to bind in the same WebLogic Server.

    But when you go pass the Argument to the InitialContext as Context.PROVIDER_URL, then you could point the URL of another WebLogic Server... .then when we want to link an object to a remote JVM (WebLogic Server) in this case the object of Marshelled (serialized) be sent to the JVM (WebLogic JNDI tree)... As your employee class is not serializable if the process have will fail and will give you "java.io.NonSerializableException".

    Rule of thumb as well: * "If you want your objects to pass to a distance JVM in this case the class must implement java.io.Serializable interface."

    .
    .
    Thank you
    Jay SenSharma
    http://middlewaremagic.com/WebLogic (Middleware Magic Is Here)

  • Problem with the locale and date serialization in java

    Hello
    I have a serious problem with Flex dates and need a solution as soon as possible. I have a Flex 2 front end that uses remote java objects to talk to the database. I have a Flex 2 DateFields form. The dates of these are stored in the datebase. However I need the dates to be stored exactly as users them selects regardless of the locale.

    What is happening at the moment is we are developing in Ireland and in selecting a date, filling an actionscript VO which is in turn transformed into a java VO (on a server in the United States) and when the date is stored in the database is one day before the date that we have selected. It seems that the flash player uses the locale with a time of midnight (GMT) users. When place the conversion to the EAST, it stores the date (GMT - 5), which causes the being Eve.

    I changed my flex code to set the date at 12: 00 time even if he converts and subtracts 5 hours it will always be the same date. But this does not work, it seems to work sometimes and not others and is very inconsistent. I can't understand why it works sometimes.

    Its makes me mental - someone has experienced this problem or did someone knows a solution PLEASE?
    Thank you

    I'm not very familiar with your specific question, but I wonder if a combination of store dates as the first milliseconds since midnight January 1, 1970, universal time, stored as a string and then when presenting the data are aware, locale would solve the problem.

  • Is anyone able to run Adobe CS5 with El Capitan now? I've read about problems with Illustrator and photoshop, but these seem to be in 2015 Octobe5. She improved at all? I need to upgrade that I am running an old OS v but I need to run CS5.

    I've read about problems with Illustrator and photoshop on EL Capitan, but these seem to be in October 2015. She improved at all? I need to upgrade that I am running an old OS v but I need to run CS5. Can not afford to go to CC. I have a Macbook Pro.

    CS5 and 10.11 are not supported and will never be supported by Adobe or Apple.

    However it works for some, more actually, but not all. There are sporadic problems with Illustrator, Photoshop seems to be the best. Do not expect an improvement and keep in mind that anyone from Adobe, Apple or anywhere else will fix it.

    Do a clean install

    Make sure you have the Apple Java

    h ttps://support.Apple.com/kb/DL1572?locale=en_US

    Make sure you have your serial number and if you are having problems with the serial number or the serialization however adobe of web server will not support your problem.

    update the application via photoshop.

  • C# binaryformatter.serialize without header?

    Hello

    I am a digitizer USB 5232 and streaming of data to disk based on the shipment of N.I. example "StreamToDisk.cs".  Streaming is going great.  The problem is that I need to read the data file resulting on a Linux platform in c ++.  So I try to decode the format of the file.  She seems to have a header at the top of the file that we may be able to live with, but prefers not to do so.  The data are streamed like this:

    binaryFormatter.Serialize (fileStream, records [0]. GetScaledData());

    which generates a complete file of double precision floating points preceded by a header.  If we try

    binaryFormatter.Serialize (fileStream, records [0]. GetScaledData(), null);

    We seem to have the same file with the same header.

    Anyone happen to know if we can only release the data by itself, without the header?  Alternatively, if we are to have the header, can someone tell me what are the benefits?  I enclose you an example of one of our data files to this post with the ".txt" extension, even if it is binary.  Thanks for any thoughts.

    Kind regards

    Penny

    Hello

    I think my question above is not as important as it seems.  The header contains 26 bytes and only can be read and discarded.  It would be good to know what the benefits are, or how to get rid of him, but it seems just as easy to dispense with it and ignore it.  Thank you.

    Kind regards

    Penny

  • TestStand 3.1 serialize/UnSerializeEx

    Hi all

    I am having some problems (mainly due to lack of understanding) with the serialization and deserialization, and then to a local Variable.

    I have two local variables, called 'start' and the other called "end". Both are identical types.

    Using sub LabVIEW, I'm trying to serialize the variable 'start' (content in lookupString) and then Délinéarise it in the variable 'end' (contained within ObjectName). Although it seems totally useless, the final code will serialize any given variable and save it to file. I will then have a separate vi to read from the file and Délinéarise it in a given variable.

    Pointers/advice much appreciated.

    Thank you

    Steve

    OK, I had some lunch took another look and found the problem.

    My UnserializeEx invoke node uses the bad reference Doh!

  • Problem TestLogon Ksoap.

    Hello everyone. I'm newbie e.

    I installed Ksoap library correctly and a simple helloworld work very well, but my task is to the identification of Pentecost username and password. My source code is as follows:

    package KsoapTestLogin;
    
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.*;
    
    import org.ksoap2.SoapEnvelope;
    import org.ksoap2.SoapFault;
    import org.ksoap2.serialization.SoapObject;
    import org.ksoap2.serialization.SoapSerializationEnvelope;
    import org.ksoap2.transport.HttpTransport;
    
    public class TestLogon extends UiApplication
    {
    
        public static void main(String args[])
        {
            TestLogon kst = new TestLogon();
            kst.enterEventDispatcher();
        }
    
        public TestLogon()
        {
            pushScreen(new kScreen());
        }
    } 
    
    class kScreen extends MainScreen
    {
        public LabelField lf_title;
        public RichTextField rf_results;
        public String results;
    
        public String Username = "Larry.Enderson";
        public String Password = "Password123";
    
        public MenuItem mi_runtest = new MenuItem("Hello World!",4390,10)
            {
                public void run()
                {
                    RunTest();
                }
            };
           public MenuItem testlogon = new MenuItem("Logon",4390,10)
               {
                public void run()
                {
                    TestLogon();
    
                }
            };
    
        protected void makeMenu(Menu menu,int instance)
            {
                menu.add(mi_runtest);
                super.makeMenu(menu,0);
    
                menu.add(testlogon);
                super.makeMenu(menu,0);
            }
    
        public kScreen()
        {
            super();
            LabelField title = new LabelField ("McKinneyRogers", LabelField.HCENTER| LabelField.USE_ALL_WIDTH);
            setTitle(title);
            lf_title = new LabelField("ACME");
            add(lf_title);
    
            rf_results = new RichTextField("Welcome");
            add(rf_results);
    
            results = "";        
    
        }        
    
        public void RunTest() {
    
            String serviceURL = "https://www2.missionleadership.com/mlv4developmentmastek/WS/Blackberry.asmx;deviceside=true";
            String serviceNamespace = "http://www2.missionleadership.com/";
            String serviceMethod = "HelloWorld";
            String SoapAction = "http://www.missionleadership.com/HelloWorld";
            SoapObject SoapObj = new SoapObject(serviceNamespace,serviceMethod);
              SoapObj.newInstance ();
              SoapObj.addProperty ("a", "5");
              SoapObj.addProperty ("b", "6");
    
              SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
              envelope.bodyOut = SoapObj;
              envelope.dotNet = true;
              envelope.implicitTypes = true;
              envelope.encodingStyle = "utf-8";
              envelope.enc = SoapSerializationEnvelope.ENC2001;
              envelope.xsd = SoapEnvelope.XSD;
              envelope.xsi = SoapEnvelope.XSI;
    
              //Build connection
              HttpTransport ht = new HttpTransport(serviceURL);
    
              //Initiate Connection
              Object response = null;
    
              try
              {
                ht.debug = true;
                ht.call (SoapAction, envelope);
                //response = envelope.getResponse().toString();
                response = envelope.getResponse();
                //response =(envelope.getResponse()).toString();
    
                System.out.println (envelope.bodyIn);
              }
              catch(SoapFault sfe)
              {
                  sfe.printStackTrace();
              }
              catch (Exception e)
              {
                System.out.println (e);
                response = e.toString();
              }
    
              rf_results.setText(response.toString());
        }
    
        public void TestLogon()
        {
            String serviceURL = "https://www2.missionleadership.com/mlv4developmentmastek/WS/Blackberry.asmx;deviceside=true";
            String serviceNamespace = "http://www2.missionleadership.com/";
            String serviceMethod = "TestLogon";
            String SoapAction = "http://www.missionleadership.com/TestLogon";
            SoapObject SoapObj = new SoapObject(serviceNamespace,serviceMethod);
            //SoapObject SoapObj = new SoapObject ("urn:iControl:LocalLB/VirtualServer", "get_list");
            SoapObj.newInstance ();
            SoapObj.addProperty("Username", Username);
            SoapObj.addProperty("Password", Password); 
    
            SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
            envelope.bodyOut = SoapObj;
            envelope.dotNet = true;
            envelope.implicitTypes = true;
            envelope.encodingStyle = "utf-8";
            envelope.enc = SoapSerializationEnvelope.ENC2001;
            envelope.xsd = SoapEnvelope.XSD;
            envelope.xsi = SoapEnvelope.XSI;
    
            //Build connection
            HttpTransport ht = new HttpTransport(serviceURL);
    
            ht.setXmlVersionTag("");
            //Initiate Connection
            Object response = "nope";
    
            try
                {
                    ht.debug = true;
                    ht.call (SoapAction, envelope);
                    //response = envelope.getResponse().toString();
                    response = envelope.getResponse();
                    //response =(envelope.getResponse()).toString();
                    System.out.println (envelope.bodyIn);
                }
            catch(SoapFault sfe)
                {
                    sfe.printStackTrace();
                }
            catch (NullPointerException e)
                {
                    System.out.println (e);
                    response = e.toString();
                }
            catch (Exception e)
                {
                    System.out.println (e);
                    response = e.toString();
                }
    
        rf_results.setText(response.toString());
    
        }
    
    }
    

    This correctly program to connect to the server, but the site response cannot be the answer.

    Sorry pals. I fix my problem. The problem coming up with space names wrong... I have wrong address on namespace and the PPA exploded...

  • Star Wars: Republic Commando. Worked on Vista, the problem is that when the game tries to load the first mission, he leaves the game

    Star Wars: Republic Commando. Worked on Vista, the problem is that when the game tries to load the first mission (the only one available for a new player) outputs of the game and gives the following. I hope this info is useful to anyone who is willing to take the time to help me. Thank you-Zachert45

    Details:

    Problem event name: APPCRASH

    Application name: SWRepublicCommando.exe

    Application version: 0.0.0.0

    Application timestamp: 41f707e4

    Fault Module name: StackHash_1a02

    Fault Module Version: 0.0.0.0

    Fault Module Timestamp: 00000000

    Exception code: c0000005

    Exception Offset: 6 c 707544

    OS version: 6.1.7601.2.1.0.256.48

    Locale ID: 1033

    Information additional 1: 1a 02

    More information 2: 1a022ea3469ead417de7f3ac704042e3

    3 more information: aa4f

    Additional information 4: aa4f8516a5b4c2bae31f69214dbeb837

    In addition, the game made a newspaper that it lasted, if an error occurred. NOTE: Windows verson shown here was one of the many tests bring made, all ended the same way.

    Uninitialized: open the log file, 08/09/12 19:20:48
    Uninitialized: name subsystem initialized
    Init: Detected: Windows NT 6.0 (Build: 6000)
    Init: Build: 139
    Init: Version of the engine: 2226
    Init: Update: January 25, 2005
    Init: command line:
    Init: Base Directory: C:\Program Files (x 86) \LucasArts\Star Wars Republic Commando\GameData\System\
    Init: Character set: ANSI
    Journal: Related to Window.dll
    Journal: Related to Core.dll
    Journal: Related to frengine.dll
    Init: Subsystem of the initialized object
    Init: Computer: ZACHERT45HP
    Init: User: Zachert45
    Init: Of CPU Page size = 4096, processors = 4
    Init: CPU detected: type processor PentiumPro (GenuineIntel)
    Init: CPU features: FPU CMov EAP RDTSC MMX, SSE
    Init: CPU @ 2694 MHz
    Init: Total memory: Phys = 1048575 K Pagef = 2097151 K Virt = 2097024K
    Init: Working together: 32000 / 159000
    Init: Physical memory: 1023 MB
    Init: D3D Device: video memory onboard: 1008
    Caution: Charge Dynamics Engine.GameEngine
    Journal: Bound to CTGame.dll
    Journal: Bound to Gameplay.dll
    Journal: Related to IpDrv.dll
    Journal: Related to XInterface.dll
    Journal: Related to XGame.dll
    Init: Unreal engine initialized
    Journal: Related to WinDrv.dll
    Init: Client initialized
    Journal: Related to D3DDrv.dll
    Init: Direct3D detected adapters:
    Journal: aticfx32.dll/Radeon HD 6470 M
    Init: D3D Driver: MaxTextureBlendStages = 8
    Init: D3D Driver: MaxSimultaneousTextures = 8
    Init: D3D Driver: MaxActiveLights = 8
    Init: D3D Driver: MaxPrimitiveCount = 5592405
    Init: D3D Driver: MaxVertexIndex = 16777215
    Init: D3D Driver: MaxStreams = 16
    Init: D3D Driver: MaxStreamStride = 508
    Init: D3D Driver: MaxVertexShaderConst = 256
    Init: D3D Driver: VertexShaderVersion = 1.1
    Init: D3D Driver: PixelShaderVersion = 1.4
    Init: D3D Driver: support AGP detected
    Init: D3D Driver: using w-pixel fog
    Init: D3D Driver: trilineaires media
    Init: D3D Driver: supports BLENDDIFFUSEALPHA
    Init: D3D Driver: Supports LOD bias
    Init: D3D Driver: Supports Z polarization
    Init: D3D Driver: supports D3DTOP_ADDSIGNED2X
    Init: D3D Driver: supports D3DTOP_BUMPENVMAP
    Init: D3D Driver: supports D3DTOP_BUMPENVMAPLUMINANCE
    Init: D3D Driver: supports D3DTOP_DOTPRODUCT3
    Init: D3D Driver: supports D3DTOP_MODULATEALPHA_ADDCOLOR
    Init: D3D Driver: supports D3DTOP_MODULATECOLOR_ADDALPHA
    Init: Unreal Engine Direct3D support - internal version: SB3
    Init: D3D Device: szDriver = aticfx32.dll
    Init: D3D Device: szDescription = Radeon HD 6470 M
    Init: D3D Device: wProduct = 8
    Init: D3D Device: wVersion = 17
    Init: D3D Device: wSubVersion = 10
    Init: D3D Device: wBuild = 1065
    Init: D3D Device: dwVendorId = 4098
    Init: D3D Device: dwDeviceId = 26464
    Init: D3D Device: dwSubSysId = 370806844
    Init: D3D Device: dwRevision = 0
    Init: D3D detected: ATI video card
    Init: D3D Device: using cubemap [with mipmaps]
    Caution: Charge Dynamics BumpTex.StaticEnvmaps.StaticDiffuse
    Caution: Charge Dynamics BumpTex.StaticEnvmaps.StaticSpecularMatte
    Caution: Charge Dynamics BumpTex.StaticEnvmaps.StaticSpecularDull
    Caution: Charge Dynamics BumpTex.StaticEnvmaps.StaticSpecularPolished
    Caution: Charge Dynamics BumpTex.StaticEnvmaps.StaticSpecularShiny
    Journal: (Karma): Karma from beginning of game.
    Journal: (Karma): creation of MeAssetDB.
    Journal: (Karma): loading: ambient.ka
    Journal: (Karma): loading: clone.ka
    Journal: (Karma): loading: droid.ka
    Journal: (Karma): loading: geonosian.ka
    Journal: (Karma): loading: rasanimprops.ka
    Journal: (Karma): loading: trandoshan.ka
    Journal: (Karma): loading: turrets.ka
    Journal: (Karma): loading: vehicles.ka
    Journal: (Karma): loading: wookiee.ka
    Journal: (Karma): finished creating MeAssetDB (27 properties).
    Log: Watermark memory pre load: 0
    Journal: Preload for entry Stats: 58 opened, looking for 269, dumpsters 954, bed 46950 KB / 4329, serialize 44419 KB / 1615039
    Journal: LoadMap: entry 08/09/12 19:20:49
    Log: Watermark memory pre load: 1
    Caution: Charge Dynamics Entry.myLevel
    Journal: Loading times for the entry: 0.000 sec total, 0.000 app
    Connection: Time entry init actor coll: 0.000 sec total, 0.000 app
    Journal: Play class is "GameInfo."
    Newspaper: The level is level Entry.myLevel
    Newspaper: * WARNING - paths is maybe NOT INVALID *.
    Journal: What is the Entry.myLevel level to play (0) 08/09/12 19:20:49...
    ScriptLog: InitGame:
    ScriptLog: Mutator database is Entry.InGameTempName
    ScriptLog: GameInfo::InitGame: bEnableStatLogging False
    ScriptLog: MusicStat is InGameTempName
    Connection: Time entry init BeginPlay: 0.000 sec total, 0.000 app 08/09/12 19:20:49
    Log: Watermark memory Post charge: 2
    Connection: Time entry init: 0.000 sec total, 0.000 app
    Journal: Entry file load stats: opens 2, looking for 4, 9 trucks, 31KO bed / 16, serialize 7KO / 2092
    Connection: Exit LoadMap 08/09/12 19:20:49
    Caution: Charge Dynamics UDebugMenu.UDebugRootWindow
    Caution: Charge Dynamics UDebugMenu.UDebugBlueLookAndFeel
    Journal: Related to ALAudio.dll
    Init: AL_VENDOR: Creative Labs Inc.
    Init: AL_RENDERER: software
    Init: AL_VERSION: OpenAL 1.0
    Init: AL_EXTENSIONS: EAX 2.0, EAX, EAX, EAX 4.0 3.0 unified and EAX - AC3
    Journal: 16 Sources AL Audio created!
    Init: ALAudio: initialized subsystem.
    ScriptLog: 255 team
    Journal: (Karma): KInitSkeletonKarma: framework, but not of the world.
    Init: System initialized to input InGameTempName
    Journal: Open window
    Journal: Couldn't put the window in the foreground.
    Journal: Enter SetRes: 1024 x 768 full screen 0
    Journal: Using back buffer 22 (32-bit) format
    Journal: Using format 77 (32-bit) depth buffer
    Journal: Creation of device
    Init: D3D Driver: CreateDevice: will use the hardware transformation and lighting.
    Init: D3D Driver: CreateDevice: will use hardware vertex processing
    Journal: Create context of the EMI.
    Init: Init game engine time: seconds 1,366000 total 1.014007 app
    Journal: Game init load stats: opens 2, looking for 11, 61 Skips, bed 445 KB / 141, serialize 268 KB / 190555
    ScriptLog: MenuOpen: XInterfaceCTMenus.CTStartPCMenu (RESET)
    Caution: Charge Dynamics GUIContent.Menu.RC_title_bg
    Journal: StartMovie with m_PlaybackRect (0, 0), (1024, 768)
    Connection: Start time: 1,177000 seconds
    Newspapers: Lots static mesh: 0 bytes of vertex, 0 bytes index
    Journal: StartMovie with m_PlaybackRect (0, 0), (1024, 768)
    Journal: Precaching: Entry.LevelInfo0
    Journal: Allocation of the dynamic index buffer 16384 bytes.
    Log: Precache time geometry: 0.006 sec total, 0.000 app
    Journal: Texture precache time: 0.009 s total, 0.000 app
    Journal: Statistics of load precache entry: opens 5 to 0, seeks 10 jumps, bed 1512 KB / 28, serialize 1496 KB / 142
    Journal: 131072 bytes dynamic vertex buffer Allocation.
    Caution: Charge Dynamics XInterfaceCTMenus.CTMenuMain
    Journal: GotoMenu (InGameTempName)
    Journal: StartMovie
    Journal: CallMenu (InGameTempName)
    Journal: GotoMenu (InGameTempName)
    Journal: CloseMenu()
    Journal: Browse: PRO? Name = zach? Class = CTCharacters.PlayerCommando? Team = 255 08/09/12 19:21
    Log: Watermark memory pre load: 2
    LOG: Preload PRO Stats: 2 opens, looking for the 14, 15 jumps, bed 1315 KB / 56, serialize 1289 KB / 23365
    Journal: LoadMap: new level of loading. Pause/stop implementing caching of files.
    Journal: Unloading: PRO package
    Journal: LoadMap: PRO? Name = zach? Class = CTCharacters.PlayerCommando? Team = 255 08/09/12 19:21
    ScriptLog: stop menu movie
    Journal: Garbage collection
    Journal: Serving garbage
    Journal: Garbage: objects: 23768-> 23528; REF.: 232574
    Journal: FName High Watermark: 33191
    Journal: Number current FName: 30109
    Journal: FName slots available: 3082
    Journal: UObject High Watermark: 23774
    Log: Watermark memory pre load: 3
    Caution: Charge Dynamics PRO.myLevel
    Journal: 131072 bytes dynamic vertex buffer Allocation.
    Journal: (Karma): initialization Karma for the level.
    Journal: (Karma): Autodetecting CPU SSE
    Journal: (Karma): using SSE optimizations
    Newspapers: Loading PRO time: 0,356 total sec, 0,328 app
    Connection: Hour PRO init actor coll: 0.000 sec total, 0.000 app
    Journal: Play class is 'CTGameInfoSP '.
    Newspaper: The level is level PRO.myLevel
    Journal: What is the PRO.myLevel level to play (0) 08/09/12 19:21...
    ScriptLog: InitGame?: Name = zach? Class = CTCharacters.PlayerCommando? Team = 255
    ScriptLog: Mutator is PRO. InGameTempName
    ScriptLog: GameInfo::InitGame: bEnableStatLogging False
    ScriptLog: MusicStat is InGameTempName
    WARNING: PlayAnim: not found "ActionBreathe" sequence for the mesh "CloneBoy."
    ScriptWarning: PawnFactory PRO. PawnFactory2 (function CTGame.Factory.PostBeginPlay:0058) Factory PRO. PawnFactory2 has no prototype!
    WARNING: PlayAnim: not found "ActionBreathe" sequence for the mesh "GunshipBall."
    ScriptWarning: PawnFactory PRO. PawnFactory0 (function CTGame.

    I read the fix below on three different forums.
    Seems to work for some. Especially those with Pentium cpu.

    "In the main Menu, select Options-> graphics. Variation in the quality of the low relief map. When I have it on medium or high, it crashes. »

    The game was released in ' 05, a bad year for compatibility issues with different
    DRM and Win7. If the problem is with the Launcher, then a noCD fix would be a good solution.
    http://MegaGames.com/games/Star-Wars-Republic-Commando

    .

  • problem with tabs and filter the lines of memory cache

    Dear all I have a problem with the oaf page has two tabs under two of them consists of a table and add the button to the row. Second tab, it's a detail of the first tab, which means that each line in the first tab may refer to one or more lines in the second tab, my problem is when I add the line in the first tab and go to the second tab to add lines to this line of the display of the page added all lines not only the matching lines.

    my code:

    1 - controller

    When press Tab of Lot lines (partial action)
    If (goLotsTab".equals (pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM))) {" "}

    String trxLineId = "38";//row.getAttribute("TrxLineId").toString(); "
    AddLotParam serializable [] = {trxLineId};
    am.invokeMethod ("getTrxLot", addLotParam);
    }
    What press Add button lines of lots (partial action)
    If (addLot".equals (pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM))) {" "}
    String trxLineId = "38"; row.getAttribute("TrxLineId").toString ();
    AddLotParam serializable [] = {trxLineId};
    am.invokeMethod ("addTrxLot", addLotParam);
    }

    When press Add a tab line (partial action)
    If (addLine".equals (pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM))) {" "}
    am.invokeMethod ("addLine", params);
    }

    Methods 2 - am

    public void getTrxLot (String pTrxLineId)
    {
    OAViewObject vo = (OAViewObject) getXXSiteLotsVO1 ();
    LinVo OAViewObject = (OAViewObject) getXXSiteLineVO2 ();

    Line linRow = linVo.getFirstFilteredRow ("SelectLineFlag", "Y");
    pTrxLineId = linRow.getAttribute("TrxLineId").toString ();

    If (!) VO.isPreparedForExecution ())
    //{
    try {}
    String existringWhereClause = vo.getWhereClause ();
    vo.setWhereClauseParams (null);
    vo.setWhereClause("trx_line_id=:1");
    vo.setWhereClauseParam (0, (pTrxLineId) Number);
    vo.executeQuery ();
    vo.setWhereClauseParams (null);
    vo.setWhereClause (existringWhereClause);
    }
    catch (Exception exceptionl)
    {
    throw OAException.wrapperException (exceptionl);
    }

    // }
    following line is commented, but I think that it will contribute to the memory of the filter
    cached data to be mapped.

    Rank [] lotRows = vo.getFilteredRows ("TrxLineId1", pTrxLineId);
    }

    /////////////////////////////////////////////////////////////////
    public void addTrxLot (String pTrxLineId)
    {
    OAViewObject vo = (OAViewObject) getXXSiteLotsVO1 ();
    LinVo OAViewObject = (OAViewObject) getXXSiteLineVO2 ();

    Line linRow = linVo.getFirstFilteredRow ("SelectLineFlag", "Y");
    pTrxLineId = linRow.getAttribute("TrxLineId").toString ();

    If (vo.getFetchedRowCount () == 0) {}
    vo.setMaxFetchSize (0);
    // }

    VO. Last();
    VO. Next();
    Line = vo.createRow ();
    row.setAttribute ("TrxLineId", pTrxLineId);
    vo.insertRow (row);
    row.setNewRowState (Row.STATUS_INITIALIZED);
    }

    OK, I'll share my latest code using other

    public void createTransaction() {}

    OAViewObjectImpl vo = getXXSiteHeaderVO1();

    If (! vo.isPreparedForExecution ()) {}

    vo.executeQuery ();

    }

    If (vo.getFetchedRowCount () == 0)

    {

    vo.setMaxFetchSize (0);

    }

    String status = "incomplete."

    OADBTransaction txn = (OADBTransaction) getOADBTransaction ();

    • oracle.jbo.domain.Date currentDate = txn.getCurrentUserDate ();

    Line = vo.createRow ();

    row.setAttribute ("TrxStatus", status);

    1. row.setAttribute ("TrxDate", currentDate);

    vo.insertRow (row);

    row.setNewRowState (Row.STATUS_INITIALIZED);

    }

    {} public void addLine (String pTrxHeeaderId)

    OAViewObject vo = (OAViewObject) this.getXXSiteTrxVL1 () .getDestination ();

    VO. Last();

    VO. Next();

    Line = vo.createRow ();

    int linNum = vo.getFetchedRowCount () + 1;

    row.setAttribute ("TrxHeaderId", pTrxHeeaderId);

    row.setAttribute ("LineNum", String.valueOf (linNum));

    row.setAttribute ("SelectLineFlag", "Y");

    vo.insertRow (row);

    row.setNewRowState (Row.STATUS_INITIALIZED);

    }

    Public Sub getTrxLot()

    {

    LinVo OAViewObject = (OAViewObject) this.getXXSiteTrxVL1 () .getDestination ();

    Line linRow = linVo.getFirstFilteredRow ("SelectLineFlag", "Y");

    String pTrxLineId = linRow.getAttribute("TrxLineId").toString ();

    linVo.setCurrentRow (linRow);

    OAViewObject vo = (OAViewObject) this.getXXSiteLineLotsVL1 () .getDestination ();

    }

    Public Sub addTrxLot()

    {

    LinVo OAViewObject = (OAViewObject) this.getXXSiteTrxVL1 () .getDestination ();

    Line linRow = linVo.getFirstFilteredRow ("SelectLineFlag", "Y");

    String pTrxLineId = linRow.getAttribute("TrxLineId").toString ();

    linVo.setCurrentRow (linRow);

    OAViewObject vo = (OAViewObject) this.getXXSiteLineLotsVL1 () .getDestination ();

    VO. Last();

    VO. Next();

    Line = vo.createRow ();

    row.setAttribute ("TrxLineId", pTrxLineId);

    row.setAttribute ("RowKey", new oracle.jbo.domain.Number (1));

    vo.insertRow (row);

    row.setNewRowState (Row.STATUS_INITIALIZED);

    }

  • Problem with PPR in a table advanced with the insertion of several lines in create the page using 'add a new button '.

    Hello experts,

    I created a page that contains an array of advanced, 6-7fields (including a poplist column)

    Whenever I have add a new using the line add new line button, I get a null pointer exception.

    Code in Scenario1.


    Public Sub handleCurrencyChangeEvent()

    {

    PVO OAViewObject = (OAViewObject) findViewObject ("xxCurrencyPVO1");

    Line OARow = (OARow) pvo.first ();

    OAViewObject dtlVO = (OAViewObject) findViewObject ("xxEcreditCardDtlVO1");

    OARow dtlRow = (OARow) dtlVO.getCurrentRow ();

    String currency = (String) dtlRow.getAttribute ("CurrencyCode");    / / NULL POINTER EXCEPTION

    If ((currency == null) |) ("AED".equals (currency)))

    {

    row.setAttribute ("ExchangeRateTypeRender", Boolean.FALSE);

    row.setAttribute ("ExchangeRateDateRender", Boolean.FALSE);

    row.setAttribute ("ExchangeRateRender", Boolean.FALSE);

    }

    on the other

    {

    row.setAttribute ("ExchangeRateTypeRender", Boolean.TRUE);

    row.setAttribute ("ExchangeRateDateRender", Boolean.TRUE);

    row.setAttribute ("ExchangeRateRender", Boolean.TRUE);

    }

    }

    Public Sub initPVO()

    {

    OAViewObject appPropsVO = (OAViewObject) findViewObject ("xxCurrencyPVO1");

    If (appPropsVO! = null)

    {

    If (appPropsVO.getFetchedRowCount () == 0)

    {

    appPropsVO.setMaxFetchSize (0);

    appPropsVO.executeQuery ();

    appPropsVO.insertRow (appPropsVO.createRow ());

    Line OARow = (OARow) appPropsVO.first ();

    row.setAttribute ("RowKey", new Number (1));

    }

    }

    handleCurrencyChangeEvent();    / / If I comment on this call, there will be no null pointer when I click on the button Add a new rank and PPR will not be the first line when I select the poplist.                 

    }

    Public Sub createDetailRow()

    {

    String hdrId;

    OAViewObject hdrvo1 = (OAViewObject) getxxEcreditCardHdrVO1 ();

    OAViewObject dtlvo = (OAViewObject) getxxEcreditCardDtlVO1 ();

    Initialize and create a line of VO

    If (! dtlvo.isPreparedForExecution ())

    {

    dtlvo.setMaxFetchSize (0);

    dtlvo.executeQuery ();

    }

    Line dtlrow = dtlvo.createRow ();

    dtlvo.executeQuery ();

    int count = dtlvo.getRowCount ();

    dtlvo.insertRowAtRangeIndex (count, dtlrow);

    Development of the sequence for the number of request *.

    Number of dtlseq = getOADBTransaction () .getSequenceValue ("xxdm. XXDMI_ECREDIT_CARD_DTL_SEQ");

    hdrId = hdrvo1.getCurrentRow ().getAttribute("CreditCardHdrId").toString (); mind vo

    dtlrow.setAttribute ("CreditCardHdrId", hdrId);

    dtlrow.setAttribute ("CreditCardLineId", dtlseq);

    dtlrow.setAttribute ("LineNumber", count + 1);

    End of sequence generation *.

    dtlrow.setAttribute ("CurrencyCode", "AED");

    String currency = (String) dtlrow.getAttribute ("CurrencyCode");

    System.out.println ("CurrencyCode:" + currency);

    dtlrow.setNewRowState (Row.STATUS_INITIALIZED);

    } / / end createDetailRow()

    ' Public Sub processFormRequest (pageContext OAPageContext, OAWebBean webBean)

    {

    super.processFormRequest (pageContext, webBean);

    OAApplicationModule am = pageContext.getApplicationModule (webBean);

    Event string = pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM);

    * Treatment add line button *.

    If ((ADD_ROWS_EVENT. Equals (Event)) & & "AdvTblRN".equals (pageContext.getParameter ("source"))) ".

    {

    am.invokeMethod ("createDetailRow", null);

    am.invokeMethod ("initPVO");

    } //**End add row button *.

    otherwise if

    ("currCodeChangeEvent".equals (pageContext.getParameter (OAWebBeanConstants.EVENT_PARAM)))

    {

    am.invokeMethod ("handleCurrencyChangeEvent");

    }

    ===========================================================================================================================

    Could please help what is wrong in the code, I followed all the steps as stated in the guide, but the table advance, the problem starts whenever I click on the button Add a new row for the creation of new line.

    I couldn't understand what was wrong with the code.

    Thanks in advance,

    Suman

    Suman,

    A few points:

    1. Why do you call handleCurrencyChangeEvent in the event to add a line? Simply set the useful, likely of the values in the line it himself.

    ex:-instead of calling the handleCurrenyChange method, simply add the below lines inside the createDetailRow()

    dtlrow.setAttribute ("ExchangeRateTypeRender", Boolean.FALSE);

    dtlrow.setAttribute ("ExchangeRateDateRender", Boolean.FALSE);

    dtlrow.setAttribute ("ExchangeRateRender", Boolean.FALSE);

    2. it looks like you have on the field of the currency and that fireAction handleCurrencyChangeEvent action method is called, right?

    Instead of using dtlVo.getCurrentRow, use the code below:

    public void handleCurrencyChangeEvent(String eventRowSourceParam)
      {
      OAViewObject pvo = (OAViewObject)findViewObject("xxCurrencyPVO1");
      OARow row = (OARow)pvo.first();
    
      OAViewObject dtlVO = (OAViewObject)findViewObject("xxEcreditCardDtlVO1");
    
      //OARow dtlRow = (OARow)dtlVO.getCurrentRow();
      OARow dtlRow = (OARow)this.findRowByRef(eventRowSourceParam);
    
      String  currency = (String)dtlRow.getAttribute("CurrencyCode");    // NULL POINTER EXCEPTION
    
      if ((currency == null) || ("AED".equals(currency)))
      {
      row.setAttribute("ExchangeRateTypeRender", Boolean.FALSE);
      row.setAttribute("ExchangeRateDateRender", Boolean.FALSE);
      row.setAttribute("ExchangeRateRender", Boolean.FALSE);
      }
      else
      {
      row.setAttribute("ExchangeRateTypeRender", Boolean.TRUE);
      row.setAttribute("ExchangeRateDateRender", Boolean.TRUE);
      row.setAttribute("ExchangeRateRender", Boolean.TRUE);
      }
      }
    

    In the controller:

    if((ADD_ROWS_EVENT.equals(event)) && "AdvTblRN".equals(pageContext.getParameter("source")) )
    {
      am.invokeMethod("createDetailRow",null);
      am.invokeMethod("initPVO");
    } //**End Add Row Button**
    else if ("currCodeChangeEvent".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM)))
    {
      String eventRowSourceParam = pageContext.getParameter(EVENT_SOURCE_ROW_REFERENCE);
      Serializable[] params = {eventRowSourceParam};
        Class[] paramTypes    = {String.class};
      am.invokeMethod("handleCurrencyChangeEvent",params, paramTypes);
    }
    

    3. Why do you call initPVO when it is clicked on the Add line? Are you calling not just in the PR?

    You could call it once in the PR and let. When you call it PR, you may need to remove the handleCurrencyChangeEvent of this method call.

    See you soon

    AJ

  • 117 - the network problem

    Hi people,

    I have need a help, hacks and ideas...

    I try to download some Apps CC with CC Desktop App 3.8.0.310.

    Kids come without any problem, Xperience Design and Lightroom.

    The Big ones, only error 117, Photoshop, Illustrator, and Muse. The exception is InDesign, no problem to download.

    Before that, I have already run the AdobeCreativeCloudCleanerTooll, killed the process and eliminate any folder from Adobe, in every library in my OS El Captain (user and system)

    I think that all of a sudden the wall I don't know what to do.

    The option to change the network works. (I try to download through 4 G mobile phone)

    Accusing my internet provider is a little silly, since I have no problem to download applications of first instance of the Adobe Web site, do not use CreativeCloudInstaller...

    My logs are below...

    See you soon...

    Install Log

    02/09/16 17:14:53:719 | [INFO] |  | HDSetup | HDSetup | AppContext |  | HDSetup | 42912 | The START Adobe installer *.

    02/09/16 17:14:53:719 | [INFO] |  | HDSetup | HDSetup | AppContext |  | HDSetup | 42912 | Adobe installation version: 3.8.0.310

    02/09/16 17:14:56:158 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Domestic HdpimCreateSession

    02/09/16 17:14:56:158 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Enter "createHDPIMSession".

    02/09/16 17:14:56:158 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | new session created "AC2A9118-EC66-40AF-AA0D-A06D6E2FE0B6"

    02/09/16 17:14:56:158 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Out of hdpimCreateSession, the new session ID is "AC2A9118-EC66-40AF-AA0D-A06D6E2FE0B6".

    02/09/16 17:14:56:174 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Inside hdpimInstallProduct with request <? XML version = "1.0" encoding = "UTF-8" standalone = 'no '? >

    < DriverInfo >

    < ProductInfo >

    < SAPCode > KBRG < / SAPCode >

    < CodexVersion > 6.3 < / CodexVersion >

    64 osx10 < platform > < / platform >

    < BuildVersion > 6.3.0.177 < / BuildVersion >

    < dependency >

    < dependency >

    < SAPCode > ACR < / SAPCode >

    < CodexVersion > 9.6.1 < / CodexVersion >

    64 osx10 < platform > < / platform >

    < BuildVersion > 9.6.1.147 < / BuildVersion >

    < / dependence >

    < / dependencies >

    < / ProductInfo >

    < RequestInfo >

    < ClientWorkingDirectory >/tmp/DBACF7BA-1F04-4A54-B71B-32F554C6BC34 < / ClientWorkingDirectory >

    en_US < InstallLanguage > < / InstallLanguage >

    < InstallDir > < / InstallDir >

    < PackageServiceURL > https://prod-rel-FFC-CCM.oobesaas.Adobe.com/Adobe-FFC-external/core/v2/applications < / PackageServiceURL >

    CreativeCloud_v3_8 < x-api-key > < / x-api-key >

    < prefMigration > FALSE < / prefMigration >

    < PreserveInstallData > true < / PreserveInstallData >

    C4 /tmp/DBACF7BA-1F04-4A54-B71B-32F554C6BC34/70062718-8139-4E63-8A1B-34DEBE7946 < ConflictXML > < / ConflictXML >

    < / RequestInfo >

    < / DriverInfo >

    02/09/16 17:14:56:198 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Out of hdpimInstallProduct with the State '0 '.

    02/09/16 17:14:57:862 | [INFO] |  | HDSetup | OOBEUtils | FileUtils |  | OOBEUtils | 42998. Successfully deleted the path directory: / tmp/48E906EC-807B-43B4-9EB7-91BC6CBCC58E. Recursive: 1

    02/09/16 17:14:59:396 | [INFO] |  | HDSetup | OOBEUtils | FileUtils |  | OOBEUtils | 42998. Successfully deleted the path directory: / tmp/52B0325F-94A2-47F6-B4A4-31F79F39489E. Recursive: 1

    02/09/16 17:14:59:396 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Fill to install request JSON data

    02/09/16 17:14:59:401 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Fill to install request JSON data

    02/09/16 17:14:59:442 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Redaction of data for product-"bridge CC (2015).

    02/09/16 17:14:59:442 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Redaction of data for product-"Adobe Camera Raw"

    02/09/16 17:14:59:466 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Sorting of packages to install

    02/09/16 17:14:59:466 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Sorting of packages to install

    02/09/16 17:14:59:467 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Package (name: AdobeBridge6.3 - mul Version: 6.3.0.177) selected for installation

    02/09/16 17:14:59:469 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Package (name: AdobeBridge6.3 - en_US Version: 6.3.0.176) selected for installation

    02/09/16 17:14:59:484 | [INFO] |  | HDSetup | HDPIM | ApplicationManager |  | HDPIM | 42998. Package (name: AdobeCameraRawProfile8.0All Version: 9.6.0.126) selected for installation

    02/09/16 17:14:59:485 | [INFO] |  | HDSetup | HDPIM | TaskManager.  | HDPIM | 43021 | From task "DOWNLOAD" package (name: AdobeCameraRawProfile8.0All Version: 9.6.0.126)

    02/09/16 17:14:59:486 | [INFO] |  | HDSetup | HDPIM | Believing |  | HDPIM | 43021 | Package (name: AdobeCameraRawProfile8.0All Version: 9.6.0.126) download info - DownloadSize: 226061169, Downloadpath: ' / tmp/A32D2794-F9A8-4104-AD7E-EFB186F07929 ".

    02/09/16 17:15:39:188 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:42:033 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:45:031 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:47:031 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43042 | Segment size 68 2097152 is invalid

    02/09/16 17:15:47:455 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:49:488 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:49:668 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43042 | Segment size 68 2097152 is invalid

    02/09/16 17:15:50:417 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43041 | Segment size 75 2097152 is invalid

    02/09/16 17:15:51:495 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:52:297 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43042 | Segment size 68 2097152 is invalid

    02/09/16 17:15:53:345 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43041 | Segment size 75 2097152 is invalid

    02/09/16 17:15:53:641 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:54:652 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43042 | Segment size 68 2097152 is invalid

    02/09/16 17:15:55:098 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43041 | Segment size 75 2097152 is invalid

    02/09/16 17:15:55:898 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:57:083 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43041 | Segment size 75 2097152 is invalid

    02/09/16 17:15:57:240 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43039 | Segment size 68 2097152 is invalid

    02/09/16 17:15:57:347 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:15:58:831 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43041 | Segment size 75 2097152 is invalid

    02/09/16 17:15:58:908 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43039 | Segment size 68 2097152 is invalid

    02/09/16 17:15:59:975 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:16:01:129 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43039 | Segment size 68 2097152 is invalid

    02/09/16 17:16:01:378 | [ERROR] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43040 | Segment size 58 2097152 is invalid

    02/09/16 17:16:02:230 | [WARNING] |  | HDSetup | HDSetup | PIMHelperInterface | PDMWorkflowManager |  | 43051 | A mistake renewable user occurred when downloading the file. errotType = 60 extendedErrorCode = 417

    02/09/16 17:16:02:239 | [WARNING] |  | HDSetup | HDSetup | PIMHelperInterface | PackageDownloadManager |  | 43024 | Manifest file could not be downloaded

    02/09/16 17:16:02:283 | [FATAL] |  | HDSetup | HDPIM | Believing |  | HDPIM | 43021 | Unrecoverable error '117' occurred in download

    02/09/16 17:16:02:284 | [FATAL] |  | HDSetup | HDPIM | Believing |  | HDPIM | 43021 | Error has occurred in the download package (name: AdobeCameraRawProfile8.0All Version: 9.6.0.126). Error code: '117'

    02/09/16 17:16:02:494 | [INFO] |  | HDSetup | HDSetup | AppContext |  | HDSetup | 42997 | Exit code: 117

    -------------------------------------- Summary --------------------------------------

    -fatal error 2, 0 error (s), 0 warning (s)

    FATAL: Fatal Error ' 117' occurred in download

    FATAL: An error has occurred in the download package (name: AdobeCameraRawProfile8.0All Version: 9.6.0.126). Error code: '117'

    -------------------------------------------------------------------------------------

    02/09/16 17:16:02:619 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Inside hdpimControlProgress query, type '-1559477484'.

    02/09/16 17:16:02:619 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Output of hdpimControlProgress with the State '0 '.

    02/09/16 17:16:03:061 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Domestic HdpimTerminateSession

    02/09/16 17:16:03:062 | [INFO] |  | HDSetup | HDPIM | HDPIMSessionManager |  | HDPIM | 42915 | Release of hdpimTerminateSession, fenced with success the session ' 0'

    02/09/16 17:16:03:068 | [INFO] |  | HDSetup | HDSetup | AppContext |  | HDSetup | 42912 | Exit code: 117

    -------------------------------------- Summary --------------------------------------

    -fatal error 2, 0 error (s), 0 warning (s)

    FATAL: Fatal Error ' 117' occurred in download

    FATAL: An error has occurred in the download package (name: AdobeCameraRawProfile8.0All Version: 9.6.0.126). Error code: '117'

    -------------------------------------------------------------------------------------

    02/09/16 17:16:03:069 | [INFO] |  | HDSetup | HDSetup | AppContext |  | HDSetup | 42912 | *************************  END Adobe Setup  *************************

    Journal of PDApp

    02/09/16 17:09:53:998 | [INFO] |  | USS | OPM | P7Native |  |  | 5228 | Default user found for client_id: CreativeCloud_v3_8

    02/09/16 17:15:24:160 | [INFO] |  | USS | OPM | P7Native |  |  | 5228 | Performing default user of fetch for clientID...

    02/09/16 17:15:24:181 | [INFO] |  | USS | OPM | IMSLib |  |  | 5228 | Running fetchDefaultUserInfoForClientId...

    02/09/16 17:15:24:181 | [INFO] |  | USS | OPM | OPM |  |  | 5228 | _opm_handle_OPDReturnedStatus called with opdStatus like: 0

    02/09/16 17:15:24:181 | [INFO] |  | USS | OPM | OPM |  |  | 5228 | size of the return value: 33 in opm_getValueForKey

    02/09/16 17:15:24:181 | [INFO] |  | USS | OPM | OPM |  |  | 5228 | _opm_handle_OPDReturnedStatus called with opdStatus like: 0

    02/09/16 17:15:24:181 | [INFO] |  | USS | OPM | OPM |  |  | 5228 | Successfully recovered value of opm domain: subdomain IMSLib: CSServiceMap key: CreativeCloud_v3_8 to opm_getValueForKey

    02/09/16 17:15:24:181 | [INFO] |  | USS | OPM | OPM |  |  | 5228 | _opm_handle_OPDReturnedStatus called with opdStatus like: 0

    02/09/16 17:15:24:182 | [INFO] |  | USS | OPM | OPM |  |  | 5228 | size of the return value: 6038 in opm_getValueForKey

    02/09/16 17:15:24:182 | [INFO] |  | USS | OPM | OPM |  |  | 5228 | _opm_handle_OPDReturnedStatus called with opdStatus like: 0

    02/09/16 17:15:24:182 | [INFO] |  | USS | OPM | OPM |  |  | 5228 | Successfully recovered value of opm domain: subdomain IMSLib: SignInUsers key: 48b02b476a28f6c3a7f87c3bfe78485f to opm_getValueForKey

    02/09/16 17:15:24:184 | [INFO] |  | USS | OPM | IMSLib |  |  | 5228 | Running releaseData...

    02/09/16 17:15:24:184 | [INFO] |  | USS | OPM | P7Native |  |  | 5228 | Default user found for client_id: CreativeCloud_v3_8

    02/09/16 17:20:54:307 | [INFO] |  | USS | OPM | P7Native |  |  | 5228 | Performing default user of fetch for clientID...

    OOBElib

    02/09/16 13:14:18:318 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Found SerialType = 5

    02/09/16 13:14:18:318 | [INFO] |  |  |  | OOBELib |  |  | 5004 | GetApplicationType: V7 Serializable {InDesign-11-Mac-GM

    02/09/16 13:14:18:318 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl: GetDetailedLicenseStatusEx completed

    02/09/16 13:14:18:325 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl: GetDetailedLicenseStatusEx started

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [909700787751536981564621 {|} BACKUP] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [909700787751536981564621 {|} BACKUP] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [CreativeCloud-CS6-Mac-GM {|} hides in 598]: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [CreativeCloud-CS6-Mac-GM {|} hides in 598]: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [CreativeCloud-CS6-Mac-GM {|} ALL] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [CreativeCloud-CS6-Mac-GM {|} LicLoc] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [CreativeCloud-CS6-Mac-GM {|} LicLoc] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [CreativeCloud-CS6-Mac-GM {|} en_US] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [FA_Set {|} 1] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [FA_Set {|} 1] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [FA_Set {|} 2] in the cache: 519

    02/09/16 13:14:18:330 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [FA_Set {|} 2] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {} en_AE] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {en_GB] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {} en_IL] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {} en_MX] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {en_US] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {} en_XM] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {} en_AE] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {en_GB] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {} en_IL] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {} en_MX] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {en_US] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {} en_XM] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {} en_AE] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {en_GB] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {} en_IL] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {} en_MX] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {en_US] in the cache: 519

    02/09/16 13:14:18:331 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {} en_XM] in the cache: 519

    02/09/16 13:14:18:332 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | License query: type = 5, length = 43 days, remaining = 42 day (s) 53140 seconds.

    02/09/16 13:14:18:332 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Pushing LEID - CreativeCloud-CS6-Mac-GM

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | License query: type = 5, length = 43 days, remaining = 42 day (s) 53140 seconds.

    02/09/16 13:14:18:333 | [INFO] |  |  |  | OOBELib |  |  | 5004 | LEID found CreativeCloud-CS6-Mac-GM

    02/09/16 13:14:18:333 | [INFO] |  |  |  | OOBELib |  |  | 5004 | LicenseType 5 LicenseStatus 1, mapped LEID CreativeCloud-CS6-Mac-GM

    02/09/16 13:14:18:333 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Found a valid subscription license

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AMT_SUBSCRIPTION_6.0 is enabled.

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AMT_SUBSCRIPTION_7.0 is enabled.

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_10.0 of the feature is enabled.

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_11.0 of the feature is enabled.

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_12.0 of the feature is enabled.

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Base_10.0 of the feature is enabled.

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Base_11.0 of the feature is enabled.

    02/09/16 13:14:18:333 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Distiller_10.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Distiller_11.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Distiller_12.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Professional_10.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Professional_11.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Professional_12.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_11.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_12.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_Base_10.5 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_Base_11.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_5.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_6.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_Base_4.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_Base_5.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_Base_4.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_Base_5.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_CameraRaw_4.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_CameraRaw_5.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_CameraRaw_6.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_ColorSettings_4.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_ColorSettings_5.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_ColorSettings_6.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_MiniBridge_1.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_MiniBridge_2.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_MiniBridge_3.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CharacterAnimator_1.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CharacterAnimator_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Contribute_6.1 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CreativeCloud_2.0 of the feature is enabled.

    02/09/16 13:14:18:334 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CreativeCloud_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CreativeCloud_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_12.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_13.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_14.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_Base_11.5 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_Base_13.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Edge_1.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Edge_2.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Edge_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Edge_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Encore_Base_5.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Encore_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Encore_Base_7.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fireworks_12.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fireworks_Base_11.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fireworks_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_4.5 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_4.7 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_Base_4.5 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_Base_4.7 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_Prem_4.5 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_Prem_4.7 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashCatalyst_1.5 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_12.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_13.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_14.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Base_11.5 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Base_13.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Pro_11.5 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Pro_12.0 of the feature is enabled.

    02/09/16 13:14:18:335 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Pro_13.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fuse_1.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fuse_Standard_1.1 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_16.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_17.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_Base_15.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_Base_16.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_Base_17.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_8.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_9.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_Base_7.5 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_Base_8.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_Base_9.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_8.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_9.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_Base_7.5 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_Base_8.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_Base_9.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_5.5 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_6.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_Base_5.5 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_Mini_5.5 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_Mini_6.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Addtnl_Exporter_2.5 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Addtnl_Exporter_3.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Addtnl_Exporter_7.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Base_2.5 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Base_3.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Base_7.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MobileCenter_Base_3.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Muse_1.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Muse_2.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Muse_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:336 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Muse_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | OnLocation_Base_5.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | OnLocation_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_13.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_14.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Base_13.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Base_14.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Premium_12.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Premium_13.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Premium_14.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Prelude_1.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Prelude_2.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Prelude_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Prelude_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | PremiereProApp_6.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Premiere_7.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Premiere_Base_5.5 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Premiere_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Premiere_Base_7.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Sparkler_1.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Sparkler_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | SpeedGrade_6.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | SpeedGrade_7.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | SpeedGrade_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | SpeedGrade_Base_7.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Story_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:337 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Found a valid subscription license, breaking

    02/09/16 13:14:18:337 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Found SerialType = 5

    02/09/16 13:14:18:337 | [INFO] |  |  |  | OOBELib |  |  | 5004 | GetApplicationType: V7 Serializable {Lightroom-6-Mac-GM

    02/09/16 13:14:18:337 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl: GetDetailedLicenseStatusEx completed

    02/09/16 13:14:18:345 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl: GetDetailedLicenseStatusEx started

    02/09/16 13:14:18:349 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [909700787751536981564621 {|} BACKUP] in the cache: 519

    02/09/16 13:14:18:349 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [909700787751536981564621 {|} BACKUP] in the cache: 519

    02/09/16 13:14:18:349 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [CreativeCloud-CS6-Mac-GM {|} hides in 598]: 519

    02/09/16 13:14:18:349 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [CreativeCloud-CS6-Mac-GM {|} hides in 598]: 519

    02/09/16 13:14:18:349 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [CreativeCloud-CS6-Mac-GM {|} ALL] in the cache: 519

    02/09/16 13:14:18:349 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [CreativeCloud-CS6-Mac-GM {|} LicLoc] in the cache: 519

    02/09/16 13:14:18:349 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [CreativeCloud-CS6-Mac-GM {|} LicLoc] in the cache: 519

    02/09/16 13:14:18:349 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [CreativeCloud-CS6-Mac-GM {|} en_US] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [FA_Set {|} 1] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [FA_Set {|} 1] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [FLMap] key value in the hive [FA_Set {|} 2] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [FA_Set {|} 2] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {} en_AE] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {en_GB] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {} en_IL] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {} en_MX] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {en_US] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 InDesign-11-Mac-GM {|} {} en_XM] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {} en_AE] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {en_GB] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {} en_IL] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {} en_MX] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {en_US] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Lightroom-6-Mac-GM {|} {} en_XM] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {} en_AE] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {en_GB] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {} en_IL] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {} en_MX] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {en_US] in the cache: 519

    02/09/16 13:14:18:350 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [SN] key value in the hive [V7 Sparkler-1-Mac-GM {|} {} en_XM] in the cache: 519

    02/09/16 13:14:18:351 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | License query: type = 5, length = 43 days, remaining = 42 day (s) 53140 seconds.

    02/09/16 13:14:18:351 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Pushing LEID - CreativeCloud-CS6-Mac-GM

    02/09/16 13:14:18:352 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | License query: type = 5, length = 43 days, remaining = 42 day (s) 53140 seconds.

    02/09/16 13:14:18:352 | [INFO] |  |  |  | OOBELib |  |  | 5004 | LEID found CreativeCloud-CS6-Mac-GM

    02/09/16 13:14:18:352 | [INFO] |  |  |  | OOBELib |  |  | 5004 | LicenseType 5 LicenseStatus 1, mapped LEID CreativeCloud-CS6-Mac-GM

    02/09/16 13:14:18:352 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Found a valid subscription license

    02/09/16 13:14:18:352 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AMT_SUBSCRIPTION_6.0 is enabled.

    02/09/16 13:14:18:352 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AMT_SUBSCRIPTION_7.0 is enabled.

    02/09/16 13:14:18:352 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_10.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_11.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_12.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Base_10.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Base_11.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Distiller_10.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Distiller_11.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Distiller_12.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Professional_10.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Professional_11.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Acrobat_Professional_12.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_11.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_12.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_Base_10.5 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_Base_11.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | AfterEffects_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_5.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_6.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_Base_4.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_Base_5.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Audition_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_Base_4.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_Base_5.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_CameraRaw_4.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_CameraRaw_5.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_CameraRaw_6.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_ColorSettings_4.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_ColorSettings_5.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_ColorSettings_6.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_MiniBridge_1.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_MiniBridge_2.0 of the feature is enabled.

    02/09/16 13:14:18:353 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Bridge_MiniBridge_3.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CharacterAnimator_1.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CharacterAnimator_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Contribute_6.1 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CreativeCloud_2.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CreativeCloud_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | CreativeCloud_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_12.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_13.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_14.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_Base_11.5 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Dreamweaver_Base_13.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Edge_1.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Edge_2.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Edge_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Edge_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Encore_Base_5.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Encore_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Encore_Base_7.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fireworks_12.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fireworks_Base_11.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fireworks_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_4.5 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_4.7 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_Base_4.5 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_Base_4.7 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_Prem_4.5 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashBuilder_Prem_4.7 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | FlashCatalyst_1.5 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_12.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_13.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_14.0 of the feature is enabled.

    02/09/16 13:14:18:354 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Base_11.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Base_13.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Pro_11.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Pro_12.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Flash_Pro_13.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fuse_1.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Fuse_Standard_1.1 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_16.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_17.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_Base_15.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_Base_16.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Illustrator_Base_17.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_8.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_9.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_Base_7.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_Base_8.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InCopy_Base_9.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_8.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_9.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_Base_7.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_Base_8.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | InDesign_Base_9.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_5.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_6.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_Base_5.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_Mini_5.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | LightRoom_Mini_6.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Addtnl_Exporter_2.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Addtnl_Exporter_3.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Addtnl_Exporter_7.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Base_2.5 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Base_3.0 of the feature is enabled.

    02/09/16 13:14:18:355 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MediaEncoder_Base_7.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | MobileCenter_Base_3.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Muse_1.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Muse_2.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Muse_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Muse_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | OnLocation_Base_5.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | OnLocation_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_13.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_14.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Base_12.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Base_13.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Base_14.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Premium_12.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Premium_13.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Photoshop_Premium_14.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Prelude_1.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Prelude_2.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Prelude_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Prelude_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | PremiereProApp_6.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Premiere_7.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Premiere_Base_5.5 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Premiere_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Premiere_Base_7.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Sparkler_1.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Sparkler_Base_1.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | SpeedGrade_6.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | SpeedGrade_7.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | SpeedGrade_Base_6.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | SpeedGrade_Base_7.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | SLCoreService |  |  | 5004 | Story_Base_2.0 of the feature is enabled.

    02/09/16 13:14:18:356 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Found a valid subscription license, breaking

    02/09/16 13:14:18:357 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Found SerialType = 5

    02/09/16 13:14:18:357 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [TrialSerialNumber] key value in the hive [V7 {Sparkler-1-Mac-GM] master: 10

    02/09/16 13:14:18:357 | [INFO] |  |  |  | OOBELib |  |  | 5004 | GetApplicationType: V7 Passive {Sparkler-1-Mac-GM

    02/09/16 13:14:18:357 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl: GetDetailedLicenseStatusEx completed

    02/09/16 13:14:19:230 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::CommitPCD STARTED

    02/09/16 13:14:19:235 | [DEBUG] |  |  |  | ServiceLoader |  |  | 5004 | looking for the Library/Applications/Utilities/Adobe Manager/P7/adobe_upgrade.framework/adobe_upgrade Application

    02/09/16 13:14:19:235 | [DEBUG] |  |  |  | ServiceLoader |  |  | 5004 | Found Library/Applications/Utilities/Adobe app Manager/P7/adobe_upgrade.dylib

    02/09/16 13:14:19:235 | [INFO] |  |  |  | OOBELib |  |  | 5004 | SN not validated in this session

    02/09/16 13:14:19:235 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Remember no SN

    02/09/16 13:14:19:246 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Do not too write user GUID already present

    02/09/16 13:14:19:246 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Creation of the registry for 909700787751536981564621 entries

    02/09/16 13:14:19:250 | [INFO] |  |  |  | OOBELib |  |  | 5004 | With TS Adobeid commit successful

    02/09/16 13:14:19:254 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | [ADOBEIDNAG] key value in the hive [909700787751536981564621] in the cache: 519

    02/09/16 13:14:19:256 | [WARNING] |  |  |  | PCDService |  |  | 5004 | Failed to remove key [ADOBEID_NOT_INVOKED] in the hive [909700787751536981564621] cache: 519

    02/09/16 13:14:19:257 | [WARNING] |  |  |  | PCDService |  |  | 5004 | Failed to remove key [ADOBEID_NAG_TIME] in the hive [909700787751536981564621] cache: 519

    02/09/16 13:14:19:257 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging STARTED

    02/09/16 13:14:19:257 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging = mAppRunningLEID

    02/09/16 13:14:19:257 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging mAppLocale = en_US

    02/09/16 13:14:19:257 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [PayloadCode] key value in the hive [] of the master: 4

    02/09/16 13:14:19:257 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [DefaultDriverPayload] key value in the hive [] of the master: 4

    02/09/16 13:14:19:257 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging = mPayloadCode

    02/09/16 13:14:19:257 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging = mDriverCode

    02/09/16 13:14:19:257 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [LicensingCode] key value in the hive [] of the master: 4

    02/09/16 13:14:19:257 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging = mDriverLEIDCode

    02/09/16 13:14:19:257 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [ISO_TAGGING_DISABLED] key value in the hive [] of the master: 4

    02/09/16 13:14:19:257 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [ISO_TAGGING_DISABLED] key value in the hive [] of the master: 4

    02/09/16 13:14:19:257 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::IsPreSerialNumberPresent STARTED

    02/09/16 13:14:19:257 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [EncryptedSerial] key value in [hive of the cache: 4

    02/09/16 13:14:19:257 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::IsPreSerialNumberPresent ENDED

    02/09/16 13:14:19:278 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [ValidatedAgainst] key value in the hive [{|} en_US] cache: 769

    02/09/16 13:14:19:278 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [FLMap] key value in the hive [{|} en_US] cache: 769

    02/09/16 13:14:19:278 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [SN] key value in the hive [{|} en_US] cache: 769

    02/09/16 13:14:19:278 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [PayloadCode] key value in the hive [] of the master: 4

    02/09/16 13:14:19:278 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging = productSerialNumber

    02/09/16 13:14:19:278 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::GetAMTPath STARTED

    02/09/16 13:14:19:278 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [AMTConfigPath] key value in the hive [] of the master: 4

    02/09/16 13:14:19:279 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Path of the CLOS OOBELibImpl::GetAMTPath = not found

    02/09/16 13:14:19:279 | [WARNING] |  |  |  | OOBELib |  |  | 5004 | SSC dir not found:

    02/09/16 13:14:19:279 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging/Library/Application Support / Adobe / CSE / is not a directory

    02/09/16 13:14:19:279 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [TrialSerialNumber] key value in the hive [] of the master: 4

    02/09/16 13:14:19:279 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [TrialSerialNumber] key value in the hive [] of the master: 4

    02/09/16 13:14:19:279 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging epic_app = EPIC_APP

    02/09/16 13:14:19:279 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [EPIC_APP] key value in the hive [] of the master: 4

    02/09/16 13:14:19:279 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Cannot read the [EPIC_APP] key value in [hive of the cache: 4

    02/09/16 13:14:19:279 | [DEBUG] |  |  |  | PCDService |  |  | 5004 | Failed to get data for hive puzzle: 4

    02/09/16 13:14:19:279 | [INFO] |  |  |  | OOBELib |  |  | 5004 | ProdName = OOBELibImpl::DoISOTagging, licensingCode =, prodLocale =, svrStat is 769

    02/09/16 13:14:19:338 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::DoISOTagging ENDED

    02/09/16 13:14:19:338 | [INFO] |  |  |  | OOBELib |  |  | 5004 | OOBELibImpl::CommitPCD ENDED

    02/09/16 13:14:19:338 | [INFO] |  |  |  | OOBELib |  |  | 5004 | AdobeIALClient 1.0 Release (build 1.0.6.3) closing session.

    02/09/16 13:14:19:338 | [INFO] |  |  |  | OOBELib |  |  | 5004 | Session OOBELib ends

    The problem was the internet service provider. After 2 weeks and a few things they did with servers out there, the problem was gone.

    In any case, here's the log files

    Adobe Creative Cloud

  • Permit refused: physical location, really you have to "re - serialize this device and add it to the full pool"?

    I am a teacher and have an Adobe CC license through my school, which is located in Valencia, Spain. However, the school year ends July 15 and I am now in the United States and will be until I return to teach next January.

    My Adobe products worked fine until a few days ago when I tried to open an Adobe application and I received the following message:

    License denied

    There is no license associated with this device.

    The license for creative cloud on this device was refused.

    Please contact administrator for re - serialize this device and add it to the full pool.

    Screen Shot 2016-07-27 at 12.22.28 PM.png

    I contacted my admin, and he said that I (or my computer) had to be physically at Valencia in order to re - authorize the device. (I have an Adobe ID, but a different Adobe ID of the school of the Department's it was used to install CC.) Because I won't be back in Valencia for 6 months, and I need to use the software now, it is a major problem.

    I hope that there is a way to do this remotely (it is 2016, after all) that my admin does not know, or did not bother to understand.

    Is it possible to "re - serialize this device" remotely?

    Thank you

    Jon

    > Different Adobe ID of the school of THIS Department was used to install CC

    Who could tell me that YOU do not have the subscription, it is up to your school when then means that YOU can not renew the subscription with your ID and your current place of residence

    The only option I see is to buy your own subscription... using the monthly option rather than the annual with monthly payments option since you won't need a personal subscription for one year plans membership FAQ: what is the difference between an annual and monthly plan?

    Or, as it is an open forum, not Adobe support... Click below to contact Adobe staff for help

    While the forums are open 24/7 you can't contact Adobe support at any time

    Chat support: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

  • [ADF, JDev12.1.3] Why AM method cannot be exposed to the client if it does not return a simple type or serializable? How...?

    Hallo,

    I would like to know why the methods that I create in the request Module cannot be exposed to the client if they return a simple type or serializable.

    If the method returns a custom class object I solve the problem by simply writing next to the defining class "implements Serializable.

    I would like to know if it's still OK, or for a custom class with some features I really need to implement the serialization (de).

    Thank you

    Federico

    Return values must be serializable nexus him must be transported between servers and memory a store if your module gets passive

    Is normally enough tto implement the serializable interface. But in doing so you do not make the class serializable automatically. To do this, you must check if each attribute or class variable is serialized or to be transitory if they are not serialize the value.

    Timo

Maybe you are looking for