AIR - MilkManGames GameCenter ANE - Error: Failed creating GameCenter Extension Context.

I am having trouble testing the IOS GameCenter functionality. I have been using the ANE extension purchased from MilkManGames.
When I call GameCenter.create( stage ) I get this error:
Error: Failed creating GameCenter Extension Context.
If I try to access the GameCenter features after this I get this error:
Error: GameCenter not initialized; call GameCenter.create() first.
Does this ring any bells to anyone? Please help... very.. frustrated....
Thanks in advance,
Charles

Actually, I think my problem was that the .ANE file was not getting pointed to in the Flash Library Path. You just need to be sure you directly import the .ANE file as you would a .SWC. Just thought I'd share in case there was anyone out there with the same problem. I am now past this hurdle ;-)
C

Similar Messages

  • ExtensionContext error while creating Native Extension in Flex 3.6 SDK

    I'm creating native extension with Flex 3.6 . Coded native side then created Flex Library Project and then create .ane file. Finally imported .ane file to myFlex Project.
    Here is the problem I had. While I'm debugging app, "1046: Type was not found or was not a compile-time constant: ExtensionContext" error occurs. Attached the Library project .as class .
    Thanks in Advance
    package com.extension.samples
       import flash.events.EventDispatcher;
       import flash.events.IEventDispatcher;
       import flash.external.ExtensionContext;
       public class NetworkConnectionANE extends EventDispatcher
            public var _extContext : ExtensionContext;
            public function NetworkConnectionANE(target:IEventDispatcher=null)
                _extContext = ExtensionContext.createExtensionContext("com.extension.samples.NetworkConnectionANE", null);
                 super(target);
            public function Connect(path:String):int
                 return _extContext.call("nativeFunc", path);
            public function dispose():void
                _extContext.dispose();
    Edit: I tried to use .swc file that created from library project in another Flex Desktop app, but the same error
        Also tried with     _extContext = ExtensionContext.createExtensionContext("com.extension.samples.NetworkConnectionANE","");
    Edit: The problem about Flex SDK, there is no problem in SDK 4.6. Now the question is, How to use Extension in lib project in Flex 3.6 SDK ?

    I'm sure, I use Flex 3.6.0 SDK version. When I want to create a library project in 3.6.0, already I couldn't see  ExtensionContext class in flash.external package. If I create in v4.6, I'm having problem when I start to debug my v3.6 desktop application. Now I want to learn
    Does Flex v3.6.0 support NativeExtension ?
       if Yes ,
    which class is equal to ExtensionContext in v3.6.0
    or How can I import ExtensionContext class to v3.6.0
    Thanks

  • Execution error: Failed creating repository

    Hi,
    There is Enterprise Edition Database 9.0.1 in my Windows 2000 system and while creating repository, database... with ECMA, process failed.
    Any idea
    any help will be appreciated.
    se with SID "OEMREP"...
    E:\oracle\ora90\BIN\launch.exe E:\oracle\ora90\assistants\dbca dbca.cl -progress_only -createDatabase -templateName Transaction_Processing.dbc -gdbName OEMREP -sid OEMREP
    Connecting to SYS...
    Connecting to SYS@BH:1521:OEMREP...
    Checking tablespaces for repository user "OEM_BH_OEMREP"...
    Creating tablespace "OEM_REPOSITORY"...
    Creating repository user "OEM_BH_OEMREP"...
    Granting privileges to repository user...
    Connecting to OEM_BH_OEMREP@BH:1521:OEMREP...
    Populating repository for schema "OEM_BH_OEMREP"...
    Performing prolog operations...
    Creating repository for "Oracle Enterprise Manager"...
    Executing SQL script E:\oracle\ora90\sysman\admin\MAScre.sql...
    .....................>>>Error encountered executing statement:
    [END]
    Disconnecting from OEM_BH_OEMREP@BH:1521:OEMREP...
    Returning to connection SYS@BH:1521:OEMREP...
    Processing failed.
    Best Regards
    Bara

    Bara,
    Please set your local settings to English in Regional Options for your Windows 2000 machine and run the process again. For details, please see note:168164.1 on metalink.

  • Error in Creating a extension field in ByD

    Hello ,
    I am new to SAP byd ,
    I am not able to add extension fields in Sales order.
    It gives "Operation not Possible , User setting could not be determined"
    How to rectify this?
    Thanks
    Prat

    Cause
    There are 2 possible reasons for this error message:
    1. Your tenant is used for the development of customer-specific solutions
    (One-Off Add-On).
    Your user is assigned to a PDI solution and therefore you
    can only create fields in the Cloud Applications Studio. You can only create
    extension fields using the key user tools if you are not a PDI developer. Once
    any user opens the PDI Studio the respective user is assigned to the PDI
    solution.
    2. Your tenant is a partner development tenant.
    Since this system is a
    partner development system the field extensibility is only possible in the Cloud
    Applications Studio not in the key user UI (User Interface).
    If the cause of the error is reason 1 you can solve this issue as
    follows:
    In order to use the standard field extensibility functionality you need to
    create a key user which is not assigned to the PDI solution or change the access
    rights of an existing Business User.
    Please note that this user needs to be assigned to the Application and
    User Management work center and the Flexibility Change Log view in
    order to be able to use the field adaptation.
    This user should not be assigned to Partner Development (ID:
    PDI_PARTNER_DEVELOPMENT) and Development (ID:MAI_DEVELOPMENT).

  • Problem Create ANE,ArgumentError: Error #3500: The extension context does not have a method with the name

    I little confuse about build ANE, I already follow all the direction, but the error always #3500 when I try to call the ANE.
    I create ANE using java android.
    The tools I use : Flash Builder running on Win-64 win.7. I think I must straight to the point, here what i made it first step by step;
    1. I create the JAVA application first, with package senigo.extension.android then I create 3 file, Sample.java, SampleContext.java, PassTextFunction.java
    Sample.Java Source Code
    package senigo.extension.android;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    public class Sample implements FREExtension {
      @Override
      public FREContext createContext(String arg0) {
      // TODO Auto-generated method stub
      Log.i("Sample", "createContext");
      return new SampleContext();
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Dispose");
      @Override
      public void initialize() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Initialize");
    SampleContext.Java Source Code
    package senigo.extension.android;
    import java.util.HashMap;
    import java.util.Map;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREFunction;
    public class SampleContext extends FREContext {
      public SampleContext()
      Log.i("SampleContext", "constructor");
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "dispose");
      @Override
      public Map<String, FREFunction> getFunctions() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "getFunctions");
      Map<String, FREFunction> functionMap = new HashMap<String, FREFunction>();
      functionMap.put("passText", new PassTextFunction());
      return functionMap;
    PassTextFunction.Java Source Code
    package senigo.extension.android;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    import com.adobe.fre.FREFunction;
    import com.adobe.fre.FREObject;
    public class PassTextFunction implements FREFunction {
      @Override
      public FREObject call(FREContext arg0, FREObject[] arg1) {
      // TODO Auto-generated method stub
      FREObject result = null;
      try{
      result =  FREObject.newObject("Hello World");
      }catch(Exception e)
      return result;
    after all the file I create the jar file using click right on the tree view >> Export >> Jar File >> Sample.Jar (i already create jar file that just contain the src folder and after i frustrated, i create .jar file contain all the whole project folder but still didn't work out).
    Ok, After that I create project Flex Library Project, That's contain the actionscript to call the native and the extension.xml, here the code.
    Test.as Source Code, FYI : i already create public function and the static function the error still same #3500.
    package senigo.extension.android
      import flash.external.ExtensionContext;
      public class test
      private static var extContext:ExtensionContext = null;
      public function test()
      trace ("Test Constructor");
      if (!extContext)
      initExtension();
      public static function get passText():String
      trace ("Test Pass Text");
      if (!extContext)
      initExtension();
      return extContext.call("passText") as String;
      private static function initExtension():void
      trace ("Vibration Constructor: Create an extension context");
      extContext = ExtensionContext.createExtensionContext("senigo.extension.android", null);
    extension.xml source code
    FYI: in Flex when i put the Native Extension, they said must have Windows-x86 so I already create 3 ANE, that just contain Android-ARM , Contain Android-ARM and Default, Contain Android-ARM,Default and Windows-x86 but the error still same. I didn't got it where is the error.
    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
      <id>senigo.extension.android</id>
      <versionNumber>1.0.0</versionNumber>
      <platforms>
      <platform name="Android-ARM">
      <applicationDeployment>
      <nativeLibrary>Sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      <!-- <platform name="Windows-x86">
      <applicationDeployment>
      <nativeLibrary>sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      -->
       <platform name="default">
    <applicationDeployment/>
    </platform>
      </platforms>
    </extension>
    After I create it, I copy the .swc file and extension file sample with the Sample.jar file.
    I extract the .swc file, copy the library.swf to folder Android-ARM,Default,Windows-86 and I create build.bat that contain the command like this
    adt -package  -storetype PKCS12 -keystore senigo.p12 -storepass l10nk1ng -target ane senigo.extension.android.ane extension.xml -swc AndroidLib.swc -platform Android-ARM -C ./Android-ARM/ . -platform default -C ./default/ .
    the I put the ane to Flex mobile project that I created:
    I run it but got error #3500, I really confuse?? what's wrong with my code? is there something I wrong or I Miss it?
    Please any one help me.. and when is already ane file can I debug it in Flex Mobile Project? I wanna looks the log.i code that i wrote but i confuse how to looking up in flash builder.
    at the end, I wanna said Sorry if my english not very goods, and thanks, because wanna see my problem and thank you very much if You can gave me a solution's

    Alex Rekish wrote:
    Why you comment Windows-x86 in your extension.xml ?
    I think that is a problem. You launch your application on Windows but ANE haven't got Windows-x86 implementation (also you don't include it while packaging). So your application use default implementation. But default implementation don't use any native code and cannot use ExtensionContext. And you got error.
    If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation.
    Thanks for you answer Alex Rekish, Sorry I didn't screen shoot all about the extension.xml. I comment it because the latest ANE that I build is contain Android-ARM and default. so I commented. but I already try it using just ANE that's just contain Android-ARM, with Android-ARM and windows-x86,and Android-ARM, and default, and Android-ARM,default,Windows-x86 the error still the same.
    here the screen shoot, I embeded the ane that's i contain Windows-x86
    in action script test.as I didn't change it anythings, I just play it on extension.xml to build the ane. is there any mistake over there? I interact with your answer that "If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation." I didn't need to user ExtensionContext? is means? in the actionscript? or in extension.xml? can you explained

  • ERROR CEPHtmlEngine exits, unload extension

    Hello,
    i have installed PS CC 2014 and no extensions like kuler works. I get this log-Entry at debug-lvl 6:
    2015-02-20 20:45:41 : INFO  PlugPlug version : 5.2.0.54
    2015-02-20 20:45:41 : INFO  LogLevel : 6
    2015-02-20 20:45:41 : INFO  IVulcanController already configured with groupName , sourceSpecifier
    2015-02-20 20:45:41 : INFO  IVulcanMessageDispatcher already configured with appId PHXS, appVersion 15.2.2
    2015-02-20 20:45:41 : INFO  Copy RGB Background Color Information for AppBar
    2015-02-20 20:45:41 : INFO  Copy RGB Background Color Information for Panel
    2015-02-20 20:45:41 : INFO  Copy sRGB Background Color Information for AppBar
    2015-02-20 20:45:41 : INFO  Copy sRGB Background Color Information for Panel
    2015-02-20 20:45:41 : INFO  Windows 64-bit PlugPlug logs
    2015-02-20 20:45:41 : INFO  ----------------------------
    2015-02-20 20:45:41 : INFO  PlugPlugSetup() API called:
    2015-02-20 20:45:41 : INFO  hostData->appName : PHXS
    2015-02-20 20:45:41 : INFO  hostData->appVersion : 15.2.2
    2015-02-20 20:45:41 : INFO  hostData->locale : de_DE
    2015-02-20 20:45:41 : INFO  hostData->userInterfaceLocale : de_DE
    2015-02-20 20:45:41 : INFO  hostData->supportedTypes : 15
    2015-02-20 20:45:41 : INFO  hostData->apeVersion : 3.4.0r
    2015-02-20 20:45:41 : INFO  hostData->overrideManifestLocation : (null)
    2015-02-20 20:45:41 : INFO  isApplicationOffline : false
    2015-02-20 20:45:41 : INFO  hostData->hostCEPHtmlEngineDirectory : C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\CEPHtmlEngine\
    2015-02-20 20:45:41 : INFO  hostData->hostExtensionDirectory :C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\
    2015-02-20 20:45:41 : INFO  hostData->hostStageManagerDirectory : (null)
    2015-02-20 20:45:41 : INFO  hostData->imsLibPath: (null)
    2015-02-20 20:45:41 : INFO  skinInfo->baseFontSize : 10
    2015-02-20 20:45:41 : INFO  skinInfo->baseFontFamily : Tahoma
    2015-02-20 20:45:41 : INFO  skinInfo->appBarBackgroundColor->antialiasLevel : PlugPlugAntialiasLevel_None
    2015-02-20 20:45:41 : INFO  skinInfo->appBarBackgroundColor->type : PlugPlugColorType_RGB
    2015-02-20 20:45:41 : INFO  ExtensionRegistry started
    2015-02-20 20:45:41 : INFO  Searching for valid extensions in 'C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\'
    2015-02-20 20:45:41 : DEBUG Searching for valid extensions in 'C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\'
    2015-02-20 20:45:41 : DEBUG Found RequiredRuntime with name 'CSXS' and version '5.0'
    2015-02-20 20:45:41 : DEBUG Found extension with id 'com.adobe.behance.shareonbehance.html.extension'
    2015-02-20 20:45:41 : INFO  Localization file for C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.behance.shareonbehance.html\locale\de_DE\messages. properties was read
    2015-02-20 20:45:41 : INFO  Adding extension with id 'com.adobe.behance.shareonbehance.html.extension'
    2015-02-20 20:45:41 : DEBUG Found manifest file at path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.behance.shareonbehance.html\csxs\manifest.xml
    2015-02-20 20:45:41 : DEBUG Found RequiredRuntime with name 'CSXS' and version '5.0'
    2015-02-20 20:45:41 : DEBUG Found extension with id 'com.adobe.DesignLibraries.angular'
    2015-02-20 20:45:41 : INFO  Localization file for C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.DesignLibraryPanel.html\locale\de_DE\messages.prop erties was read
    2015-02-20 20:45:41 : INFO  Adding extension with id 'com.adobe.DesignLibraries.angular'
    2015-02-20 20:45:41 : DEBUG Found manifest file at path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.DesignLibraryPanel.html\csxs\manifest.xml
    2015-02-20 20:45:41 : DEBUG Found RequiredRuntime with name 'CSXS' and version '5.0'
    2015-02-20 20:45:41 : DEBUG Found extension with id 'KLR'
    2015-02-20 20:45:41 : INFO  Localization file for C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.KulerPanel.html\locale\de_DE\messages.properties was read
    2015-02-20 20:45:41 : INFO  Adding extension with id 'KLR'
    2015-02-20 20:45:41 : DEBUG Found manifest file at path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.KulerPanel.html\csxs\manifest.xml
    2015-02-20 20:45:41 : DEBUG Found RequiredRuntime with name 'CSXS' and version '5.0'
    2015-02-20 20:45:41 : DEBUG Found extension with id 'com.adobe.WEBPA.crema.saveforweb'
    2015-02-20 20:45:41 : INFO  Localization file for C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.webpa.crema\locale\de_DE\messages.properties was read
    2015-02-20 20:45:41 : INFO  Adding extension with id 'com.adobe.WEBPA.crema.saveforweb'
    2015-02-20 20:45:41 : DEBUG Found manifest file at path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.webpa.crema\csxs\manifest.xml
    2015-02-20 20:45:41 : DEBUG Found RequiredRuntime with name 'CSXS' and version '5.0'
    2015-02-20 20:45:41 : INFO  ExtensionManifest is not valid for this locale (C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.photoshop.welcome\csxs\manifest.xml)
    2015-02-20 20:45:41 : DEBUG Found manifest file at path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.photoshop.welcome\csxs\manifest.xml
    2015-02-20 20:45:41 : INFO  Searching for valid extensions in 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions'
    2015-02-20 20:45:41 : DEBUG Searching for valid extensions in 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions'
    2015-02-20 20:45:41 : DEBUG Found RequiredRuntime with name 'CSXS' and version '5.0'
    2015-02-20 20:45:41 : DEBUG Found extension with id 'com.adobe.DesignLibraries.angular'
    2015-02-20 20:45:41 : INFO  Localization file for C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\locale\de_DE\messages.proper ties was read
    2015-02-20 20:45:41 : INFO  Adding extension with id 'com.adobe.DesignLibraries.angular'
    2015-02-20 20:45:41 : DEBUG Found manifest file at path: C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\csxs\manifest.xml
    2015-02-20 20:45:41 : DEBUG Found RequiredRuntime with name 'CSXS' and version '4.0'
    2015-02-20 20:45:41 : DEBUG Found extension with id 'com.taptapideas.beautyretouchcc'
    2015-02-20 20:45:41 : INFO  Adding extension with id 'com.taptapideas.beautyretouchcc'
    2015-02-20 20:45:41 : DEBUG Found manifest file at path: C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\csxs\manifest.xml
    2015-02-20 20:45:41 : DEBUG Found RequiredRuntime with name 'CSXS' and version '5.0'
    2015-02-20 20:45:41 : DEBUG Found extension with id 'KLR'
    2015-02-20 20:45:41 : INFO  Localization file for C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\locale\de_DE\messages.properties was read
    2015-02-20 20:45:41 : INFO  Adding extension with id 'KLR'
    2015-02-20 20:45:41 : DEBUG Found manifest file at path: C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\csxs\manifest.xml
    2015-02-20 20:45:41 : INFO  Searching for valid extensions in 'C:\Users\Callayn\AppData\Roaming\Adobe\CEP\extensions'
    2015-02-20 20:45:41 : INFO  A newer/equal version for ExtensionManifest 'com.adobe.DesignLibraries.angular' already exists, ignoring second ExtensionManifest (got '1.1.5'; ignoring '1.1.3').
    2015-02-20 20:45:41 : DEBUG Added ExtensionManifest from 'C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.DesignLibraryPanel.html\csxs\manifest.xml' to out list
    2015-02-20 20:45:42 : DEBUG Keeping ExtensionManifest from 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\csxs\manifest.xml'
    2015-02-20 20:45:42 : INFO  Found a newer version for ExtensionManifest 'KulerPanelHTMLBundle' (replacing version '6.0.0.20140903-m-59' with '6.0.0.20140911-m-60').
    2015-02-20 20:45:42 : DEBUG Added ExtensionManifest from 'C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.KulerPanel.html\csxs\manifest.xml' to out list
    2015-02-20 20:45:42 : DEBUG Keeping ExtensionManifest from 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\csxs\manifest.xml'
    2015-02-20 20:45:42 : INFO  ExtensionManifest 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\csxs\manifest.xml' contains '1' valid extensions for this host
    2015-02-20 20:45:42 : INFO  Found extension with id 'com.adobe.DesignLibraries.angular'
    2015-02-20 20:45:42 : DEBUG -> BasePath                    : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleId           : com.adobe.DesignLibraries.angular
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleVersion      : 1.1.5
    2015-02-20 20:45:42 : DEBUG -> ID                          : com.adobe.DesignLibraries.angular
    2015-02-20 20:45:42 : DEBUG -> Version                     : 1.1.5
    2015-02-20 20:45:42 : DEBUG -> MainPath                    : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\index.html
    2015-02-20 20:45:42 : DEBUG -> ScriptPath                  : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\jsx\core.jsx
    2015-02-20 20:45:42 : DEBUG -> ScriptEngineId              : com.adobe.DesignLibraries.angular_Engine_Id
    2015-02-20 20:45:42 : DEBUG -> CEFCommandLine            : 2
    2015-02-20 20:45:42 : DEBUG    ->parameter           ->: --ignore-certificate-errors
    2015-02-20 20:45:42 : DEBUG    ->parameter           ->: --high-dpi-support=1
    2015-02-20 20:45:42 : DEBUG -> AutoVisible                 : true
    2015-02-20 20:45:42 : DEBUG -> StartOn -> Event            : 0
    2015-02-20 20:45:42 : DEBUG -> Type                        : Panel
    2015-02-20 20:45:42 : DEBUG -> Menu                        : Bibliotheken
    2015-02-20 20:45:42 : DEBUG -> MenuPlacement               : (null)
    2015-02-20 20:45:42 : DEBUG -> Size
    2015-02-20 20:45:42 : DEBUG    -> Height                   : 300
    2015-02-20 20:45:42 : DEBUG    -> Width                    : 239
    2015-02-20 20:45:42 : DEBUG -> MaxSize
    2015-02-20 20:45:42 : DEBUG -> MinSize
    2015-02-20 20:45:42 : DEBUG    -> Height                   : 165
    2015-02-20 20:45:42 : DEBUG    -> Width                    : 239
    2015-02-20 20:45:42 : DEBUG -> IconPath
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> Normal       : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\images\IconLight.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> Disbaled     : (null)
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> RollOver     : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\images\IconLight.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> DarkNormal   : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\images\IconDark.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> DarkRollOver : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\images\IconDark.png
    2015-02-20 20:45:42 : DEBUG -> DefaultExtensionData        : (null)
    2015-02-20 20:45:42 : DEBUG -> SpecialExtensionData        : (null)
    2015-02-20 20:45:42 : DEBUG -> RequiredRuntimeList            : 1
    2015-02-20 20:45:42 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2015-02-20 20:45:42 : DEBUG    -> RequiredRuntime -> Version  : 5.0.0
    2015-02-20 20:45:42 : INFO  ExtensionManifest 'C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.behance.shareonbehance.html\csxs\manifest.xml' contains '1' valid extensions for this host
    2015-02-20 20:45:42 : INFO  Found extension with id 'com.adobe.behance.shareonbehance.html.extension'
    2015-02-20 20:45:42 : DEBUG -> BasePath                    : C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.behance.shareonbehance.html
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleId           : com.adobe.behance.shareonbehance.html
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleVersion      : 2.0.0
    2015-02-20 20:45:42 : DEBUG -> ID                          : com.adobe.behance.shareonbehance.html.extension
    2015-02-20 20:45:42 : DEBUG -> Version                     : 2.0.0
    2015-02-20 20:45:42 : DEBUG -> MainPath                    : C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.behance.shareonbehance.html\index.html
    2015-02-20 20:45:42 : DEBUG -> ScriptPath                  : C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.behance.shareonbehance.html\host\ps.js
    2015-02-20 20:45:42 : DEBUG -> ScriptEngineId              : com.adobe.behance.shareonbehance.html.extension_Engine_Id
    2015-02-20 20:45:42 : DEBUG -> CEFCommandLine            : 1
    2015-02-20 20:45:42 : DEBUG    ->parameter           ->: --proxy-auto-detect
    2015-02-20 20:45:42 : DEBUG -> AutoVisible                 : true
    2015-02-20 20:45:42 : DEBUG -> StartOn -> Event            : 0
    2015-02-20 20:45:42 : DEBUG -> Type                        : ModalDialog
    2015-02-20 20:45:42 : DEBUG -> Menu                        : Auf Behance teilen
    2015-02-20 20:45:42 : DEBUG -> MenuPlacement               : (null)
    2015-02-20 20:45:42 : DEBUG -> Size
    2015-02-20 20:45:42 : DEBUG    -> Height                   : 530
    2015-02-20 20:45:42 : DEBUG    -> Width                    : 950
    2015-02-20 20:45:42 : DEBUG -> MaxSize
    2015-02-20 20:45:42 : DEBUG -> MinSize
    2015-02-20 20:45:42 : DEBUG -> IconPath
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> Normal       : (null)
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> Disbaled     : (null)
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> RollOver     : (null)
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> DarkNormal   : (null)
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> DarkRollOver : (null)
    2015-02-20 20:45:42 : DEBUG -> DefaultExtensionData        : (null)
    2015-02-20 20:45:42 : DEBUG -> SpecialExtensionData        : (null)
    2015-02-20 20:45:42 : DEBUG -> RequiredRuntimeList            : 1
    2015-02-20 20:45:42 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2015-02-20 20:45:42 : DEBUG    -> RequiredRuntime -> Version  : 5.0.0
    2015-02-20 20:45:42 : INFO  ExtensionManifest 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\csxs\manifest.xml' contains '1' valid extensions for this host
    2015-02-20 20:45:42 : INFO  Found extension with id 'com.taptapideas.beautyretouchcc'
    2015-02-20 20:45:42 : DEBUG -> BasePath                    : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleId           : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleVersion      : 1.0.0
    2015-02-20 20:45:42 : DEBUG -> ID                          : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:42 : DEBUG -> Version                     : 1.0.0
    2015-02-20 20:45:42 : DEBUG -> MainPath                    : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\index.html
    2015-02-20 20:45:42 : DEBUG -> ScriptPath                  : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\jsx\hostscript.jsx
    2015-02-20 20:45:42 : DEBUG -> ScriptEngineId              : com.taptapideas.beautyretouchcc_Engine_Id
    2015-02-20 20:45:42 : DEBUG -> AutoVisible                 : true
    2015-02-20 20:45:42 : DEBUG -> StartOn -> Event            : 0
    2015-02-20 20:45:42 : DEBUG -> Type                        : Panel
    2015-02-20 20:45:42 : DEBUG -> Menu                        : Beauty Retouch CC
    2015-02-20 20:45:42 : DEBUG -> MenuPlacement               : (null)
    2015-02-20 20:45:42 : DEBUG -> Size
    2015-02-20 20:45:42 : DEBUG    -> Height                   : 380
    2015-02-20 20:45:42 : DEBUG    -> Width                    : 368
    2015-02-20 20:45:42 : DEBUG -> MaxSize
    2015-02-20 20:45:42 : DEBUG -> MinSize
    2015-02-20 20:45:42 : DEBUG    -> Height                   : 200
    2015-02-20 20:45:42 : DEBUG    -> Width                    : 217
    2015-02-20 20:45:42 : DEBUG -> IconPath
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> Normal       : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\icons\iconNormal.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> Disbaled     : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\icons\iconDisabled.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> RollOver     : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\icons\iconRollover.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> DarkNormal   : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\icons\iconDarkNormal.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> DarkRollOver : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\icons\iconDarkRollover.png
    2015-02-20 20:45:42 : DEBUG -> DefaultExtensionData        : (null)
    2015-02-20 20:45:42 : DEBUG -> SpecialExtensionData        : (null)
    2015-02-20 20:45:42 : DEBUG -> RequiredRuntimeList            : 1
    2015-02-20 20:45:42 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2015-02-20 20:45:42 : DEBUG    -> RequiredRuntime -> Version  : 4.0.0
    2015-02-20 20:45:42 : INFO  ExtensionManifest 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\csxs\manifest.xml' contains '1' valid extensions for this host
    2015-02-20 20:45:42 : INFO  Found extension with id 'KLR'
    2015-02-20 20:45:42 : DEBUG -> BasePath                    : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleId           : KulerPanelHTMLBundle
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleVersion      : 6.0.0.20140911-m-60
    2015-02-20 20:45:42 : DEBUG -> ID                          : KLR
    2015-02-20 20:45:42 : DEBUG -> Version                     : 6.1.0
    2015-02-20 20:45:42 : DEBUG -> MainPath                    : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\index.html
    2015-02-20 20:45:42 : DEBUG -> ScriptPath                  : (null)
    2015-02-20 20:45:42 : DEBUG -> ScriptEngineId              : KLR_Engine_Id
    2015-02-20 20:45:42 : DEBUG -> CEFCommandLine            : 1
    2015-02-20 20:45:42 : DEBUG    ->parameter           ->: --user-agent=Photoshop
    2015-02-20 20:45:42 : DEBUG -> AutoVisible                 : true
    2015-02-20 20:45:42 : DEBUG -> StartOn -> Event            : 0
    2015-02-20 20:45:42 : DEBUG -> Type                        : Panel
    2015-02-20 20:45:42 : DEBUG -> Menu                        : Adobe Color-Themen
    2015-02-20 20:45:42 : DEBUG -> MenuPlacement               : (null)
    2015-02-20 20:45:42 : DEBUG -> Size
    2015-02-20 20:45:42 : DEBUG    -> Height                   : 590
    2015-02-20 20:45:42 : DEBUG    -> Width                    : 215
    2015-02-20 20:45:42 : DEBUG -> MaxSize
    2015-02-20 20:45:42 : DEBUG    -> Height                   : 800
    2015-02-20 20:45:42 : DEBUG    -> Width                    : 215
    2015-02-20 20:45:42 : DEBUG -> MinSize
    2015-02-20 20:45:42 : DEBUG    -> Height                   : 455
    2015-02-20 20:45:42 : DEBUG    -> Width                    : 215
    2015-02-20 20:45:42 : DEBUG -> IconPath
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> Normal       : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\icons\kuler_icon_msg_D.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> Disbaled     : (null)
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> RollOver     : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\icons\kuler_icon_msg_D.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> DarkNormal   : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\icons\kuler_icon_msg_D.png
    2015-02-20 20:45:42 : DEBUG    -> IconPath -> DarkRollOver : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\icons\kuler_icon_msg_D.png
    2015-02-20 20:45:42 : DEBUG -> DefaultExtensionData        : (null)
    2015-02-20 20:45:42 : DEBUG -> SpecialExtensionData        : (null)
    2015-02-20 20:45:42 : DEBUG -> RequiredRuntimeList            : 1
    2015-02-20 20:45:42 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2015-02-20 20:45:42 : DEBUG    -> RequiredRuntime -> Version  : 5.0.0
    2015-02-20 20:45:42 : INFO  ExtensionManifest 'C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.webpa.crema\csxs\manifest.xml' contains '1' valid extensions for this host
    2015-02-20 20:45:42 : INFO  Found extension with id 'com.adobe.WEBPA.crema.saveforweb'
    2015-02-20 20:45:42 : DEBUG -> BasePath                    : C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.webpa.crema
    2015-02-20 20:45:42 : DEBUG -> ExtensionBundleId           : com.adobe.WEBPA.crema
    2015-02-20 20:45:43 : DEBUG -> ExtensionBundleVersion      : 1.0.0
    2015-02-20 20:45:43 : DEBUG -> ID                          : com.adobe.WEBPA.crema.saveforweb
    2015-02-20 20:45:43 : DEBUG -> Version                     : 1.1.0.148
    2015-02-20 20:45:43 : DEBUG -> MainPath                    : C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.webpa.crema\PSPanel\index.html
    2015-02-20 20:45:43 : DEBUG -> ScriptPath                  : (null)
    2015-02-20 20:45:43 : DEBUG -> ScriptEngineId              : com.adobe.WEBPA.crema.saveforweb_Engine_Id
    2015-02-20 20:45:43 : DEBUG -> AutoVisible                 : true
    2015-02-20 20:45:43 : DEBUG -> StartOn -> Event            : 0
    2015-02-20 20:45:43 : DEBUG -> Type                        : Modeless
    2015-02-20 20:45:43 : DEBUG -> Menu                        : Elemente extrahieren
    2015-02-20 20:45:43 : DEBUG -> MenuPlacement               : (null)
    2015-02-20 20:45:43 : DEBUG -> Size
    2015-02-20 20:45:43 : DEBUG    -> Height                   : 640
    2015-02-20 20:45:43 : DEBUG    -> Width                    : 980
    2015-02-20 20:45:43 : DEBUG -> MaxSize
    2015-02-20 20:45:43 : DEBUG    -> Height                   : 640
    2015-02-20 20:45:43 : DEBUG    -> Width                    : 980
    2015-02-20 20:45:43 : DEBUG -> MinSize
    2015-02-20 20:45:43 : DEBUG    -> Height                   : 640
    2015-02-20 20:45:43 : DEBUG    -> Width                    : 980
    2015-02-20 20:45:43 : DEBUG -> IconPath
    2015-02-20 20:45:43 : DEBUG    -> IconPath -> Normal       : (null)
    2015-02-20 20:45:43 : DEBUG    -> IconPath -> Disbaled     : (null)
    2015-02-20 20:45:43 : DEBUG    -> IconPath -> RollOver     : (null)
    2015-02-20 20:45:43 : DEBUG    -> IconPath -> DarkNormal   : (null)
    2015-02-20 20:45:43 : DEBUG    -> IconPath -> DarkRollOver : (null)
    2015-02-20 20:45:43 : DEBUG -> DefaultExtensionData        : (null)
    2015-02-20 20:45:43 : DEBUG -> SpecialExtensionData        : (null)
    2015-02-20 20:45:43 : DEBUG -> RequiredRuntimeList            : 1
    2015-02-20 20:45:43 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2015-02-20 20:45:43 : DEBUG    -> RequiredRuntime -> Version  : 5.0.0
    2015-02-20 20:45:43 : INFO  ExtensionManifest 'C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.photoshop.welcome\csxs\manifest.xml' contains '0' valid extensions for this host
    2015-02-20 20:45:43 : INFO 
    ********** Number of extensions found : 5 **********
    2015-02-20 20:45:43 : INFO  Register Extension called for Extension : KLR, ExtensionType : Trusted
    2015-02-20 20:45:43 : INFO  ----------------------------------------------------------------
    2015-02-20 20:45:43 : DEBUG Extension inPlayerType : 2
    2015-02-20 20:45:43 : DEBUG Extension mainUTF8Path : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\index.html
    2015-02-20 20:45:43 : DEBUG Extension iconPathNormal : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\icons\kuler_icon_msg_D.png
    2015-02-20 20:45:43 : DEBUG Extension iconPathRollOver: C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\KulerPanelHTMLBundle\icons\kuler_icon_msg_D.png
    2015-02-20 20:45:43 : DEBUG Extension iconPathDisable:
    2015-02-20 20:45:43 : DEBUG Extension windowType: Panel
    2015-02-20 20:45:43 : DEBUG Extension showWindowOnCreate: true
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry topleftx: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry toplefty: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry width: 215
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry height: 590
    2015-02-20 20:45:43 : DEBUG Extension minSize width: 215
    2015-02-20 20:45:43 : DEBUG Extension minSize height: 455
    2015-02-20 20:45:43 : DEBUG Extension maxSize width: 215
    2015-02-20 20:45:43 : DEBUG Extension maxSize height: 800
    2015-02-20 20:45:43 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:43 : INFO  Register Extension called for Extension : com.taptapideas.beautyretouchcc, ExtensionType : Trusted
    2015-02-20 20:45:43 : INFO  ----------------------------------------------------------------
    2015-02-20 20:45:43 : DEBUG Extension inPlayerType : 2
    2015-02-20 20:45:43 : DEBUG Extension mainUTF8Path : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\index.html
    2015-02-20 20:45:43 : DEBUG Extension iconPathNormal : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\icons\iconNormal.png
    2015-02-20 20:45:43 : DEBUG Extension iconPathRollOver: C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\icons\iconRollover.png
    2015-02-20 20:45:43 : DEBUG Extension iconPathDisable: C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.taptapideas.beautyretouchcc\icons\iconDisabled.png
    2015-02-20 20:45:43 : DEBUG Extension windowType: Panel
    2015-02-20 20:45:43 : DEBUG Extension showWindowOnCreate: true
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry topleftx: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry toplefty: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry width: 368
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry height: 380
    2015-02-20 20:45:43 : DEBUG Extension minSize width: 217
    2015-02-20 20:45:43 : DEBUG Extension minSize height: 200
    2015-02-20 20:45:43 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:43 : INFO  Register Extension called for Extension : com.adobe.WEBPA.crema.saveforweb, ExtensionType : Trusted
    2015-02-20 20:45:43 : INFO  ----------------------------------------------------------------
    2015-02-20 20:45:43 : DEBUG Extension inPlayerType : 2
    2015-02-20 20:45:43 : DEBUG Extension mainUTF8Path : C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.webpa.crema\PSPanel\index.html
    2015-02-20 20:45:43 : DEBUG Extension iconPathNormal :
    2015-02-20 20:45:43 : DEBUG Extension iconPathRollOver:
    2015-02-20 20:45:43 : DEBUG Extension iconPathDisable:
    2015-02-20 20:45:43 : DEBUG Extension windowType: Modeless
    2015-02-20 20:45:43 : DEBUG Extension showWindowOnCreate: true
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry topleftx: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry toplefty: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry width: 980
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry height: 640
    2015-02-20 20:45:43 : DEBUG Extension minSize width: 980
    2015-02-20 20:45:43 : DEBUG Extension minSize height: 640
    2015-02-20 20:45:43 : DEBUG Extension maxSize width: 980
    2015-02-20 20:45:43 : DEBUG Extension maxSize height: 640
    2015-02-20 20:45:43 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:43 : INFO  Register Extension called for Extension : com.adobe.behance.shareonbehance.html.extension, ExtensionType : Trusted
    2015-02-20 20:45:43 : INFO  ----------------------------------------------------------------
    2015-02-20 20:45:43 : DEBUG Extension inPlayerType : 2
    2015-02-20 20:45:43 : DEBUG Extension mainUTF8Path : C:\Program Files\Adobe\Adobe Photoshop CC 2014\Required\CEP\extensions\com.adobe.behance.shareonbehance.html\index.html
    2015-02-20 20:45:43 : DEBUG Extension iconPathNormal :
    2015-02-20 20:45:43 : DEBUG Extension iconPathRollOver:
    2015-02-20 20:45:43 : DEBUG Extension iconPathDisable:
    2015-02-20 20:45:43 : DEBUG Extension windowType: ModalDialog
    2015-02-20 20:45:43 : DEBUG Extension showWindowOnCreate: true
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry topleftx: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry toplefty: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry width: 950
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry height: 530
    2015-02-20 20:45:43 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:43 : INFO  Register Extension called for Extension : com.adobe.DesignLibraries.angular, ExtensionType : Trusted
    2015-02-20 20:45:43 : INFO  ----------------------------------------------------------------
    2015-02-20 20:45:43 : DEBUG Extension inPlayerType : 2
    2015-02-20 20:45:43 : DEBUG Extension mainUTF8Path : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\index.html
    2015-02-20 20:45:43 : DEBUG Extension iconPathNormal : C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\images\IconLight.png
    2015-02-20 20:45:43 : DEBUG Extension iconPathRollOver: C:\Program Files (x86)\Common Files\Adobe\CEP\extensions\com.adobe.DesignLibraries.angular\images\IconLight.png
    2015-02-20 20:45:43 : DEBUG Extension iconPathDisable:
    2015-02-20 20:45:43 : DEBUG Extension windowType: Panel
    2015-02-20 20:45:43 : DEBUG Extension showWindowOnCreate: true
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry topleftx: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry toplefty: 0
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry width: 239
    2015-02-20 20:45:43 : DEBUG Extension defaultGeometry height: 300
    2015-02-20 20:45:43 : DEBUG Extension minSize width: 239
    2015-02-20 20:45:43 : DEBUG Extension minSize height: 165
    2015-02-20 20:45:43 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:43 : INFO  PlugPlugSetMenu() callback called for main menu. Extension : , inMenuPosition: (null), Menu: [{menuId: '1',nameUtf8: 'Adobe Color-Themen',extensionId: 'KLR'},{menuId: '4',nameUtf8: 'Auf Behance teilen',extensionId: 'com.adobe.behance.shareonbehance.html.extension'},{menuId: '2',nameUtf8: 'Beauty Retouch CC',extensionId: 'com.taptapideas.beautyretouchcc'},{menuId: '5',nameUtf8: 'Bibliotheken',extensionId: 'com.adobe.DesignLibraries.angular'},{menuId: '3',nameUtf8: 'Elemente extrahieren',extensionId: 'com.adobe.WEBPA.crema.saveforweb'}]
    2015-02-20 20:45:43 : INFO  PlugPlugSetMenu() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:43 : INFO  ExtensionLoadService activated
    2015-02-20 20:45:43 : DEBUG PlugPlugAMTRequest() callback called. Request: <?xml version="1.0" encoding="UTF-8"?><PlugPlugEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./AmtlibPlugPlug.xsd"><request id="1" functionName="getProductLicenseInfo"><arguments/></request></PlugPlugEnvelope>
    2015-02-20 20:45:43 : DEBUG PlugPlugAMTRequest() return value: PlugPlugErrorCode_success
    2015-02-20 20:45:43 : DEBUG PlugPlugAMTRequest() XML returned chunk: <?xml version="1.0" encoding="utf-8" ?>
    <PlugPlugEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./AmtlibPlugPlug.xsd">
        <response id="1" functionName="getProductLicenseInfo">
            <AdobeIDCreated>1</AdobeIDCreated>
            <LicenseType>Retail</LicenseType>
            <LicenseExpires>0</LicenseExpires>
            <LicenseRefreshes>0</LicenseRefreshes>
            <LicenseEncryptedSerial>909700749228412815900390</LicenseEncryptedSerial>
            <LicensedProductName>EPIC_APP_598</LicensedProductName>
            <SecondsSinceActivation>0</SecondsSinceActivation>
            <SecondsSinceSerialization>1901773</SecondsSinceSerialization>
            <SecondsBeforeExpiration>0</SecondsBeforeExpiration>
            <SecondsBeforeRefresh>0</SecondsBeforeRefresh>
            <AMTLibResponse>6</AMTLibResponse>
            <LicenseStatus>3</LicenseStatus>
            <SerializationGraceInseconds>3888000</SerializationGraceInseconds>
            <ProductCycle>8</ProductCycle>
            <PendingClaims>
                <PendingClaim>
                    <AdobeID>E14A8A53C31C390693BC48908C0C47F8</AdobeID>
                    <TimeStamp>1422559768</TimeStamp>
                </PendingClaim>
            </PendingClaims>
            <IsSuite>SUITE</IsSuite>
            <APIVersion>2.0</APIVersion>
            <PersonGUIDWithAuthSource>097935244F95E8AA0A490D45@AdobeID</PersonGUIDWithAuthSource>
        </response>
    </PlugPlugEnvelope>
    2015-02-20 20:45:43 : DEBUG PlugPlugNotifyStateChange called for extension : (null),  inEvent->event : PlugPlugGoOnline
    2015-02-20 20:45:43 : DEBUG Return value for PlugPlugNotifyStateChange : PlugPlugErrorCode_success
    2015-02-20 20:45:43 : INFO  PlugPlugLoadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:43 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, LoadExtension com.taptapideas.beautyretouchcc begin.
    2015-02-20 20:45:43 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Verify signature begin.
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Verify signature end.
    2015-02-20 20:45:44 : INFO  RED 83.000000, GREEN 83.000000, BLUE 83.000000, ALPHA 255.000000
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, PrepareLoad begin.
    2015-02-20 20:45:44 : INFO  GetPanel() callback called. Extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : INFO  GetPanel() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init ContentHwnd...
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init MessageHwnd...
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init RPC...
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init client process...
    2015-02-20 20:45:44 : WARN  PlugPlugSetup must be called first
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, PrepareLoad end.
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, LoadExtension com.taptapideas.beautyretouchcc end.
    2015-02-20 20:45:44 : INFO  Return value of PlugPlugLoadExtension call : PlugPlugErrorCode_success
    2015-02-20 20:45:44 : ERROR CEPHtmlEngine exits, unload extension
    2015-02-20 20:45:44 : INFO  PlugPlugUnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : INFO  UnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : INFO  <ExtensionUnloadedEvent><Id>com.taptapideas.beautyretouchcc</Id><ClosingType>3</ClosingTy pe></ExtensionUnloadedEvent>
    2015-02-20 20:45:44 : INFO  Return value of PlugPlugUnloadExtension call : PlugPlugErrorCode_success
    2015-02-20 20:45:44 : INFO  PlugPlugUnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : ERROR Failed to unload extension com.taptapideas.beautyretouchcc as it is not loaded
    2015-02-20 20:45:44 : INFO  Return value of PlugPlugUnloadExtension call : PlugPlugErrorCode_extensionNotFound
    2015-02-20 20:45:44 : INFO  PlugPlugLoadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, LoadExtension com.taptapideas.beautyretouchcc begin.
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Verify signature begin.
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Verify signature end.
    2015-02-20 20:45:44 : INFO  RED 83.000000, GREEN 83.000000, BLUE 83.000000, ALPHA 255.000000
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, PrepareLoad begin.
    2015-02-20 20:45:44 : INFO  GetPanel() callback called. Extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : INFO  GetPanel() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init ContentHwnd...
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init MessageHwnd...
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init RPC...
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init client process...
    2015-02-20 20:45:44 : WARN  PlugPlugSetup must be called first
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, PrepareLoad end.
    2015-02-20 20:45:44 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, LoadExtension com.taptapideas.beautyretouchcc end.
    2015-02-20 20:45:44 : INFO  Return value of PlugPlugLoadExtension call : PlugPlugErrorCode_success
    2015-02-20 20:45:44 : ERROR CEPHtmlEngine exits, unload extension
    2015-02-20 20:45:44 : INFO  PlugPlugUnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : INFO  UnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : INFO  <ExtensionUnloadedEvent><Id>com.taptapideas.beautyretouchcc</Id><ClosingType>3</ClosingTy pe></ExtensionUnloadedEvent>
    2015-02-20 20:45:44 : INFO  Return value of PlugPlugUnloadExtension call : PlugPlugErrorCode_success
    2015-02-20 20:45:44 : INFO  PlugPlugUnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:44 : ERROR Failed to unload extension com.taptapideas.beautyretouchcc as it is not loaded
    2015-02-20 20:45:44 : INFO  Return value of PlugPlugUnloadExtension call : PlugPlugErrorCode_extensionNotFound
    2015-02-20 20:45:45 : INFO  PlugPlugLoadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:45 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, LoadExtension com.taptapideas.beautyretouchcc begin.
    2015-02-20 20:45:45 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Verify signature begin.
    2015-02-20 20:45:46 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Verify signature end.
    2015-02-20 20:45:46 : INFO  RED 83.000000, GREEN 83.000000, BLUE 83.000000, ALPHA 255.000000
    2015-02-20 20:45:46 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, PrepareLoad begin.
    2015-02-20 20:45:46 : INFO  GetPanel() callback called. Extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:46 : INFO  GetPanel() callback returned: PlugPlugErrorCode_success
    2015-02-20 20:45:46 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init ContentHwnd...
    2015-02-20 20:45:46 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init MessageHwnd...
    2015-02-20 20:45:46 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init RPC...
    2015-02-20 20:45:46 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, Init client process...
    2015-02-20 20:45:46 : WARN  PlugPlugSetup must be called first
    2015-02-20 20:45:46 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, PrepareLoad end.
    2015-02-20 20:45:46 : INFO  TEST-LOADEXTENSION-PERFORMANCE, PLUGPLUG, LoadExtension com.taptapideas.beautyretouchcc end.
    2015-02-20 20:45:46 : ERROR CEPHtmlEngine exits, unload extension
    2015-02-20 20:45:46 : INFO  Return value of PlugPlugLoadExtension call : PlugPlugErrorCode_success
    2015-02-20 20:45:46 : INFO  PlugPlugUnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:46 : INFO  UnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:46 : INFO  <ExtensionUnloadedEvent><Id>com.taptapideas.beautyretouchcc</Id><ClosingType>3</ClosingTy pe></ExtensionUnloadedEvent>
    2015-02-20 20:45:46 : INFO  Return value of PlugPlugUnloadExtension call : PlugPlugErrorCode_success
    2015-02-20 20:45:46 : INFO  PlugPlugUnloadExtension called for extension : com.taptapideas.beautyretouchcc
    2015-02-20 20:45:46 : ERROR Failed to unload extension com.taptapideas.beautyretouchcc as it is not loaded
    2015-02-20 20:45:46 : INFO  Return value of PlugPlugUnloadExtension call : PlugPlugErrorCode_extensionNotFound
    2015-02-20 20:45:48 : INFO  PlugPlugTerminate called
    2015-02-20 20:45:48 : INFO  Return value for PlugPlugTerminate: PlugPlugErrorCode_success
    I have de- and reinstalled PS, CC and Java for many times and cleanedup my registry but it still doenst work. After opening the extension it closed immediatly :/
    Please help me

    Here are couple suggestions you could try
    #1. Change your debug port to something else e.g. 8899
    #2. Add this line to your main.js, Though its not mandatory with CEP 4.2 or later
    window.__adobe_cep__.showDevTools();
    #3. Make sure your .debug file is created using command line tool and ends with newline.
    #4. Double sure your .debug file is in root of extension.
    Mac

  • When I try entering a new event in iCal on my MacBook Air, I get an error message popping up on my screen that says: The request for account "iCloud" failed.  The server responded with "502" to operation CalDAVSetPropertyQueueableOperation. Help!!??

    When I try entering a new event in iCal on my MacBook Air, I get an error message popping up on my screen that says:
    The server responded with “502”
    The request for account “iCloud” failed. 
    The server responded with “502” to operation CalDAVSetPropertyQueueableOperation.
    The request for account “iCloud” failed.
    I am then given the option of staying Online or going Offline.
    Can anyone help me?
    thanks

    Hello b.krushel,
    Thank you for using Apple Support Communities
    Any number of things could cause this issue, so I would recommend this article named iCloud: Troubleshooting iCloud Calendar found here http://support.apple.com/kb/TS3999.
    These sections in particular:
    General Troubleshooting
    Make sure there are no current issues listed on the System Status that affect iCloud Calendar. The System Status is located on the iCloud Support webpage.
    Make sure you have fully enabled iCloud Calendar for the client you are using (for more setup and troubleshooting information on iOS, OS X, Windows and iCloud.com, see the additional details below).
    Check to see if the issue you are seeing is covered in iCloud Help. To search iCloud Help, visit help.apple.com/icloud.
    Check your settings and preferences as something may not be set up correctly. For example, having incorrect date and time settings can cause issues which are easily resolved by entering the appropriate settings.
    Troubleshooting Calendar on OS X Mountain Lion (iCal on OS X Lion)Note: For instructions on setting up iCloud Calendar with Calendar or iCal on your Mac, see iCloud Setup.If you are having trouble with Calendar or iCal on a Mac and you are using iCloud Calendar, try each of these steps, testing after each to see if the issue is resolved:
    Make sure you are using OS X Lion v10.7.2 or later. Click here for help verifying the version of OS X you are using.
    Make sure your computer is online. Attempt to view www.apple.com and iCloud.com. If you can't connect to the Internet, your iCloud calendars and events will not update in iCal. Click here for more information about troubleshooting your Internet connection.
    Verify that your iCloud member name is entered into the iCloud Preference pane in System Preferences. See iCloud Setup for more information about setting up iCloud on a Mac.
    Make sure you enter and update calendar information in the iCloud section of Calendar or iCal. Only calendars and events in the iCloud section of the Calendar or iCal Calendar list will be pushed to iCloud. Both Calendar and iCal for the Mac support the display of and interaction with multiple accounts and datastores, for example, iCloud, On My Mac, Exchange, Google, and so on. This makes it easy to create or modify events or calendars in a section of  Calendar or iCal that may not be updating iCloud. Learn more about moving local calendars to iCloud.
    In some cases, you may find that you have data duplicated in both the local On My Mac and the iCloud sections of Calendar or iCal. Learn more about resolving this issue.
    You can make the iCloud calendar your default calendar for all new events. In Calendar on OS X Mountain Lion, choose Calendar > Preferences > General, or in OS X Lion, choose iCal > Preferences > Generaland under the Default Calendar heading, select one of the Calendars under the iCloud heading. Close the Preferences window to save this change.
    If recent changes simply don't appear, try forcing Calendar or iCal to refresh by selecting Refresh All from theCalendar menu.
    Make sure your account was successfully created in Calendar on your Mac (or iCal). After upgrading to iCloud Calendar, you may need to quit and reopen Calendar (or iCal). To confirm your account is configured correctly in iCal:
    Open Calendar (or iCal).
    Open Calendar (or iCal) Preferences.
    Click Accounts. You should see an account with your iCloud member name entered.
    Turn iCloud Calendars off and back on
    Quit Calendar (or iCal).
    Choose Apple () menu > System Preferences > iCloud.
    Remove the checkmark in the checkbox next to Calendars.
    Close System Preferences and wait about a minute.
    Open System Preferences and choose iCloud.
    Replace the checkmark next to Calendars.
    Close System Preferences.
    Open Calendar (or iCal) and test to see if the issue has been resolved.
    Restart your computer. This may sound simple, but it does reinitialize your network and application settings and can frequently resolve issues.
    Take care,
    Sterling

  • The share operation "master file" has failed. the operation could not be completed because an error occurred creating Frame 93164 (error-1). how can i find the frame?

    The share operation "master file" has failed. the operation could not be completed because an error occurred creating Frame 93164 (error-1). how can i find the frame?

    https://discussions.apple.com/thread/6219522

  • DVD player does not play - Error message "Create Overlay Failed

    Can anyone please help. The player on my Equium does not playback any DVDs using either InterVideo WinDVD. Error message "Create Overlay Failed ... Please lower your screen resolution or screen depth." Any help appreciated. Thanks Owen

    Horwath
    Thanks for pointing me in the direction of VLC Player. I had no idea what VLC is but it seems a safe (and free) feature. I googled it and downloaded latest version for XP. All DVDs now play perfectly! Still no joy with other players but who cares. Many thanks, full marks. Owen

  • Backup failed with Error: (-50) Creating Directory

    Repeats ad nauseum.
    This is backing up to a second internal drive that is an exact duplicate (in terms of HD model and size).
    Does anyone know what Error -50 means? Lack of permissions? Invalid name (doesn't seem like it)?
    8/30/08 9:06:37 AM /System/Library/CoreServices/backupd Starting standard backup
    8/30/08 9:06:37 AM /System/Library/CoreServices/backupd Backing up to: /Volumes/Sliffy Time/Backups.backupdb
    8/30/08 9:06:58 AM /System/Library/CoreServices/backupd Error: (-50) Creating directory 2008-08-30-090658.inProgress
    8/30/08 9:06:58 AM /System/Library/CoreServices/backupd Failed to make snapshot container.
    8/30/08 9:07:03 AM /System/Library/CoreServices/backupd Backup failed with error: 2

    Hi Glenn,
    Thanks for the suggestion. Nope, it's not listed. The only thing listed is my Time Machine volume.
    After a reboot, Time Machine seems to be working. It's making backups on schedule and the logs look good, not reporting any strangeness.
    A bit bummed about these phantom errors that go away on reboot. I'll keep on eye on the error/reboot frequency.
    Rob

  • Query doesn't work in APD, Error: column store error: fail to create scenario: [340 2048

    Hi Experts,
    We got a problem here.
    We have a query ran without any problems in RSRT. But when I try to put it as data sources(infoprovider) in APD.
    I got following error:
    column store error: fail to create scenario: [340 2048
    We are in BW731006 & ABAP731006.
    Any advise?
    Thanks in advance!
    Tengran

    Hi,
    Can you check this part in error mentioned by clicking as highlighted in red box. It will give you a correct idea about the issue ::
    Also share the detailed error with us as well.
    Best Regards,
    Arpit

  • ERROR: Cannot create authcontext with null org-Naming query failed  code:21

    I use OpenSSO Enterprise 8.0 Update 1 Patch1 Build 6.1(2009-June-9 12:56)
    I try to evaluate the Apache 2.2 web agent.
    It's been installed without errors, and both the OpenSSO and Apache server restarted.
    The agent profile's been created. Also, I use the default (OpenDS) configuration repository
    for OpenSSO, but an external (DSEE) user data directory.
    I think I did all the required steps with regards to both directories, since I don't see any error
    in the LDAP logs, each entry seems to be found as expected, the BIND operations are all
    successfull.
    Also, I use a sub-realm rather than the default top realm, and thus, I've modified the agent configuration
    (in the agent profile) so that the login URL is now ... /UI/Login?realm=myrealm
    When I try to access the Apache homepage, I get an error 500. The most recent OpenSSO server log file
    (...../opensso/debug/Authentication) contains the following message:
    ERROR: Cannot create authcontext with null org
    The most recent agent log file (....../apache22_agent/Agent_001/logs/debug/amAgent) has the following error:
    2009-07-07 17:08:11.992 Error 10513:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    I don't know what else I can do to debug this problem and find a solution. Any idea ?

    Thank you Shubba,
    With all available log details enabled, I now have the following messages on the agent side:
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 all: No value specified for key com.sun.identity.agents.config.profile.attribute.mapping, using default value .
    2009-07-09 10:14:51.731 Debug 5613:80149a50 NamingService: BaseService::doRequest(): Using server: http://portable.antibes.net:8080/opensso/namingservice.
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 NamingService:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <RequestSet vers="1.0" svcid="com.iplanet.am.naming" reqid="10">
    <Request><![CDATA[                                                                                                                      
      <NamingRequest vers="3.0" reqid="2" sessid=""AQIC5wM2LY4SfcyaGFgc5h9Y7/kpf4f//ml82oVfNlbWxQE=@AAJTSQACMDE=#"">                             <GetNamingProfile>                                                                                                                         </GetNamingProfile>                                                                                                                        </NamingRequest>]]> </Request>
    </RequestSet>
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest Request line: POST /opensso/namingservice HTTP/1.0
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Cookie and Headers =Host: portable.antibes.net
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Content-Length =Content-Length: 334
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Header Suffix =Accept: text/xml
    Content-Type: text/xml; charset=UTF-8
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Total chunks: 7.
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Sent 7 chunks.
    2009-07-09 10:14:51.728 Debug 5613:80149a50 NamingService: HTTP Status = 500 (Internal Server Error)
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading headers.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Server: Apache-Coyote/1.1
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Content-Type: text/html;charset=utf-8
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Date: Thu, 09 Jul 2009 08:14:51 GMT
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Connection: close
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading body content of length: 13830487939496281954
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 all: Connection::waitForReply(): returns with status success.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Completed processing the response with status: success
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: <html><head><title>Apache Tomcat/6.0.18 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 500 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Exception report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The server encountered an internal error () that prevented it from fulfilling this request.</u></p><p><b>exception</b> <pre>javax.servlet.ServletException: AMSetupFilter.doFilter
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:117)
    </pre></p><p><b>root cause</b> <pre>java.lang.NullPointerException
    com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    com.iplanet.services.comm.server.PLLRequestServlet.doPost(PLLRequestServlet.java:134)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:91)
    </pre></p><p><b>note</b> <u>The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.18</h3></body></html>
    2009-07-09 10:14:51.729 Warning 5613:80149a50 NamingService: BaseService::doHttpPost() failed, HTTP error = 500
    2009-07-09 10:14:51.729 Debug 5613:80149a50 NamingService: NamingService()::getProfile() returning with error code HTTP error.
    2009-07-09 10:14:51.729 Error 5613:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    In my Tomcat server (OpenSSO server web container), I have the following errors:
    Jul 9, 2009 10:12:35 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 22746 ms
    [Fatal Error] :2:46: Element type "NamingRequest" must be followed by either attribute specifications, ">" or "/>".
    java.lang.NullPointerException
    at com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    at com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    at com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    at ...
    It seems like the problem comes from the couple of closing square brackets in the NamingRequest tag:
    </NamingRequest>]]>
    I don't know where it comes from, so if you've an idea I'd enjoy .
    Cheers,

  • PeopleSoft Web Services Connector Error – Failed to create a 'RequestMessageMemberType' . . .

    Hello all,
    I am new to FIM and am currently in the process of setting-up a PeopleSoft
    Web Services MA.  I am receiving the following error in the FIM Sync Manager in the Create Management Agent dialog in the Global Parameters section:
    “Test Connection failed with the following error: Failed
    to create a ‘RequestMessageMemberType’ from the text d:Find__CompIntfc__CI_PERSONAL_DATATypeShape’. Below is the information about configured endpoint address(es): http://<FQDN>:10320/PSIGW/PeopleSoftServiceListeningConnector/HR92DEV”.
    I had no issues with the discovery process in the Web Services Configuration tool.  The following parameters were supplied for the config file:
    WSDL: 
    http://<FQDN>:10320/PSIGW/PeopleSoftServiceListeningConnector/HR92DEV/PSCONNECTORWEBSERVICE.1.wsdl
    Namespace: 
    targetNamespace
    Basic authentication <user>, <password>; Interoperable:
    PasswordText
    Has anyone else received this error message or can anyone give me some advice on how to troubleshoot?  Any help would be greatly appreciated.
    Thanks.

    Hello all,
    I am new to FIM and am currently in the process of setting-up a PeopleSoft
    Web Services MA.  I am receiving the following error in the FIM Sync Manager in the Create Management Agent dialog in the Global Parameters section:
    “Test Connection failed with the following error: Failed
    to create a ‘RequestMessageMemberType’ from the text d:Find__CompIntfc__CI_PERSONAL_DATATypeShape’. Below is the information about configured endpoint address(es): http://<FQDN>:10320/PSIGW/PeopleSoftServiceListeningConnector/HR92DEV”.
    I had no issues with the discovery process in the Web Services Configuration tool.  The following parameters were supplied for the config file:
    WSDL: 
    http://<FQDN>:10320/PSIGW/PeopleSoftServiceListeningConnector/HR92DEV/PSCONNECTORWEBSERVICE.1.wsdl
    Namespace: 
    targetNamespace
    Basic authentication <user>, <password>; Interoperable:
    PasswordText
    Has anyone else received this error message or can anyone give me some advice on how to troubleshoot?  Any help would be greatly appreciated.
    Thanks.

  • Xcode ERROR: Failed to create an alert for ID "enabled" based on defaults: 1

    I installed OX 10.8 and xcode 4.4 and when I run any simple application for simulator it generated error in console:
    Xcode[7808]: ERROR: Failed to create an alert for ID "enabled" based on defaults: 1
    I reinstalled with clean xcode, but it did not help.  I see the building freeze when "coping 2 of 2 resources to product
    Also, xcode freezes when I jusy click on Mainstoryboard.storyboard file.
    I found a few posts with the same ERROR but no clear fix.  Any help will be appriciated.

    Hi, i had the same problem yesterday and after searching I found no solution to this error.
    Today i just burned the original Mountain Lion.dmg to a portable hard driver then reinstall the OS. And it seemed that the os had been restored and the error had been fixed.
    And, i guess there's some app that changes some documents of the system. So when you rewrite the os, u get the bug fixed.
    Good luck to you guys.

  • Encountered an error in repository runtime extension;Create LLang procedure failed

    Hi Guys 
    I am implementing Apriori algorithm through graphical way.  My model is validated but while activating this i am getting the error' Encountered an error in repository runtime extension;Create LLang procedure failed'  Here i am attaching the model which i have created.
    Regards
    Karuna

    Hi Folks,
    I resolved this issue by setting schema as _SYS_AFL...  Thanks for your help.
    Regards
    Karuna

Maybe you are looking for

  • All Annotation options unavailable in movie created by iPhoto

    I am using QT Pro 7.1.3. I exported an iPhoto slide show to a 640x480 movie. I'd like to set it to play in full screen when opened using the annotation feature in the Movie Properties screen. No matter what I select, none of the annotation options in

  • How to create a time column

    hi all i have a table to define the users i want to add a new two columns that define the time which the user can login in that time defined in the table of the user and every time the user login , it will check the login time with the time interval

  • External Catalog Call Structures

    We are on SRM 4.0 and integrated ITS.  We are using the standard call structure for external catalogs which opens in a new window.  However, this is causing grief with our users because they tend to stay in the catalogs too long and eventually timeou

  • ON UPDATE CASCADE and Autoincrement primary key with Oracle SQL Developer

    hello everybody, I want to know if Oracle SQL Developer manage autoincrement on primary key and "ON UPDATE CASCADE" when i migrate (with data) SQL Server database in Oracle database. Can you help me ? Thanks for your suggestions.

  • Rotating while reading IBooks done in IBooks Author?

    I came across this book in the Itunes store, it is an example of what a client wants for a book made in I Books Author. I noticed that it has a "Rotate Your IPad To Keep Reading" feature. I have never come across this in IBA, just in case you do not