XMLLoader

We have implemented the XMLLoader utility provided by Steve Muench i.e. the suite of java programs (in his book Oracle XML Applications) to load XML data files into Oracle database, using specific stylesheets in Oracle 8.1.7.4.
However when compiling the same java code against Oracle 9.2.0.4, we are getting compile time errors, complaining about a number fo missing Oracle java libraries e.g. SAXException classes etc.
Error:
lsg19n01:/apps/tdbst/apps01/TXDBST/src/java> javac DocumentHandler.java
Note: DocumentHandler.java uses or overrides a deprecated API. Recompile with "-deprecation" for details.
1 warning
lsg19n01:/apps/tdbst/apps01/TXDBST/src/java> javac -deprecation DocumentHandler.java
DocumentHandler.java:22: Note: interface org.xml.sax.AttributeList has been deprecated.
void startElement(String p0, AttributeList p1) throws SAXException;
^
Note: DocumentHandler.java uses or overrides a deprecated API. Please consult the documentation for a better alternative.
1 warning
Can any one please help and suggest the course of action ?

The error is happening because the directory or JAR file where
XMLLoader.class exists is not in your CLASSPATH.

Similar Messages

  • Problem with java XMLLoader

    I have used the XMLLoader utility in Steves book and it appears to work, when I run this from the command line I get the message:
    Connecting as xmluser at jdbc:oracle:thin:@pan:1521:reqpro
    00001: Inserted.
    Processed 1 Documents
    however the tables in xmlusers schema still appear to be empty.
    null

    I haven't had the pleasure! But I must admit, it does SOUND nice. Especially for multi-tier web development.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Steven Muench ([email protected]):
    Not to mention, JDeveloper. :-)
    Oracle's excellent Java IDE.<HR></BLOCKQUOTE>
    null

  • Catch multiple SAXParseExceptions in XMLLoader?

    I'm feeding Steven Muench's XMLLoader (or a derivitive of it) an XML file that it will "split" into pieces and process. There is a "catch" block in main() for catching SAXParseExceptions, but I was hoping to catch multiple ones by putting that block in split(). I never get anything but the first error of the entire document. I was hoping to have an exception for each error of each subdocument. I would understand this if the parser just quit after the first error, but subsequent "pieces" are parsed and loaded into tables. I'd like to print out the error for that piece in split() and return so that split() can be called again, etc. Is this doable Steven?
    Thanks,
    Mike

    Correction. The try/catch is in the XMLLoader method. Sorry.
    Anyone got any ideas on this topic?
    null

  • Size Limits to xmlgen.insertXML and Steves XMLLoader

    Hi,
    What are the size limits are for xmlgen.insertXML? Can you only insert a varchar sized document? i.e. not a clob directly? - It always seems to fail past a certain document size (about 1600 records of a table with one number column)
    I've also tried using XMLLoader from Steves book - but that failed on large tables too. (12,000 records and 20 columns).
    Any help much appreciated!
    Simon.
    null

    Hi,
    As everyone knows ;-) there is no memory probems in java, but...
    I was able load clobs and long varchar2 columns into the database, but it used to hung from time to time - I'm using the XSQL commandLine and servlet on both unix and NT.
    I've found out that some of the problems are related to the jdk, the hunging problem on mass load was solved when I moved to jdk 1.2.2... and no version earlier, also I think I've installed a solaris patch relating to java, but I don't realy remember.
    By the way, If you are using clobs try using thin driver instead of oci8 driver it solve some problems for me.
    It it always worse checking your rollback segments and so.
    Hadar

  • Please I need a Little Help with xmlloader

    Hello pretty people,
    Could someone help me with this code?
    I have an xmlloader Class, which load an xml file.
    This is the code...when I trace the xml, it load with any problem but when
    I want that load it, nothing happen, and there is no throw an error too.
    Would you please tell me why nothin happen? I am using the main time.
    Thanks in advance for some help.
    Regards
    Joselyn
    import flash.events.Event;
    import com.greensock.TweenLite;
    import com.greensock.easing.Back;
    // XML LISTS //
    // ========= //
    var projectTitle:XMLList;
    var projectImage:XMLList;
    var projectInfo:XMLList;
    var projectContent:XMLList;
    var projectClient:XMLList;
    var projectMedia:XMLList;
    var projectTechnology:XMLList;
    var projectLink:XMLList;
    var newsTitle:XMLList;
    var newsInfo:XMLList;
    var newsContent:XMLList;
    var newsTitleArray:Array;
    var newsInfoArray:Array;
    var newsContentArray:Array;
    // number of items
    var projectsNum:Number;
    var newsNum:Number;
    // LOAD XML //
    // ======== //
    var xml:XMLLoader = new XMLLoader(this,"data.xml");
    // function called when XML is loaded
    function getXML(xmlData:XML):void {
    // STORING RELEVANT DATA INTO LISTS FOR LATER ACCESS //
    projectTitle = xmlData.projects.project.title;
    projectImage = xmlData.projects.project.image_path;
    projectInfo = xmlData.projects.project.info;
    projectContent = xmlData.projects.project.content;
    projectClient = xmlData.projects.project.client;
    projectMedia = xmlData.projects.project.media;
    projectTechnology = xmlData.projects.project.technology;
    projectLink = xmlData.projects.project.link;
    newsTitle = xmlData.news.article.title;
    newsInfo = xmlData.news.article.info;
    newsContent = xmlData.news.article.content;
    projectsNum = projectTitle.length();
    newsNum = newsTitle.length();
    trace(projectInfo);
    newsTitleArray = xmlData.news.article.title.text().toXMLString().split("\n") ;
    newsTitleArray.reverse();
    newsInfoArray = xmlData.news.article.info.text().toXMLString().split("\n") ;
    newsInfoArray.reverse();
    newsContentArray = xmlData.news.article.content.text().toXMLString().split("\n") ;
    newsContentArray.reverse();
    //this is one part of the complete cody
    //CONTAINER FOR SCROLLING
    var panelContainer:Sprite = new Sprite();
    addChild(panelContainer);
    //ARRAY FOR REMOVING AND ADDING LISTENERS
    var panelArray:Array = new Array();
    var MT:MovieClip = new MovieClip(); //before I declare this variable to load the xml, was the problem//
    //ADDING PROJECTPANEL IN A LOOP
    for (var i:Number=0; i<MT.projectsNum; i++){
        var projectPanel:ProjectPanel = new ProjectPanel();
        //INSERT XML CONTENT
        projectPanel.title.text = MT.projectTitle[i];
        projectPanel.info.text = MT.projectInfo[i];
        projectPanel.content.text = MT.projectContent[i].substr(0,150)+"...Ver mas";
        projectPanel.loadImage(MT.projectImage[i]);
        projectPanel.x = i*(projectPanel.width+5);
        panelContainer.addChild(projectPanel);
        panelArray.push(projectPanel);
        //listener for click on ProjectPanel
        projectPanel.addEventListener(MouseEvent.CLICK, onClick); 
    function onClick(evt:MouseEvent):void{
    for(var i:Number = 0; i<MT.projectsNum; i++){
      panelContainer[i].removeEventListener(MouseEvent.CLICK, onClick);
    removeChild(panelContainer);
    TweenLite.to(panelContainer, 0.5, {y:stage.stageHeight, ease:Back.easeIn});
    this.addFullPanel();
    removeListeners();
    function removeListeners():void{
    for(var i:Number = 0; i<MT.projectsNum; i++) {
      panelContainer[i].removeEventListener(MouseEvent.CLICK, onClick);
    function addListeners():void{
    for(var i:Number = 0; i<MT.projectsNum; i++) {
      panelContainer[i].addEventListener(MouseEvent.CLICK, onClick);
    function slideUp():void{
    TweenLite.to(panelContainer, 0.5, {y:0, ease:Back.easeOut});
    stage.addEventListener(MouseEvent.MOUSE_MOVE, onMove);
    function onMove(evt:MouseEvent):void {
    //trace(mouseX);
    if(fullProjectPanelUp==false){
      TweenLite.to(panelContainer, 0.3, { x:-(stage.mouseX/800)*panelContainer.width+stage.stageWidth/2});
      //tweenPanelContainer = new Tween(panelContainer, "alpha", Strong.easeOut, 0, 1, 3, true);

    Hello Kglad:
    Thank you I copy and paste the complete code
    I wanted to add that I am using URLLoader class is to send you to the previous comment.
    Regards
    Joselyn
    // XML LISTS //
    // ========= //
    var projectTitle:XMLList;
    var projectImage:XMLList;
    var projectInfo:XMLList;
    var projectContent:XMLList;
    var projectClient:XMLList;
    var projectMedia:XMLList;
    var projectTechnology:XMLList;
    var projectLink:XMLList;
    var newsTitle:XMLList;
    var newsInfo:XMLList;
    var newsContent:XMLList;
    var newsTitleArray:Array;
    var newsInfoArray:Array;
    var newsContentArray:Array;
    // NUMS ITEMS
    var projectsNum:Number;
    var newsNum:Number;
    // LOAD XML //
    // ======== //
    var xml:XMLLoader = new XMLLoader(this,"data.xml");
    // function called when XML is loaded
    function getXML(xmlData:XML):void {
    // STORING RELEVANT DATA INTO LISTS FOR LATER ACCESS //
    projectTitle = xmlData.projects.project.title;
    projectImage = xmlData.projects.project.image_path;
    projectInfo = xmlData.projects.project.info;
    projectContent = xmlData.projects.project.content;
    projectClient = xmlData.projects.project.client;
    projectMedia = xmlData.projects.project.media;
    projectTechnology = xmlData.projects.project.technology;
    projectLink = xmlData.projects.project.link;
    newsTitle = xmlData.news.article.title;
    newsInfo = xmlData.news.article.info;
    newsContent = xmlData.news.article.content;
    projectsNum = projectTitle.length();
    newsNum = newsTitle.length();
    trace(xmlData);
            newsTitleArray = xmlData.news.article.title.text().toXMLString().split("\n") ;
    newsTitleArray.reverse();
    newsInfoArray = xmlData.news.article.info.text().toXMLString().split("\n") ;
    newsInfoArray.reverse();
    newsContentArray = xmlData.news.article.content.text().toXMLString().split("\n") ;
    newsContentArray.reverse();
    useXML();
    //////////////PROJECT PANEL //////////
    import flash.events.Event;
    import com.greensock.TweenLite;
    import com.greensock.easing.Back;
    //CONTAINER FOR SCROLLING
    var panelContainer:Sprite = new Sprite();
    addChild(panelContainer);
    //ARRAY FOR REMOVING AND ADDING LISTENERS
    var panelArray:Array = new Array();
    var MT:MovieClip = new MovieClip();
    function useXML():void {
    //trace(MT.projectsNum);
    for (var i:Number=0; i<MT.projectsNum; i++){
      var projectPanel:ProjectPanel = new ProjectPanel();
      //INSERT XML CONTENT
      //trace(i);
      trace(MT.projectTitle[i]);
            projectPanel.title.text = MT.projectTitle[i];
            projectPanel.info.text = MT.projectInfo[i];
            projectPanel.content.text = MT.projectContent[i].substr(0,150)+"...Ver mas";
            projectPanel.loadImage(MT.projectImage[i]);
            projectPanel.x = i*(projectPanel.width+5);
      panelContainer.addChild(projectPanel);
      panelArray.push(projectPanel);
      //listener for click on ProjectPanel
      projectPanel.addEventListener(MouseEvent.CLICK, onClick);
    function onClick(evt:MouseEvent):void{
    for(var i:Number = 0; i<MT.projectsNum; i++){
      panelArray[i].removeEventListener(MouseEvent.CLICK, onClick);
    TweenLite.to(panelContainer, 0.5, {y:stage.stageHeight, ease:Back.easeIn});
    this.addFullPanel(Number(evt.currentTarget.name));
    removeListeners();
    function removeListeners():void{
    for(var i:Number = 0; i<MT.projectsNum; i++) {
      panelArray[i].removeEventListener(MouseEvent.CLICK, onClick);
    function addListeners():void{
    for(var i:Number = 0; i<MT.projectsNum; i++) {
      panelContainer[i].addEventListener(MouseEvent.CLICK, onClick);
    function slideUp():void{
    TweenLite.to(panelContainer, 0.5, {y:0, ease:Back.easeOut});
    stage.addEventListener(MouseEvent.MOUSE_MOVE, onMove);
    function onMove(evt:MouseEvent):void {
    //trace(mouseX);
    if(fullProjectPanelUp==false){
      TweenLite.to(panelContainer, 0.3, { x:-(stage.mouseX/800)*panelContainer.width+stage.stageWidth/2});
    //////////FULLPROJECTPANEL ////////////////////////
    import com.greensock.TweenLite;
    var fullProjectPanelUp:Boolean = false;
    var fullProjectPanel:FullProjectPanel;
    function addFullPanel(k:Number): void {
            fullProjectPanel = new FullProjectPanel;
            fullProjectPanel.title.text = projectTitle[k];
            fullProjectPanel.Info.text = projectInfo[k];
            fullProjectPanel.Content.text = projectContent[k];
            fullProjectPanel.Client.text = projectClient[k];
            fullProjectPanel.Media.text = projectMedia[k];
            fullProjectPanel.technology.text = projectTechnology[k];
            fullProjectPanel.link.text = projectLink[k];
            fullProjectPanel.loadImage(projectImage[k]);
            TweenLite.from(fullProjectPanel, 0.6, {alpha:0, delay:0.5});
    addChild(fullProjectPanel);
            fullProjectPanelUp=true;
            fullProjectPanel.closePanel.addEventListener(MouseEvent.CLICK, onCloseClick);
    fullProjectPanel.closePanel.buttonMode = true;
    function onCloseClick(evt:MouseEvent):void {
        slideUp();
        removeChild(fullProjectPanel);
        TweenLite.delayedCall(0.4, upFalse);
    function upFalse():void {
    fullProjectPanelUp = false;
    THIS CODE INSIDE ProjectPanel MOVIE CLIP
    title.mouseEnabled = false;
    info.mouseEnabled = false;
    content.mouseEnabled = false;
    this.buttonMode = true;
    var _progress:ProgressBar = new ProgressBar;
    _progress.x = 80;
    _progress.y = 80;
    _probress.alpha = 0.7;
    addChild(_progress);
    function loadImage(imagePath:String):void {
       var loader:Loader = new Loader();
       configureListener(loader.contentLoaderInfo);
       var url:String = imagePath;
       var urlRequest:URLRequest = new URLRequest(url);
       loader.x = 9;
       loader.y = 9;
       loader.load((urlRequest);
       addChild(loader);
    function configureListeners(dispatcher:IEventDispatcher):void {
       dispatcher.addEventListener(Event.COMPLETE, completeHandler);
       dispatcher.addEventListener(ProgressEvent.PROGRESS, progresHandler);
    function completeHandler(evt:Event):void {
       _progress.visible = false;
    function progressHandler(evt:ProgressEvent):void {
       _progress._progress.x = -_progress._progress.width+((evt.bytesLoaded/evt.bytesTotal)*_progress._progress.width);

  • Inserting XML encoded ampersands into tables with OracleXMLSave / XMLLoader

    Hi,
    I've an XMLLoader application based on Steve Muench's design.
    My client has given me XML documents with XML encoded ampersands.
    The XMLloader (OracleXMLSave) is treating the ampersand as a substitution token and is adding chunks of unexpected text when it inserts the strings containing ampersands.
    How do I turn off the substition within the JDBC?
    Thanks,
    Steve.

    If your XML Document looks like:
    <ROWSET>
    <ROW>
    <FIELD1>val-1</FIELD1>
    <FIELD12>val-12</FIELD12>
    </ROW>
    </ROWSET>
    it will insert into just those two
    fields, the rest will be null for
    the purposes of the insert.

  • ClassCastException on XmlLoader.load

    I am making this call to load my document. The parse seems to happen ok. But
    then...
    TestsDocument doc =
    ( TestsDocument ) XmlLoader.parse ( pFile );
    I get a classcastexception, the returned class is of type com.bea.xbean.values.XmlAnyTypeImpl
    What am I doing wrong?

    It actually turned out that when I used the factory inside of my document, everything
    parses fine. If I use just the xmlloader, the exception is thrown.
    "Jerald Pratt" <[email protected]> wrote:
    >
    Brian,
    I had a similar problem and I'm trying to remember what it was. I believe
    the
    problem turned out to be with my XML file or XML Schema file and not
    the code.
    Not having a valid XML file and/or XML Schema file will cause a variety
    of unexpected
    problems. You should use a tool that will validate both types of XML
    files before
    running further tests. I use XML Spy from www.altova.com which works
    great.
    Jerald
    "brian" <[email protected]> wrote:
    I am making this call to load my document. The parse seems to happen
    ok. But
    then...
    TestsDocument doc =
    ( TestsDocument ) XmlLoader.parse ( pFile );
    I get a classcastexception, the returned class is of type com.bea.xbean.values.XmlAnyTypeImpl
    What am I doing wrong?

  • Interface implemtation with xmlloader instead of remoteobject

    Hi there, if I want to change the implementation of getTrades to use a URL loader instead of a remote object, can I still use this interface
    package services
        import models.Client;
        import models.Trade;
        import mx.rpc.AsyncToken;
        public interface ITradesService
            function getTrades(userID:int):AsyncToken;
    using
    function getTrades{
    myXMLURL=new URLRequest(XML_URL);
                myLoader=new URLLoader(myXMLURL);
                myLoader.addEventListener("complete", onComplete);

    I checked out a couple of devices offered by "Automationdirect.com" last year that looked like they would work.
    the customer changed the spec and I never followed through.
    Let us know what you find.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • XMLLoader Errors in Grid

    Observed below errors daily in the Grid under Setup > Management Services & Repository > Errors tab. When I check the loader directory, there are no such files seen. Also checked the clob and the errors folder in the loader direcotry but the files are not there. If these are uploaded in repository, why are these errors seen in the Grid.
    GC - 10.2.0.4.0
    Repository - 10.2.0.3.0
    Platform - Windows
    Loader n/a Aug 20,2008 9:41:03 AM Error Thread: XMLLoader0 20000001625.xml Could not delete file D:\Oracle\OMS10g\RECV\20000001625.xml, File name:D:\Oracle\OMS10g\RECV\20000001625.xml
    Loader n/a Aug 20,2008 9:36:23 AM Error Thread: XMLLoader0 90000001616.xml Could not delete file D:\Oracle\OMS10g\RECV\90000001616.xml, File name:D:\Oracle\OMS10g\RECV\90000001616.xml
    Loader n/a Aug 20,2008 8:48:09 AM Error Thread: XMLLoader0 40000001830.xml Could not delete file D:\Oracle\OMS10g\RECV\40000001830.xml, File name:D:\Oracle\OMS10g\RECV\40000001830.xml
    Loader n/a Aug 20,2008 8:47:53 AM Error Thread: XMLLoader0 40000001826.xml Could not delete file D:\Oracle\OMS10g\RECV\40000001826.xml, File name:D:\Oracle\OMS10g\RECV\40000001826.xml
    Loader n/a Aug 20,2008 6:52:02 AM Error Thread: XMLLoader0 20000001436.xml Could not delete file D:\Oracle\OMS10g\RECV\20000001436.xml, File name:D:\Oracle\OMS10g\RECV\20000001436.xml
    Loader n/a Aug 20,2008 6:07:08 AM Error Thread: XMLLoader0 20000001383.xml Could not delete file D:\Oracle\OMS10g\RECV\20000001383.xml, File name:D:\Oracle\OMS10g\RECV\20000001383.xml
    Loader n/a Aug 20,2008 6:07:08 AM Error Thread: XMLLoader0 20000001384.xml Could not delete file D:\Oracle\OMS10g\RECV\20000001384.xml, File name:D:\Oracle\OMS10g\RECV\20000001384.xml
    Loader n/a Aug 20,2008 5:02:20 AM Error Thread: XMLLoader0 50000001700.xml Could not delete file D:\Oracle\OMS10g\RECV\50000001700.xml, File name:D:\Oracle\OMS10g\RECV\50000001700.xml
    ----------------------------------------------------

    Check the user that started the Service to ensure that it is the owner of the software.
    ALso check that the correct permissions are on the directories

  • WIJ 20002 error on long running reports

    When trying to run a long running report, an error message is received .
    Quote:
    *"The Web Intelligence Java Report Panel cannot connect to the server. Close
    the report panel and try to connect again or see your BusinessObjects
    administrator. (Error: WIJ 20002)"*
    What happens next is you are advised to "close" (twice) and are then advised to close this window.
    If you select Details on the first error message:
    Server: https://test.i3access.iowa.gov:443/desktoplaunch/InfoView/CrystalEnterprise_Webi/cdzServlet?
    java.lang.RuntimeException: java.io.IOException: Server returned HTTP response code: 502 for URL: https://test.i3access.iowa.gov:443/desktoplaunch/InfoView/CrystalEnterprise_Webi/cdzServlet
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
         at com.businessobjects.wp.cpi.CPIConnection.postRequest(CPIConnection.java:437)
         at com.businessobjects.wp.xml.XMLViaHttp.loadScript(XMLViaHttp.java:144)
         at com.businessobjects.wp.xml.XMLViaHttp.getPromptList(XMLViaHttp.java:1284)
         at com.businessobjects.wp.xml.XMLLoader.getPromptList(XMLLoader.java:279)
         at com.businessobjects.wp.om.OMQuery.loadPromptsAndContexts(OMQuery.java:359)
         at com.businessobjects.wp.om.OMQuery.getActiveContextCount(OMQuery.java:384)
         at com.businessobjects.wp.tc.query.TCQueryPropertie.buildQueryContextFromUI(TCQueryPropertie.java:496)
         at com.businessobjects.wp.tc.query.TCQueryTab.buildQueryContextFromUI(TCQueryTab.java:846)
         at com.businessobjects.wp.tc.query.TCQueryTab.modifyQueryProperties(TCQueryTab.java:638)
         at com.businessobjects.wp.tc.query.TCQueryTabManager.modifyQueryTabs(TCQueryTabManager.java:306)
         at com.businessobjects.wp.tc.query.TCQueryPanel.modifyQueryTabs(TCQueryPanel.java:310)
         at com.businessobjects.wp.tc.query.TCQueryPanel.load(TCQueryPanel.java:383)
         at com.businessobjects.wp.tc.TCMainPanel.switchToQueryPanel(TCMainPanel.java:563)
         at com.businessobjects.wp.tc.TCMainPanel.actionPerformed(TCMainPanel.java:506)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at com.jidesoft.plaf.basic.BasicJideButtonListener.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
         at com.businessobjects.wp.cpi.CPIConnection.postRequest(CPIConnection.java:441)
         at com.businessobjects.wp.xml.XMLViaHttp.loadScript(XMLViaHttp.java:144)
         at com.businessobjects.wp.xml.XMLViaHttp.getPromptList(XMLViaHttp.java:1284)
         at com.businessobjects.wp.xml.XMLLoader.getPromptList(XMLLoader.java:279)
         at com.businessobjects.wp.om.OMQuery.loadPromptsAndContexts(OMQuery.java:359)
         at com.businessobjects.wp.om.OMQuery.getActiveContextCount(OMQuery.java:384)
         at com.businessobjects.wp.tc.query.TCQueryPropertie.buildQueryContextFromUI(TCQueryPropertie.java:496)
         at com.businessobjects.wp.tc.query.TCQueryTab.buildQueryContextFromUI(TCQueryTab.java:846)
         at com.businessobjects.wp.tc.query.TCQueryTab.modifyQueryProperties(TCQueryTab.java:638)
         at com.businessobjects.wp.tc.query.TCQueryTabManager.modifyQueryTabs(TCQueryTabManager.java:306)
         at com.businessobjects.wp.tc.query.TCQueryPanel.modifyQueryTabs(TCQueryPanel.java:310)
         at com.businessobjects.wp.tc.query.TCQueryPanel.load(TCQueryPanel.java:383)
         at com.businessobjects.wp.tc.TCMainPanel.switchToQueryPanel(TCMainPanel.java:563)
         at com.businessobjects.wp.tc.TCMainPanel.actionPerformed(TCMainPanel.java:506)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at com.jidesoft.plaf.basic.BasicJideButtonListener.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Please let me know what the solution is.

    Matt,
    A namesake of yours is my client for this issue.
    Coming to the problem, the customer says there is proxy configured between HTTP server and WebSphere. This proxy server times out for long running reports. If the HTTPServer is bypassed, things work fine.
    A colleague of mine opened a case with BOBJ. I can get you the case# if you need it. We got this reply:
    From: Takano, Hitomi
    Sent: Tuesday, November 04, 2008 10:26 AM
    Hi Matt,
    I was away for the last two days, so I couldn't reply to you sooner.
    Extending the timeout setting from Webi and Infoview in BOXI R2 will not
    make the long running reports work as your proxy setting at the lower
    layer than BOXI just allows 5 minutes and after that the connection will
    be cancelled by the proxy. I'm not sure why this setting was effective
    for https only or timeout out after 2 min. This is out of scope of BOXI
    R2 and your network admin would be the best person to handle. You were
    getting 502 error in Java Report Panel. I googled with "502 error and
    ProxyTimeout", and I got the some articles returned which say  when
    backend doesn't answer on requests(because it timed out), it returns to
    a client an error 502.
    I'll close this thread as the n/w admin at the client are working things out.
    Thanks for your support.

  • WEBI Java Error when starting report form the portal

    Hi when i'm starting a BO WEBI report out from the  portal the next error is apearing:
    error on set doc title.
    Details: Version:12.1.0.882
    Toepassingsserver:
    http://pcl09009.magma-it.local:8080/AnalyticalReporting/Webi/cdzServlet
    Stapeltracering: netscape.javascript.JSException: Unspecified error invoking method or accessing property "updateDocumentTitle" at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source) at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source) at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source) at com.businessobjects.wp.tc.TCDocument.setNameEx(Unknown Source) at com.businessobjects.wp.om.OMDocument.setXmlProperty(Unknown Source) at com.businessobjects.wp.om.OMDocPropHandler.setDocProperty(Unknown Source) at com.businessobjects.wp.xml.XMLDocPropParser.parseDocProp(Unknown Source) at com.businessobjects.wp.xml.XMLDocPropParser.parseDocProps(Unknown Source) at com.businessobjects.wp.xml.XMLOutputParser.parseOutput(Unknown Source) at com.businessobjects.wp.xml.XMLOutputParser.parseOutputs(Unknown Source) at com.businessobjects.wp.xml.XMLOutputParser.parse(Unknown Source) at com.businessobjects.wp.xml.XMLLoader.loadDoc(Unknown Source) at com.businessobjects.wp.tc.TCMain.loadDocument(Unknown Source) at com.businessobjects.wp.tc.TCMain.initDocument(Unknown Source) at com.businessobjects.wp.tc.TCMain.initClient2(Unknown Source) at com.businessobjects.wp.tc.TCMain.initClient(Unknown Source) at com.businessobjects.wp.tc.thread.InitAppletRunner.run(Unknown Source) at java.lang.Thread.run(Unknown Source)
    afte closing  i can't refresh or change the querie
    Does any one have solution for this? I'm using BO XI 3.1

    Hi Peter,
    try this solution oryginally posted by Craig Brandt in another topic.
    Firstly make sure you have no old Java installs or 'add ons' lingering about on your system, check in programs and features (assuming your using windows 7) and uninstall Java completely. Check the add ons in IE and show: 'All add ons' - remove manually if required. Do a clean up of the computers temp files and cache. I used a program called ccleaner. Also check c:\users\<username>\app data\locallow\ and delete the 'Sun' folder. Then reboot machine.
    - Install latest Java 1.7.0_51
    - Go to Java control panel in windows control panel
    - add the exception for your BOBJ server e.g. http://<SERVER>:8080
    - click continue
    - go to the advanced tab
    - scroll down and tick 'use TLS 1.2'
    - apply or OK to exit java control panel
    - open 'Internet Options'
    - go to the 'advanced' tab
    - scroll down and tick 'use TLS 1.2'
    - OK everything and close any IE windows
    Now try again, you will need to enable the 'add on' when prompted on opening IE for the first time.
    Also when accessing the BI Web I for the first time, I placed a tick in the 'do not show this again for apps from this publisher'
    Work for me!

  • Unable to startup EM 11g R2 on Fedora 12

    I have been following the instructions upon how to install oracle 11g r2 on Fedora 12 using the given URL:
    http://www.oracle-base.com/articles/11g/OracleDB11gR2InstallationOnFedora12.php
    There were a number of additional RPM that were required before installation of the RDBMS (listed):
    cloog-ppl-0.15.7-1.fc12.i686.rpm
    compat-libstdc++-33-3.2.3-68.i686.rpm
    cpp-4.4.2-7.fc12.i686.rpm
    elfutils-libelf-0.143-1.fc12.i686.rpm
    elfutils-libelf-devel-0.143-1.fc12.i686.rpm
    gcc-4.4.2-7.fc12.i686.rpm
    gcc-c++-4.4.2-7.fc12.i686.rpm
    glibc-devel-2.11-2.i686.rpm
    glibc-headers-2.11-2.i686.rpm
    kernel-headers-2.6.31.5-127.fc12.i686.rpm
    ksh-20090630-1.fc12.i686.rpm
    libaio-devel-0.3.107-9.fc12.i686.rpm
    libgomp-4.4.2-7.fc12.i686.rpm
    libstdc++-devel-4.4.2-7.fc12.i686.rpm
    mpfr-2.4.1-3.fc12.i686.rpm
    pdksh-5.2.14-21.i386.rpm
    ppl-0.10.2-10.fc12.i686.rpm
    sysstat-9.0.4-4.fc12.i686.rpm
    unixODBC-2.2.14-6.fc12.i686.rpm
    unixODBC-devel-2.2.14-6.fc12.i686.rpm
    The installation was a success. I am able to start up and shutdown both the database instance and listener. However I am facing issues on trying to execute the EM. ($ORACLE_HOME/bin emctl start dbconsole)
    In the following directory: /u01/app/oracle/product/11.2.0/db_1/fedoralinuxbox_orcl/sysman/log/ we have a number of log files generated.
    emagent.log:
    +2010-07-19 12:42:55,895 Thread-3035932352 Starting Agent 10.2.0.4.2 from /u01/app/oracle/product/11.2.0/db_1 (00701)+
    +2010-07-19 12:42:56,879 Thread-3035932352 [Oracle Exadata Storage Server] InstanceProperty (MgmtIPAddr2) is marked OPTIONAL but is being used (00506)+
    +2010-07-19 12:42:57,545 Thread-3035932352 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)+
    +2010-07-19 12:43:05,483 Thread-3035932352 EMAgent started successfully (00702)+
    +2010-07-19 13:01:57,176 Thread-3028286320 <HTTP Listener> Agent Signaled to EXIT by emctl (00800)+
    +2010-07-19 13:01:58,205 Thread-3035932352 EMAgent normal shutdown (00703)+
    emoms.log
    +2010-07-19 12:43:22,505 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.emCLI.CLIIntg+
    +2010-07-19 12:43:22,595 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.emCLI.CLIDownloadIntg+
    +2010-07-19 12:43:22,601 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.asprov.ui.intg.ASProvisioningIntegration+
    +2010-07-19 12:43:27,688 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.eml.target.slb.common.SLBIntegration+
    +2010-07-19 12:43:57,178 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.paf.sample.ui.intg.PAFDemoIntegration+
    +2010-07-19 12:43:57,744 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.sidb.ui.intg.SIDBProvisioningIntegration+
    +2010-07-19 12:44:00,604 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.racprov.ui.intg.RACProvIntegration+
    +2010-07-19 12:44:00,608 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.ec.ui.intg.ExtendClusterIntegration+
    +2010-07-19 12:44:00,645 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.dn.ui.intg.DltNodeIntegration+
    +2010-07-19 12:44:00,715 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.common.ui.intg.ProvCommonIntegration+
    +2010-07-19 12:44:00,756 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.bpelprov.ui.intg.BPELProvisioningIntegration+
    +2010-07-19 12:45:22,459 [XMLLoader0 00000000006.xml] ERROR eml.XMLLoader LoadFiles.696 - Error while processing 00000000006.xml:+
    java.sql.SQLException: ORA-20101: Metric PhysAddress for target type netapp_filer not configured
    ORA-06512: at "SYSMAN.ECM_CT", line 718
    ORA-06512: at line 1
    ORA-06512: at "SYSMAN.EMD_LOADER", line 4931
    ORA-06512: at line 1
    +     at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:73)+
    +     at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:111)+
    +     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)+
    +     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:472)+
    +     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:422)+
    +     at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1089)+
    +     at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:200)+
    +     at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:1029)+
    +     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1347)+
    +     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3556)+
    +     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3727)+
    +     at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:8130)+
    +     at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1209)+
    +     at oracle.sysman.util.jdbc.PreparedStatementWrapper.execute(PreparedStatementWrapper.java:173)+
    +     at oracle.sysman.util.jdbc.CallableStatementWrapper.execute(CallableStatementWrapper.java:135)+
    +     at oracle.sysman.emdrep.dbjava.loader.XMLDocumentSplitter.postLoadProc(XMLDocumentSplitter.java:1709)+
    +     at oracle.sysman.emdrep.dbjava.loader.XMLDocumentSplitter.endElement(XMLDocumentSplitter.java:1009)+
    +     at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1318)+
    +     at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)+
    +     at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)+
    +     at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:206)+
    +     at oracle.sysman.emdrep.dbjava.loader.XMLDocumentSplitter.split(XMLDocumentSplitter.java:477)+
    +     at oracle.sysman.emdrep.dbjava.loader.XMLLoaderContext.loadFromStream(XMLLoaderContext.java:1824)+
    +     at oracle.sysman.emdrep.dbjava.loader.XMLLoader.LoadFile(XMLLoader.java:578)+
    +     at oracle.sysman.emdrep.dbjava.loader.XMLLoader.LoadFiles(XMLLoader.java:669)+
    +     at oracle.sysman.emdrep.dbjava.loader.XMLLoader.run(XMLLoader.java:1316)+
    +     at java.lang.Thread.run(Thread.java:595)+
    I have googled for a resolution but have come to a dead end and am running out of ideas.
    Has anyone seen this before?

    Hi,
    After google for the same issue I found this post. In My case my OS is RHEL 5.5 64 bit which is supported by the Oracle. But I face the same error.
    Any idea?
    Aungshu

  • Extension Manager fails to load  (Error reported on DigitalPublishingRelease.mxi_air)

    Hi
    Adobe CreativeSuite Standard 5.5 has been installed but Extension manager is failing to load or fails whilst loading. Would someone be able to assist?
    Below is the end of the log.txt file after the ExManLog.YES file was created.
    The log file isn't always created on some machines where the .YES file is setup. 
    The software is installed on Windows Vista. Some machines have a Core I3 chip.
    I have been reading the forum and tried changing the permissions where I can and tried the flash issue. Firefox is not installed.
    3/14/2012 12:26:53.516 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup Client UI.mxi_air
    3/14/2012 12:26:53.516 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup Client.mxi_air
    3/14/2012 12:26:53.533 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup Client.mxi_air
    3/14/2012 12:26:53.534 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup UI.mxi_air
    3/14/2012 12:26:53.551 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup UI.mxi_air
    3/14/2012 12:26:53.551 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup.mxi_air
    3/14/2012 12:26:53.568 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup.mxi_air
    3/14/2012 12:26:53.568 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_WorldReady.mxi_air
    3/14/2012 12:26:53.585 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_WorldReady.mxi_air
    3/14/2012 12:26:53.585 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XMedia UI.mxi_air
    3/14/2012 12:26:53.602 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XMedia UI.mxi_air
    3/14/2012 12:26:53.602 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XML.mxi_air
    3/14/2012 12:26:53.618 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XML.mxi_air
    3/14/2012 12:26:53.619 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XMLParser.mxi_air
    3/14/2012 12:26:53.636 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XMLParser.mxi_air
    3/14/2012 12:26:53.677 [INFO] com.adobe.exman.controller.LoadInstalledExtensionsCommand.LoadMXIFileCompleteCallBack onComplete(), xmlFilename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi_air
    3/14/2012 12:26:53.677 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy loadMXIDataIntoGridData(): xmlFilename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi_air
    3/14/2012 12:26:53.678 [INFO] com.adobe.exman.vo.ExtensionStaticData no 'icon' attribute in MXI
    3/14/2012 12:26:53.679 [INFO] com.adobe.exman.vo.ExtensionStaticData there is no method specified or methos is not direct link or no URL specified for extension: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi
    3/14/2012 12:26:53.679 [INFO] com.adobe.exman.vo.ExtensionStaticData isCompatibleWithProduct(), product==InDesign productVersion==7.5.0
    CompatibleProduct: _productInternalName==InDesign _version==7.5 _maxversion ==2147483647 _primary==true _required==false
    3/14/2012 12:26:53.680 [ERROR] com.adobe.exman.vo.ProductInfo removeExtensionByMXIAIRFileName(), no this xmiAIRFilename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\
    3/14/2012 12:26:53.516 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup Client UI.mxi_air
    3/14/2012 12:26:53.516 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup Client.mxi_air
    3/14/2012 12:26:53.533 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup Client.mxi_air
    3/14/2012 12:26:53.534 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup UI.mxi_air
    3/14/2012 12:26:53.551 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup UI.mxi_air
    3/14/2012 12:26:53.551 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup.mxi_air
    3/14/2012 12:26:53.568 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_Workgroup.mxi_air
    3/14/2012 12:26:53.568 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_WorldReady.mxi_air
    3/14/2012 12:26:53.585 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_WorldReady.mxi_air
    3/14/2012 12:26:53.585 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XMedia UI.mxi_air
    3/14/2012 12:26:53.602 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XMedia UI.mxi_air
    3/14/2012 12:26:53.602 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XML.mxi_air
    3/14/2012 12:26:53.618 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XML.mxi_air
    3/14/2012 12:26:53.619 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load xmiFileName: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XMLParser.mxi_air
    3/14/2012 12:26:53.636 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\idcs5_5_XMLParser.mxi_air
    3/14/2012 12:26:53.677 [INFO] com.adobe.exman.controller.LoadInstalledExtensionsCommand.LoadMXIFileCompleteCallBack onComplete(), xmlFilename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi_air
    3/14/2012 12:26:53.677 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy loadMXIDataIntoGridData(): xmlFilename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi_air
    3/14/2012 12:26:53.678 [INFO] com.adobe.exman.vo.ExtensionStaticData no 'icon' attribute in MXI
    3/14/2012 12:26:53.679 [INFO] com.adobe.exman.vo.ExtensionStaticData there is no method specified or methos is not direct link or no URL specified for extension: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi
    3/14/2012 12:26:53.679 [INFO] com.adobe.exman.vo.ExtensionStaticData isCompatibleWithProduct(), product==InDesign productVersion==7.5.0
    CompatibleProduct: _productInternalName==InDesign _version==7.5 _maxversion ==2147483647 _primary==true _required==false
    3/14/2012 12:26:53.680 [ERROR] com.adobe.exman.vo.ProductInfo removeExtensionByMXIAIRFileName(), no this xmiAIRFilename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi_air
    3/14/2012 12:26:53.680 [INFO] com.adobe.exman.vo.ProductInfo addExtension(), added extension to productInfo: ------extension == dynamicData: true------staticData: mxi_air filename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi_air mxi filename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi extname: DigitalPublishing author: Adobe Systems Incorporated version: 7.5.2.9 type: ------productInfo == productName=[InDesign CS5.5], internalName=[InDesign], productversion=[7.5.0], productEMStore=[C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\], productExtPath=[C:\Us
    3/14/2012 12:26:53.680 [INFO] com.adobe.exman.vo.ProductInfo addExtension(), added extension to productInfo: ------extension == dynamicData: true------staticData: mxi_air filename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi_air mxi filename: C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\DigitalPublishingRelease.mxi extname: DigitalPublishing author: Adobe Systems Incorporated version: 7.5.2.9 type: ------productInfo == productName=[InDesign CS5.5], internalName=[InDesign], productversion=[7.5.0], productEMStore=[C:\ProgramData\Adobe\InDesign\Version 7.5\EmStorePath\], productExtPath=[C:\Us

    What's the meaning of "remoting onto the machine"? Is it by "Remote Desktop Control"( mstsc )? There is no difference in running Extension Manager locally or by RDC. However, you have to make sure that you login with the same account. If you still can not launch Extension Manager on your laptop, you can generate log files and paste them here.
    BTW, we created "Frequently Asked Questions" sub forum for Extension Manager. You might find some useful information in it. Check out http://forums.adobe.com/community/creativesuites/extensionmanager/faq

  • Adobe Extension Manager CS6 still hangs trying to load the extensions after recommendations

    I'm having some issues with My Adobe Extension Manager on CS6 (Windows 7 computer).
    The things I've tried so far are:
    Uninstalling it and re-installing
    Downloading and installing the patch that was mentioned on this forum
    Removing all of the MX files and pasting them in a separate folder
    None of which have been successful. I have created a log file as mentioned on these forums. I'd be grateful if anyone can recommend what the cause might be?
    Just a note my user name doesn't have any apostrophe's in it.
    Thanks:
    4/19/2013 10:53:12.770 [INFO] com.adobe.exman.controller.PassiveGatewayPrepCommand execute(), PassiveGatewayPrepCommand is executed.
    4/19/2013 10:53:12.776 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway registerAirInterfaces
    4/19/2013 10:53:12.777 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway sendCallBackReady(), available==true
    4/19/2013 10:53:12.778 [INFO] com.adobe.exman.controller.ModelPrepCommand ModelPrepCommand command finished.
    4/19/2013 10:53:12.780 [INFO] com.adobe.exman.model.ExManConfigurationProxy ExManConfigurationProxy(), zstringPath is: C:\Program Files (x86)\Adobe\Adobe Extension Manager CS6\ZStringResources
    4/19/2013 10:53:12.781 [INFO] com.adobe.exman.model.ExManConfigurationProxy initLocaleList(), the locale list is: en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,nb_NO,nl_NL,pl_PL,pt_BR ,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    4/19/2013 10:53:12.783 [INFO] com.adobe.exman.view.ExManApp ExManApp(), instance is constructed.
    4/19/2013 10:53:12.802 [DEBUG] com.adobe.exman.util.ExManVulcan ExManVulcan: ctor...
    4/19/2013 10:53:12.806 [DEBUG] com.adobe.exman.util.ExManVulcan ExManVulcan, vulcanSetup
    4/19/2013 10:53:12.821 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airGetLocaleList Message:-1,airGetLocaleList
    4/19/2013 10:53:12.821 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirGetLocaleList(), sessionId== -1
    4/19/2013 10:53:12.821 [INFO] com.adobe.exman.controller.passivecommand.GetLocaleListCommand execute(), sessionId= -1
    4/19/2013 10:53:12.822 [INFO] com.adobe.exman.controller.passivecommand.GetLocaleListCommand execute(), the locale list is: en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,nb_NO,nl_NL,pl_PL,pt_BR ,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    4/19/2013 10:53:12.822 [INFO] com.adobe.exman.controller.passivecommand.RespondPassiveExternalGatewayCommand execute(), parameter: sessionId to respond: -1parameters to respond: en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,nb_NO,nl_NL,pl_PL,pt_BR ,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    4/19/2013 10:53:12.823 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway giveResponseToExternal(), the args to external interface is: externalCallBack,-1,0,en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,n b_NO,nl_NL,pl_PL,pt_BR,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    4/19/2013 10:53:12.823 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-1,0,en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,n b_NO,nl_NL,pl_PL,pt_BR,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    4/19/2013 10:53:12.840 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airSetLocale Message:-2,airSetLocale,en_US
    4/19/2013 10:53:12.841 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirSetLocale(), sessionId=-2args=en_US
    4/19/2013 10:53:12.841 [INFO] com.adobe.exman.model.ExManConfigurationProxy defaultOSLocale(), set to: en_US
    4/19/2013 10:53:12.846 [INFO] com.adobe.exman.view.ExManApp handleNotification(), got notification: SET_LOCAL
    notification body: en_US
    4/19/2013 10:53:12.846 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    4/19/2013 10:53:12.846 [DEBUG] com.adobe.exman.view.ExManApp SET_LOCAL
    4/19/2013 10:53:12.846 [INFO] com.adobe.exman.view.ExManApp handleNotification(), locale= en_US
    4/19/2013 10:53:12.848 [INFO] com.adobe.exman.controller.LoadUIPreferencesCommand execute(), LoadUIPreferencesCommand is executed.
    4/19/2013 10:53:12.850 [INFO] com.adobe.exman.view.ExManApp handleNotification(), got notification: LOAD_UI_PREFERENCES_DONE
    notification body: [object UIPreferences]
    4/19/2013 10:53:12.850 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    4/19/2013 10:53:12.850 [DEBUG] com.adobe.exman.view.ExManApp LOAD_UI_PREFERENCES_DONE
    4/19/2013 10:53:12.850 [INFO] com.adobe.exman.controller.SetWindowPreferencesCommand execute(), SetWindowPreferencesCommand is executed.
    4/19/2013 10:53:12.851 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 0----
    4/19/2013 10:53:12.852 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ExternalGateway()
    4/19/2013 10:53:12.852 [INFO] com.adobe.exman.controller.gateway.ExternalGateway resetExternalInterface()
    4/19/2013 10:53:12.852 [INFO] com.adobe.exman.controller.gateway.ExternalGateway resetExternalInterface(), airCallBack added.
    4/19/2013 10:53:12.852 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 0----
    4/19/2013 10:53:12.853 [INFO] com.adobe.exman.controller.gateway.ExternalGateway setWindowPreferences(), sessionId= 0, windowPosition_x= 100, windowPosition_y= 100, windowWidth= 810, windowHeight= 600
    4/19/2013 10:53:12.861 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message0,0
    4/19/2013 10:53:12.862 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 0
    responseType= 0
    responseBody=
    4/19/2013 10:53:12.862 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::SetWindowPreferencesSession got parameters in handleResponse:
    responseType= 0
    4/19/2013 10:53:12.862 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    4/19/2013 10:53:12.862 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_SET_WINDOW_PREFERENCES_SUCCEED
    4/19/2013 10:53:12.863 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now:
    4/19/2013 10:53:12.884 [INFO] com.adobe.exman.ExManGUI onColumnAssociateChange()
    4/19/2013 10:53:12.884 [INFO] com.adobe.exman.view.widget.ExManDataGridColumn adjustColumnWidth()
    4/19/2013 10:53:12.885 [INFO] com.adobe.exman.view.widget.ExManDataGridColumn adjustColumnWidth(), width of column [OnOff] set to: 73
    4/19/2013 10:53:12.886 [INFO] com.adobe.exman.ExManGUI onColumnAssociateChange(), width of column [0] is changed to: 73
    4/19/2013 10:53:12.899 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airParseXML Message:-3,airParseXML,C:\Program Files (x86)\Adobe\Adobe Illustrator CS6\Support Files\Contents\Windows\Configuration\XManConfig.xml,Configuration.VariableForExMan.Data
    4/19/2013 10:53:12.900 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML(), sessionId==-3got xml String to parse: C:\Program Files (x86)\Adobe\Adobe Illustrator CS6\Support Files\Contents\Windows\Configuration\XManConfig.xml
    4/19/2013 10:53:12.900 [INFO] com.adobe.exman.controller.ParseXMLCommand execute(), ParseXMLCommand is executed.
    4/19/2013 10:53:12.901 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Illustrator%20CS6/Support%20Files/Conten ts/Windows/Configuration/XManConfig.xml
    4/19/2013 10:53:12.901 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is XManConfig.xml file, just load it directly
    4/19/2013 10:53:12.902 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Illustrator%20CS6/Support%20Files/Conten ts/Windows/Configuration/XManConfig.xml
    4/19/2013 10:53:12.918 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML, success, externalCallBack,-3,0,$illustrator,$InstallFolder/../../..,$plugin,$InstallFolder/../../. ./Plug-ins,$scripting,$InstallFolder/../../../Scripting,$presets,$InstallFolder/../../../P resets,DisplayName,Illustrator CS6 32,ProductName,Illustrator32,FamilyName,Illustrator,ProductVersion,16.0,HostNameForCSXS,I LST,IconPath,Configuration/ai_app_24px.png,SupportedInSuite,CS6,DefaultLocale,en_US,Bit,32
    4/19/2013 10:53:12.918 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-3,0,$illustrator,$InstallFolder/../../..,$plugin,$InstallFolder/../../. ./Plug-ins,$scripting,$InstallFolder/../../../Scripting,$presets,$InstallFolder/../../../P resets,DisplayName,Illustrator CS6 32,ProductName,Illustrator32,FamilyName,Illustrator,ProductVersion,16.0,HostNameForCSXS,I LST,IconPath,Configuration/ai_app_24px.png,SupportedInSuite,CS6,DefaultLocale,en_US,Bit,32
    4/19/2013 10:53:12.925 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airParseXML Message:-4,airParseXML,C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Configuration\XManConfig.xml,Configuration.VariableForExMan.Data
    4/19/2013 10:53:12.925 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML(), sessionId==-4got xml String to parse: C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Configuration\XManConfig.xml
    4/19/2013 10:53:12.926 [INFO] com.adobe.exman.controller.ParseXMLCommand execute(), ParseXMLCommand is executed.
    4/19/2013 10:53:12.926 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///C:/Program%20Files/Adobe/Adobe%20Illustrator%20CS6%20(64%20Bit)/Support%20Files/C ontents/Windows/Configuration/XManConfig.xml
    4/19/2013 10:53:12.926 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is XManConfig.xml file, just load it directly
    4/19/2013 10:53:12.926 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///C:/Program%20Files/Adobe/Adobe%20Illustrator%20CS6%20(64%20Bit)/Support%20Files/C ontents/Windows/Configuration/XManConfig.xml
    4/19/2013 10:53:12.938 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML, success, externalCallBack,-4,0,$illustrator,$InstallFolder/../../..,$plugin,$InstallFolder/../../. ./Plug-ins,$scripting,$InstallFolder/../../../Scripting,$presets,$InstallFolder/../../../P resets,DisplayName,Illustrator CS6 64,ProductName,Illustrator64,FamilyName,Illustrator,ProductVersion,16.0,HostNameForCSXS,I LST,IconPath,Configuration/ai_app_24px.png,SupportedInSuite,CS6,DefaultLocale,en_US,Bit,64
    4/19/2013 10:53:12.938 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-4,0,$illustrator,$InstallFolder/../../..,$plugin,$InstallFolder/../../. ./Plug-ins,$scripting,$InstallFolder/../../../Scripting,$presets,$InstallFolder/../../../P resets,DisplayName,Illustrator CS6 64,ProductName,Illustrator64,FamilyName,Illustrator,ProductVersion,16.0,HostNameForCSXS,I LST,IconPath,Configuration/ai_app_24px.png,SupportedInSuite,CS6,DefaultLocale,en_US,Bit,64
    4/19/2013 10:53:12.943 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airParseXML Message:-5,airParseXML,C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Configuration\XManConfig.xml,Configuration.VariableForExMan.Data
    4/19/2013 10:53:12.944 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML(), sessionId==-5got xml String to parse: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Configuration\XManConfig.xml
    4/19/2013 10:53:12.944 [INFO] com.adobe.exman.controller.ParseXMLCommand execute(), ParseXMLCommand is executed.
    4/19/2013 10:53:12.944 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20InDesign%20CS6/Configuration/XManConfig. xml
    4/19/2013 10:53:12.944 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is XManConfig.xml file, just load it directly
    4/19/2013 10:53:12.945 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20InDesign%20CS6/Configuration/XManConfig. xml
    4/19/2013 10:53:12.957 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML, success, externalCallBack,-5,0,$indesign,$InstallFolder,$indesign_user,$UserDataFolder/Adobe/Adobe InDesign CS6,DisplayName,InDesign CS6,GlobalProductName,Adobe InDesign CS6,ProductName,InDesign,ProductVersion,8.0,HostNameForCSXS,IDSN,IconPath,Configuration/I con.png,SupportedInSuite,CS6,DefaultLocale,en_GB,NeedLockableExtension,true,ShowInstalledF iles,true,Bit,32,PreExtensionFolder,$SharedCommonDataFolder/Adobe/InDesign/Version 8.0/en_GB/Extensions,PluginConfigFile,$UserDataFolder/Adobe/InDesign/Version 8.0/en_GB/PlugInConfig.txt
    4/19/2013 10:53:12.958 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-5,0,$indesign,$InstallFolder,$indesign_user,$UserDataFolder/Adobe/Adobe InDesign CS6,DisplayName,InDesign CS6,GlobalProductName,Adobe InDesign CS6,ProductName,InDesign,ProductVersion,8.0,HostNameForCSXS,IDSN,IconPath,Configuration/I con.png,SupportedInSuite,CS6,DefaultLocale,en_GB,NeedLockableExtension,true,ShowInstalledF iles,true,Bit,32,PreExtensionFolder,$SharedCommonDataFolder/Adobe/InDesign/Version 8.0/en_GB/Extensions,PluginConfigFile,$UserDataFolder/Adobe/InDesign/Version 8.0/en_GB/PlugInConfig.txt
    4/19/2013 10:53:12.963 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airParseXML Message:-6,airParseXML,C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Configuration\XManConfig.xml,Configuration.VariableForExMan.Data
    4/19/2013 10:53:12.963 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML(), sessionId==-6got xml String to parse: C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Configuration\XManConfig.xml
    4/19/2013 10:53:12.963 [INFO] com.adobe.exman.controller.ParseXMLCommand execute(), ParseXMLCommand is executed.
    4/19/2013 10:53:12.964 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Photoshop%20CS6/Configuration/XManConfig .xml
    4/19/2013 10:53:12.964 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is XManConfig.xml file, just load it directly
    4/19/2013 10:53:12.964 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Photoshop%20CS6/Configuration/XManConfig .xml
    4/19/2013 10:53:12.977 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML, success, externalCallBack,-6,0,EmStorePath,$SharedRibsDataFolder/Adobe/Extension Manager,$photoshopappfolder,$installfolder,$pluginsfolder,$photoshopappfolder/Plug-Ins,$p resetsfolder,$photoshopappfolder/Presets,$platform,Win,$actions,$presetsfolder/Actions,$bl ackandwhite,$presetsfolder/Black and White,$brushes,$presetsfolder/Brushes,$channelmixer,$presetsfolder/Channel Mixer,$colorbooks,$presetsfolder/Color Books,$colorrange,$presetsfolder/Color Range,$colorswatches,$presetsfolder/Color Swatches,$contours,$presetsfolder/Contours,$curves,$presetsfolder/Curves,$customshapes,$p resetsfolder/Custom Shapes,$duotones,$presetsfolder/Duotones,$exposure,$presetsfolder/Exposure,$gradients,$pr esetsfolder/Gradients,$huesat,$presetsfolder/Hue Sat,$imagestatistics,$presetsfolder/Image Statistics,$keyboardshortcuts,$presetsfolder/Keyboard Shortcuts,$layouts,$presetsfolder/Layouts,$lenscorrection,$presetsfolder/Lens Correction,$levels,$presetsfolder/Levels,$liquifymeshes,$presetsfolder/Liquify Meshes,$menucustomization,$presetsfolder/Menu Customization,$optimizedcolors,$presetsfolder/Optimized Colors,$optimizedoutputSettings,$presetsfolder/Optimized Output Settings,$optimizedsettings,$presetsfolder/Optimized Settings,$patterns,$presetsfolder/Patterns,$reducenoise,$presetsfolder/Reduce Noise,$replacecolor,$presetsfolder/Replace Color,$scripts,$presetsfolder/Scripts,$selectivecolor,$presetsfolder/Selective Color,$shadowhighlight,$presetsfolder/Shadow Highlight,$smartsharpen,$presetsfolder/Smart Sharpen,$styles,$presetsfolder/Styles,$textures,$presetsfolder/Textures,$tools,$presetsfo lder/Tools,$variations,$presetsfolder/Variations,$webphotogallery,$presetsfolder/Web Photo Gallery,$workspaces,$presetsfolder/Workspaces,$zoomify,$presetsfolder/Zoomify,$hueandsatu ration,$presetsfolder/Hue and Saturation,$lights,$presetsfolder/Lights,$materials,$presetsfolder/Materials,$meshes,$pre setsfolder/Meshes,$rendersettings,$presetsfolder/Render Settings,$volumes,$presetsfolder/Volumes,$widgets,$presetsfolder/Widgets,$localesfolder,$ photoshopappfolder/Locales,$additionalplugins,$localesfolder/$LOCALE/Additional Plug-ins,$additionalpresets,$localesfolder/$LOCALE/Additional Presets,$localeskeyboardshortcuts,$localesfolder/$LOCALE/Additional Presets/$platform/Keyboard Shortcuts,$localesmenucustomization,$localesfolder/$LOCALE/Additional Presets/$platform/Menu Customization,$localesworkspaces,$localesfolder/$LOCALE/Additional Presets/$platform/Workspaces,$automate,$pluginsfolder/Automate,$digimarc,$pluginsfolder/D igimarc,$displacementmaps,$pluginsfolder/Displacement Maps,$effects,$pluginsfolder/Effects,$extensions,$pluginsfolder/Extensions,$fileformats,$ pluginsfolder/File Formats,$filters,$pluginsfolder/Filters,$imagestacks,$pluginsfolder/Image Stacks,$importexport,$pluginsfolder/Import-Export,$measurements,$pluginsfolder/Measuremen ts,$panels,$pluginsfolder/Panels,$parser,$pluginsfolder/Parser,$3dengines,$pluginsfolder/3 D Engines,$lightingstyles,$pluginsfolder/Filters/Lighting Styles,$matlab,$photoshopappfolder/MATLAB,UserExtensionFolder,$photoshopappfolder,$photos hop,$UserDataFolder/Adobe/Adobe Photoshop CS6/Configuration,DisplayName,Photoshop CS6 32,ProductName,Photoshop32,FamilyName,Photoshop,ProductVersion,13.0,IconPath,Configuratio n/PS_exman_24px.png,SupportedInSuite,CS6,HostNameForCSXS,PHSP,Bit,32
    4/19/2013 10:53:12.978 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-6,0,EmStorePath,$SharedRibsDataFolder/Adobe/Extension Manager,$photoshopappfolder,$installfolder,$pluginsfolder,$photoshopappfolder/Plug-Ins,$p resetsfolder,$photoshopappfolder/Presets,$platform,Win,$actions,$presetsfolder/Actions,$bl ackandwhite,$presetsfolder/Black and White,$brushes,$presetsfolder/Brushes,$channelmixer,$presetsfolder/Channel Mixer,$colorbooks,$presetsfolder/Color Books,$colorrange,$presetsfolder/Color Range,$colorswatches,$presetsfolder/Color Swatches,$contours,$presetsfolder/Contours,$curves,$presetsfolder/Curves,$customshapes,$p resetsfolder/Custom Shapes,$duotones,$presetsfolder/Duotones,$exposure,$presetsfolder/Exposure,$gradients,$pr esetsfolder/Gradients,$huesat,$presetsfolder/Hue Sat,$imagestatistics,$presetsfolder/Image Statistics,$keyboardshortcuts,$presetsfolder/Keyboard Shortcuts,$layouts,$presetsfolder/Layouts,$lenscorrection,$presetsfolder/Lens Correction,$levels,$presetsfolder/Levels,$liquifymeshes,$presetsfolder/Liquify Meshes,$menucustomization,$presetsfolder/Menu Customization,$optimizedcolors,$presetsfolder/Optimized Colors,$optimizedoutputSettings,$presetsfolder/Optimized Output Settings,$optimizedsettings,$presetsfolder/Optimized Settings,$patterns,$presetsfolder/Patterns,$reducenoise,$presetsfolder/Reduce Noise,$replacecolor,$presetsfolder/Replace Color,$scripts,$presetsfolder/Scripts,$selectivecolor,$presetsfolder/Selective Color,$shadowhighlight,$presetsfolder/Shadow Highlight,$smartsharpen,$presetsfolder/Smart Sharpen,$styles,$presetsfolder/Styles,$textures,$presetsfolder/Textures,$tools,$presetsfo lder/Tools,$variations,$presetsfolder/Variations,$webphotogallery,$presetsfolder/Web Photo Gallery,$workspaces,$presetsfolder/Workspaces,$zoomify,$presetsfolder/Zoomify,$hueandsatu ration,$presetsfolder/Hue and Saturation,$lights,$presetsfolder/Lights,$materials,$presetsfolder/Materials,$meshes,$pre setsfolder/Meshes,$rendersettings,$presetsfolder/Render Settings,$volumes,$presetsfolder/Volumes,$widgets,$presetsfolder/Widgets,$localesfolder,$ photoshopappfolder/Locales,$additionalplugins,$localesfolder/$LOCALE/Additional Plug-ins,$additionalpresets,$localesfolder/$LOCALE/Additional Presets,$localeskeyboardshortcuts,$localesfolder/$LOCALE/Additional Presets/$platform/Keyboard Shortcuts,$localesmenucustomization,$localesfolder/$LOCALE/Additional Presets/$platform/Menu Customization,$localesworkspaces,$localesfolder/$LOCALE/Additional Presets/$platform/Workspaces,$automate,$pluginsfolder/Automate,$digimarc,$pluginsfolder/D igimarc,$displacementmaps,$pluginsfolder/Displacement Maps,$effects,$pluginsfolder/Effects,$extensions,$pluginsfolder/Extensions,$fileformats,$ pluginsfolder/File Formats,$filters,$pluginsfolder/Filters,$imagestacks,$pluginsfolder/Image Stacks,$importexport,$pluginsfolder/Import-Export,$measurements,$pluginsfolder/Measuremen ts,$panels,$pluginsfolder/Panels,$parser,$pluginsfolder/Parser,$3dengines,$pluginsfolder/3 D Engines,$lightingstyles,$pluginsfolder/Filters/Lighting Styles,$matlab,$photoshopappfolder/MATLAB,UserExtensionFolder,$photoshopappfolder,$photos hop,$UserDataFolder/Adobe/Adobe Photoshop CS6/Configuration,DisplayName,Photoshop CS6 32,ProductName,Photoshop32,FamilyName,Photoshop,ProductVersion,13.0,IconPath,Configuratio n/PS_exman_24px.png,SupportedInSuite,CS6,HostNameForCSXS,PHSP,Bit,32
    4/19/2013 10:53:12.990 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airParseXML Message:-7,airParseXML,C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Configuration\XManConfig.xml,Configuration.VariableForExMan.Data
    4/19/2013 10:53:12.990 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML(), sessionId==-7got xml String to parse: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Configuration\XManConfig.xml
    4/19/2013 10:53:12.991 [INFO] com.adobe.exman.controller.ParseXMLCommand execute(), ParseXMLCommand is executed.
    4/19/2013 10:53:12.991 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///C:/Program%20Files/Adobe/Adobe%20Photoshop%20CS6%20(64%20Bit)/Configuration/XManC onfig.xml
    4/19/2013 10:53:12.991 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is XManConfig.xml file, just load it directly
    4/19/2013 10:53:12.991 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///C:/Program%20Files/Adobe/Adobe%20Photoshop%20CS6%20(64%20Bit)/Configuration/XManC onfig.xml
    4/19/2013 10:53:13.020 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML, success, externalCallBack,-7,0,EmStorePath,$SharedRibsDataFolder/Adobe/Extension Manager,$photoshopappfolder,$installfolder,$pluginsfolder,$photoshopappfolder/Plug-Ins,$p resetsfolder,$photoshopappfolder/Presets,$platform,Win,$actions,$presetsfolder/Actions,$bl ackandwhite,$presetsfolder/Black and White,$brushes,$presetsfolder/Brushes,$channelmixer,$presetsfolder/Channel Mixer,$colorbooks,$presetsfolder/Color Books,$colorrange,$presetsfolder/Color Range,$colorswatches,$presetsfolder/Color Swatches,$contours,$presetsfolder/Contours,$curves,$presetsfolder/Curves,$customshapes,$p resetsfolder/Custom Shapes,$duotones,$presetsfolder/Duotones,$exposure,$presetsfolder/Exposure,$gradients,$pr esetsfolder/Gradients,$huesat,$presetsfolder/Hue Sat,$imagestatistics,$presetsfolder/Image Statistics,$keyboardshortcuts,$presetsfolder/Keyboard Shortcuts,$layouts,$presetsfolder/Layouts,$lenscorrection,$presetsfolder/Lens Correction,$levels,$presetsfolder/Levels,$liquifymeshes,$presetsfolder/Liquify Meshes,$menucustomization,$presetsfolder/Menu Customization,$optimizedcolors,$presetsfolder/Optimized Colors,$optimizedoutputSettings,$presetsfolder/Optimized Output Settings,$optimizedsettings,$presetsfolder/Optimized Settings,$patterns,$presetsfolder/Patterns,$reducenoise,$presetsfolder/Reduce Noise,$replacecolor,$presetsfolder/Replace Color,$scripts,$presetsfolder/Scripts,$selectivecolor,$presetsfolder/Selective Color,$shadowhighlight,$presetsfolder/Shadow Highlight,$smartsharpen,$presetsfolder/Smart Sharpen,$styles,$presetsfolder/Styles,$textures,$presetsfolder/Textures,$tools,$presetsfo lder/Tools,$variations,$presetsfolder/Variations,$webphotogallery,$presetsfolder/Web Photo Gallery,$workspaces,$presetsfolder/Workspaces,$zoomify,$presetsfolder/Zoomify,$hueandsatu ration,$presetsfolder/Hue and Saturation,$lights,$presetsfolder/Lights,$materials,$presetsfolder/Materials,$meshes,$pre setsfolder/Meshes,$rendersettings,$presetsfolder/Render Settings,$volumes,$presetsfolder/Volumes,$widgets,$presetsfolder/Widgets,$localesfolder,$ photoshopappfolder/Locales,$additionalplugins,$localesfolder/$LOCALE/Additional Plug-ins,$additionalpresets,$localesfolder/$LOCALE/Additional Presets,$localeskeyboardshortcuts,$localesfolder/$LOCALE/Additional Presets/$platform/Keyboard Shortcuts,$localesmenucustomization,$localesfolder/$LOCALE/Additional Presets/$platform/Menu Customization,$localesworkspaces,$localesfolder/$LOCALE/Additional Presets/$platform/Workspaces,$automate,$pluginsfolder/Automate,$digimarc,$pluginsfolder/D igimarc,$displacementmaps,$pluginsfolder/Displacement Maps,$effects,$pluginsfolder/Effects,$extensions,$pluginsfolder/Extensions,$fileformats,$ pluginsfolder/File Formats,$filters,$pluginsfolder/Filters,$imagestacks,$pluginsfolder/Image Stacks,$importexport,$pluginsfolder/Import-Export,$measurements,$pluginsfolder/Measuremen ts,$panels,$pluginsfolder/Panels,$parser,$pluginsfolder/Parser,$3dengines,$pluginsfolder/3 D Engines,$lightingstyles,$pluginsfolder/Filters/Lighting Styles,$matlab,$photoshopappfolder/MATLAB,UserExtensionFolder,$photoshopappfolder,$photos hop,$UserDataFolder/Adobe/Adobe Photoshop CS6/Configuration,DisplayName,Photoshop CS6 64,ProductName,Photoshop64,FamilyName,Photoshop,ProductVersion,13.0,IconPath,Configuratio n/PS_exman_24px.png,SupportedInSuite,CS6,HostNameForCSXS,PHSP,Bit,64
    4/19/2013 10:53:13.021 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-7,0,EmStorePath,$SharedRibsDataFolder/Adobe/Extension Manager,$photoshopappfolder,$installfolder,$pluginsfolder,$photoshopappfolder/Plug-Ins,$p resetsfolder,$photoshopappfolder/Presets,$platform,Win,$actions,$presetsfolder/Actions,$bl ackandwhite,$presetsfolder/Black and White,$brushes,$presetsfolder/Brushes,$channelmixer,$presetsfolder/Channel Mixer,$colorbooks,$presetsfolder/Color Books,$colorrange,$presetsfolder/Color Range,$colorswatches,$presetsfolder/Color Swatches,$contours,$presetsfolder/Contours,$curves,$presetsfolder/Curves,$customshapes,$p resetsfolder/Custom Shapes,$duotones,$presetsfolder/Duotones,$exposure,$presetsfolder/Exposure,$gradients,$pr esetsfolder/Gradients,$huesat,$presetsfolder/Hue Sat,$imagestatistics,$presetsfolder/Image Statistics,$keyboardshortcuts,$presetsfolder/Keyboard Shortcuts,$layouts,$presetsfolder/Layouts,$lenscorrection,$presetsfolder/Lens Correction,$levels,$presetsfolder/Levels,$liquifymeshes,$presetsfolder/Liquify Meshes,$menucustomization,$presetsfolder/Menu Customization,$optimizedcolors,$presetsfolder/Optimized Colors,$optimizedoutputSettings,$presetsfolder/Optimized Output Settings,$optimizedsettings,$presetsfolder/Optimized Settings,$patterns,$presetsfolder/Patterns,$reducenoise,$presetsfolder/Reduce Noise,$replacecolor,$presetsfolder/Replace Color,$scripts,$presetsfolder/Scripts,$selectivecolor,$presetsfolder/Selective Color,$shadowhighlight,$presetsfolder/Shadow Highlight,$smartsharpen,$presetsfolder/Smart Sharpen,$styles,$presetsfolder/Styles,$textures,$presetsfolder/Textures,$tools,$presetsfo lder/Tools,$variations,$presetsfolder/Variations,$webphotogallery,$presetsfolder/Web Photo Gallery,$workspaces,$presetsfolder/Workspaces,$zoomify,$presetsfolder/Zoomify,$hueandsatu ration,$presetsfolder/Hue and Saturation,$lights,$presetsfolder/Lights,$materials,$presetsfolder/Materials,$meshes,$pre setsfolder/Meshes,$rendersettings,$presetsfolder/Render Settings,$volumes,$presetsfolder/Volumes,$widgets,$presetsfolder/Widgets,$localesfolder,$ photoshopappfolder/Locales,$additionalplugins,$localesfolder/$LOCALE/Additional Plug-ins,$additionalpresets,$localesfolder/$LOCALE/Additional Presets,$localeskeyboardshortcuts,$localesfolder/$LOCALE/Additional Presets/$platform/Keyboard Shortcuts,$localesmenucustomization,$localesfolder/$LOCALE/Additional Presets/$platform/Menu Customization,$localesworkspaces,$localesfolder/$LOCALE/Additional Presets/$platform/Workspaces,$automate,$pluginsfolder/Automate,$digimarc,$pluginsfolder/D igimarc,$displacementmaps,$pluginsfolder/Displacement Maps,$effects,$pluginsfolder/Effects,$extensions,$pluginsfolder/Extensions,$fileformats,$ pluginsfolder/File Formats,$filters,$pluginsfolder/Filters,$imagestacks,$pluginsfolder/Image Stacks,$importexport,$pluginsfolder/Import-Export,$measurements,$pluginsfolder/Measuremen ts,$panels,$pluginsfolder/Panels,$parser,$pluginsfolder/Parser,$3dengines,$pluginsfolder/3 D Engines,$lightingstyles,$pluginsfolder/Filters/Lighting Styles,$matlab,$photoshopappfolder/MATLAB,UserExtensionFolder,$photoshopappfolder,$photos hop,$UserDataFolder/Adobe/Adobe Photoshop CS6/Configuration,DisplayName,Photoshop CS6 64,ProductName,Photoshop64,FamilyName,Photoshop,ProductVersion,13.0,IconPath,Configuratio n/PS_exman_24px.png,SupportedInSuite,CS6,HostNameForCSXS,PHSP,Bit,64
    4/19/2013 10:53:13.034 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airParseXML Message:-8,airParseXML,C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS6\Configuration\XManConfig.xml,Configuration.VariableForExMan.Data
    4/19/2013 10:53:13.035 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML(), sessionId==-8got xml String to parse: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS6\Configuration\XManConfig.xml
    4/19/2013 10:53:13.035 [INFO] com.adobe.exman.controller.ParseXMLCommand execute(), ParseXMLCommand is executed.
    4/19/2013 10:53:13.035 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Dreamweaver%20CS6/Configuration/XManConf ig.xml
    4/19/2013 10:53:13.035 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is XManConfig.xml file, just load it directly
    4/19/2013 10:53:13.035 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Dreamweaver%20CS6/Configuration/XManConf ig.xml
    4/19/2013 10:53:13.062 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML, success, externalCallBack,-8,0,$sharedextensionfolder,$shareddatafolder/Adobe/Dreamweaver CS6/$LOCALE/Configuration/Extensions,$dreamweaver,$installfolder,$dreamweaver/Configurati on,$userdatafolder/Adobe/Dreamweaver CS6/$LOCALE/Configuration,$UserBinfolder,$userdatafolder/Adobe/Dreamweaver CS6/$LOCALE,NeedOperationNotification,true,QuitScript,dw.quitApplication(),SupportedInSui te,CS6,HostNameForCSXS,DRWV,ProductVersion,12.0,Bit,32
    4/19/2013 10:53:13.062 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-8,0,$sharedextensionfolder,$shareddatafolder/Adobe/Dreamweaver CS6/$LOCALE/Configuration/Extensions,$dreamweaver,$installfolder,$dreamweaver/Configurati on,$userdatafolder/Adobe/Dreamweaver CS6/$LOCALE/Configuration,$UserBinfolder,$userdatafolder/Adobe/Dreamweaver CS6/$LOCALE,NeedOperationNotification,true,QuitScript,dw.quitApplication(),SupportedInSui te,CS6,HostNameForCSXS,DRWV,ProductVersion,12.0,Bit,32
    4/19/2013 10:53:13.068 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airParseXML Message:-9,airParseXML,C:\Program Files (x86)\Adobe\Adobe Fireworks CS6\Configuration\XManConfig.xml,Configuration.VariableForExMan.Data
    4/19/2013 10:53:13.068 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML(), sessionId==-9got xml String to parse: C:\Program Files (x86)\Adobe\Adobe Fireworks CS6\Configuration\XManConfig.xml
    4/19/2013 10:53:13.068 [INFO] com.adobe.exman.controller.ParseXMLCommand execute(), ParseXMLCommand is executed.
    4/19/2013 10:53:13.068 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Fireworks%20CS6/Configuration/XManConfig .xml
    4/19/2013 10:53:13.069 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is XManConfig.xml file, just load it directly
    4/19/2013 10:53:13.069 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Fireworks%20CS6/Configuration/XManConfig .xml
    4/19/2013 10:53:13.098 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML, success, externalCallBack,-9,0,HostNameForCSXS,FWKS,ProductVersion,12.0,PreExtensionFolder,$Shared CommonDataFolder/Adobe/Fireworks CS6/PreInstall,$fireworks,$installfolder,$fireworksuser,$userdatafolder/adobe/Fireworks CS6,SupportedInSuite,CS6,Bit,32
    4/19/2013 10:53:13.098 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-9,0,HostNameForCSXS,FWKS,ProductVersion,12.0,PreExtensionFolder,$Shared CommonDataFolder/Adobe/Fireworks CS6/PreInstall,$fireworks,$installfolder,$fireworksuser,$userdatafolder/adobe/Fireworks CS6,SupportedInSuite,CS6,Bit,32
    4/19/2013 10:53:13.106 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airParseXML Message:-10,airParseXML,C:\Program Files (x86)\Adobe\Adobe Flash CS6\XManConfig.xml,Configuration.VariableForExMan.Data
    4/19/2013 10:53:13.106 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML(), sessionId==-10got xml String to parse: C:\Program Files (x86)\Adobe\Adobe Flash CS6\XManConfig.xml
    4/19/2013 10:53:13.106 [INFO] com.adobe.exman.controller.ParseXMLCommand execute(), ParseXMLCommand is executed.
    4/19/2013 10:53:13.106 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Flash%20CS6/XManConfig.xml
    4/19/2013 10:53:13.106 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is XManConfig.xml file, just load it directly
    4/19/2013 10:53:13.106 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///C:/Program%20Files%20(x86)/Adobe/Adobe%20Flash%20CS6/XManConfig.xml
    4/19/2013 10:53:13.134 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirParseXML, success, externalCallBack,-10,0,$UserExtensionFolder,$UserDataFolder/Adobe/Flash CS6/$Locale/Configuration/Extensions,SupportedInSuite,CS6,HostNameForCSXS,FLPR,Bit,32,$Ro otFolder,$InstallFolder,$RootFolderLocal,$InstallFolder/$LOCALE,$flash,$userdatafolder/Ado be/Flash CS6/$LOCALE/Configuration,$UserBinfolder,$userdatafolder/Adobe/Flash CS6/$LOCALE/Configuration
    4/19/2013 10:53:13.134 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-10,0,$UserExtensionFolder,$UserDataFolder/Adobe/Flash CS6/$Locale/Configuration/Extensions,SupportedInSuite,CS6,HostNameForCSXS,FLPR,Bit,32,$Ro otFolder,$InstallFolder,$RootFolderLocal,$InstallFolder/$LOCALE,$flash,$userdatafolder/Ado be/Flash CS6/$LOCALE/Configuration,$UserBinfolder,$userdatafolder/Adobe/Flash CS6/$LOCALE/Configuration
    4/19/2013 10:53:13.416 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airNotifyReady Message:-12,airNotifyReady
    4/19/2013 10:53:13.417 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirNotifyReady(), sessionId=-12
    4/19/2013 10:53:13.418 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----
    4/19/2013 10:53:13.418 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----
    4/19/2013 10:53:13.418 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----2----
    4/19/2013 10:53:13.419 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----2----
    4/19/2013 10:53:13.419 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----2----3----
    4/19/2013 10:53:13.419 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----2----3----
    4/19/2013 10:53:13.420 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###getExManConfigPath(), the params to OWL: sessionid=2
    4/19/2013 10:53:13.420 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalGetExManConfigPath,2
    4/19/2013 10:53:13.422 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###getSupportedProducts(), the params to OWL: sessionid=3
    4/19/2013 10:53:13.422 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalGetSupportedProducts,3
    4/19/2013 10:53:13.427 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message2,0,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\,6.0.5.9,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS5.5\Configuration\Extensions\,C:\ProgramData\Adobe\Extension Manager CS6\,C:\ProgramData\Adobe\Extension Manager CS5.5\,C:\Program Files (x86)
    4/19/2013 10:53:13.427 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 2
    responseType= 0
    responseBody=C:\ProgramData\Adobe\Extension Manager CS6\EM Store\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\,6.0.5.9,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS5.5\Configuration\Extensions\,C:\ProgramData\Adobe\Extension Manager CS6\,C:\ProgramData\Adobe\Extension Manager CS5.5\,C:\Program Files (x86)
    4/19/2013 10:53:13.427 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::GetExManConfigPathSession got parameters in handleResponse:
    responseType= 0
    4/19/2013 10:53:13.428 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 0 :C:\ProgramData\Adobe\Extension Manager CS6\EM Store\
    4/19/2013 10:53:13.428 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 1 :C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\
    4/19/2013 10:53:13.428 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 2 :6.0.5.9
    4/19/2013 10:53:13.428 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 3 :C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS5.5\Configuration\Extensions\
    4/19/2013 10:53:13.429 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 4 :C:\ProgramData\Adobe\Extension Manager CS6\
    4/19/2013 10:53:13.429 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 5 :C:\ProgramData\Adobe\Extension Manager CS5.5\
    4/19/2013 10:53:13.429 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 6 :C:\Program Files (x86)
    4/19/2013 10:53:13.430 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy totalExtDir(), the _totalExtDir is set to: C:\ProgramData\Adobe\Extension Manager CS6\EM Store\
    4/19/2013 10:53:13.430 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy myEMStorePath(), the _myEMStorePath is set to: C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\
    4/19/2013 10:53:13.430 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy the extension manager's version is set to: 6.0.5.9
    4/19/2013 10:53:13.431 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy the extension manager last version extension path is set to: C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS5.5\Configuration\Extensions\
    4/19/2013 10:53:13.431 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----3----
    4/19/2013 10:53:13.451 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message3,0,0,Flash CS6,Flash,12.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Flash CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Flash CS6\,,http://www.adobe.com/go/exchange,NoDefined,http://www.adobe.com/cfusion/exchange/upload/in dex.cfm,Flash,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\Flash CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Flash CS6\,,0,0,FLPR,,,1,C:\Program Files (x86)\Adobe\Adobe Flash CS6\,0,Fireworks CS6,Fireworks,12.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Fireworks CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Fireworks CS6\,,http://www.adobe.com/go/exchange,NoDefined,http://www.adobe.com/cfusion/exchange/upload/in dex.cfm,Fireworks,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\Fireworks CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Fireworks CS6\,,0,0,FWKS,,,1,C:\Program Files (x86)\Adobe\Adobe Fireworks CS6\Configuration\,0,Dreamweaver CS6,Dreamweaver,12.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Dreamweaver CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Dreamweaver CS6\,,http://www.adobe.com/go/exchange,NoDefined,http://www.adobe.com/cfusion/exchange/upload/in dex.cfm,Dreamweaver,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\Dreamweaver CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Dreamweaver CS6\,,0,0,DRWV,,,1,C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS6\Configuration\,0,Photoshop CS6 64,Photoshop64,13.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Photoshop CS6 64\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Photoshop CS6 64\,,http://www.adobe.com/go/exchange,C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Configuration\PS_exman_24px.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,Photoshop,C:\ProgramData\Adobe\Exte nsion Manager CS6\EM Store\Photoshop CS6 64\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Photoshop CS6 64\,,0,0,PHSP,,,2,C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Configuration\,0,Photoshop CS6 32,Photoshop32,13.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Photoshop CS6 32\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Photoshop CS6 32\,,http://www.adobe.com/go/exchange,C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Configuration\PS_exman_24px.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,Photoshop,C:\ProgramData\Adobe\Exte nsion Manager CS6\EM Store\Photoshop CS6 32\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Photoshop CS6 32\,,0,0,PHSP,,,1,C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Configuration\,0,InDesign CS6,InDesign,8.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\InDesign CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\InDesign CS6\,,http://www.adobe.com/go/exchange,C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Configuration\Icon.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\InDesign CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\InDesign CS6\,,1,1,IDSN,C:\Users\*************\AppData\Roaming\Adobe\InDesign\Version 8.0\en_GB\PlugInConfig.txt,Adobe InDesign CS6,1,C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Configuration\,0,Illustrator CS6 64,Illustrator64,16.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Illustrator CS6 64\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Illustrator CS6 64\,,http://www.adobe.com/go/exchange,C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Configuration\ai_app_24px.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,Illustrator,C:\ProgramData\Adobe\Ex tension Manager CS6\EM Store\Illustrator CS6 64\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Illustrator CS6 64\,,0,0,ILST,,,2,C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Configuration\,0,Illustrator CS6 32,Illustrator32,16.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Illustrator CS6 32\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Illustrator CS6 32\,,http://www.adobe.com/go/exchange,C:\Program Files (x86)\Adobe\Adobe Illustrator CS6\Support Files\Contents\Windows\Configuration\ai_app_24px.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,Illustrator,C:\ProgramData\Adobe\Ex tension Manager CS6\EM Store\Illustrator CS6 32\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Illustrator CS6 32\,,0,0,ILST,,,1,C:\Program Files (x86)\Adobe\Adobe Illustrator CS6\Support Files\Contents\Windows\Configuration\
    4/19/2013 10:53:13.452 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 3
    responseType= 0
    responseBody=0,Flash CS6,Flash,12.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Flash CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Flash CS6\,,http://www.adobe.com/go/exchange,NoDefined,http://www.adobe.com/cfusion/exchange/upload/in dex.cfm,Flash,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\Flash CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Flash CS6\,,0,0,FLPR,,,1,C:\Program Files (x86)\Adobe\Adobe Flash CS6\,0,Fireworks CS6,Fireworks,12.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Fireworks CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Fireworks CS6\,,http://www.adobe.com/go/exchange,NoDefined,http://www.adobe.com/cfusion/exchange/upload/in dex.cfm,Fireworks,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\Fireworks CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Fireworks CS6\,,0,0,FWKS,,,1,C:\Program Files (x86)\Adobe\Adobe Fireworks CS6\Configuration\,0,Dreamweaver CS6,Dreamweaver,12.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Dreamweaver CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Dreamweaver CS6\,,http://www.adobe.com/go/exchange,NoDefined,http://www.adobe.com/cfusion/exchange/upload/in dex.cfm,Dreamweaver,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\Dreamweaver CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Dreamweaver CS6\,,0,0,DRWV,,,1,C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS6\Configuration\,0,Photoshop CS6 64,Photoshop64,13.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Photoshop CS6 64\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Photoshop CS6 64\,,http://www.adobe.com/go/exchange,C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Configuration\PS_exman_24px.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,Photoshop,C:\ProgramData\Adobe\Exte nsion Manager CS6\EM Store\Photoshop CS6 64\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Photoshop CS6 64\,,0,0,PHSP,,,2,C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Configuration\,0,Photoshop CS6 32,Photoshop32,13.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Photoshop CS6 32\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Photoshop CS6 32\,,http://www.adobe.com/go/exchange,C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Configuration\PS_exman_24px.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,Photoshop,C:\ProgramData\Adobe\Exte nsion Manager CS6\EM Store\Photoshop CS6 32\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Photoshop CS6 32\,,0,0,PHSP,,,1,C:\Program Files (x86)\Adobe\Adobe Photoshop CS6\Configuration\,0,InDesign CS6,InDesign,8.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\InDesign CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\InDesign CS6\,,http://www.adobe.com/go/exchange,C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Configuration\Icon.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,,C:\ProgramData\Adobe\Extension Manager CS6\EM Store\InDesign CS6\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\InDesign CS6\,,1,1,IDSN,C:\Users\*************\AppData\Roaming\Adobe\InDesign\Version 8.0\en_GB\PlugInConfig.txt,Adobe InDesign CS6,1,C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Configuration\,0,Illustrator CS6 64,Illustrator64,16.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Illustrator CS6 64\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Illustrator CS6 64\,,http://www.adobe.com/go/exchange,C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Configuration\ai_app_24px.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,Illustrator,C:\ProgramData\Adobe\Ex tension Manager CS6\EM Store\Illustrator CS6 64\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Illustrator CS6 64\,,0,0,ILST,,,2,C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Configuration\,0,Illustrator CS6 32,Illustrator32,16.0.0,C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Illustrator CS6 32\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Illustrator CS6 32\,,http://www.adobe.com/go/exchange,C:\Program Files (x86)\Adobe\Adobe Illustrator CS6\Support Files\Contents\Windows\Configuration\ai_app_24px.png,http://www.adobe.com/cfusion/exchange/upload/index.cfm,Illustrator,C:\ProgramData\Adobe\Ex tension Manager CS6\EM Store\Illustrator CS6 32\,C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Illustrator CS6 32\,,0,0,ILST,,,1,C:\Program Files (x86)\Adobe\Adobe Illustrator CS6\Support Files\Contents\Windows\Configuration\
    4/19/2013 10:53:13.453 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::GetSupportedProductsSession got parameters in handleResponse:
    responseType= 0
    4/19/2013 10:53:13.453 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 0
    4/19/2013 10:53:13.453 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 1 :Flash CS6
    4/19/2013 10:53:13.453 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 2 :Flash
    4/19/2013 10:53:13.454 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 3 :12.0.0
    4/19/2013 10:53:13.454 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 4 :C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Flash CS6\
    4/19/2013 10:53:13.454 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 5 :C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Flash CS6\
    4/19/2013 10:53:13.454 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 6 :
    4/19/2013 10:53:13.454 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 7 :http://www.adobe.com/go/exchange
    4/19/2013 10:53:13.455 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 8 :NoDefined
    4/19/2013 10:53:13.455 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 9 :http://www.adobe.com/cfusion/exchange/upload/index.cfm
    4/19/2013 10:53:13.455 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 10 :Flash
    4/19/2013 10:53:13.455 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 11 :C:\ProgramData\Adobe\Extension Manager CS6\EM Store\Flash CS6\
    4/19/2013 10:53:13.455 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 12 :C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Flash CS6\
    4/19/2013 10:53:13.456 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 13 :
    4/19/2013 10:53:13.456 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 14
    4/19/2013 10:53:13.456 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 15
    4/19/2013 10:53:13.456 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 16 :FLPR
    4/19/2013 10:53:13.456 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 17 :
    4/19/2013 10:53:13.457 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 18 :
    4/19/2013 10:53:13.457 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 19 :1
    4/19/2013 10:53:13.457 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 20 :C:\Program Files (x86)\Adobe\Adobe Flash CS6\
    4/19/2013 10:53:13.457 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 21
    4/19/2013 10:53:13.458 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 22 :Fireworks CS6
    4/19/2013 10:53:13.458 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 23 :Fireworks
    4/19/2013 10:53:13.458 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 24 :12.0.0
    4/19/2013 10:53:13.458 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 25 :C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Fireworks CS6\
    4/19/2013 10:53:13.459 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 26 :C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Fireworks CS6\
    4/19/2013 10:53:13.459 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 27 :
    4/19/2013 10:53:13.459 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 28 :http://www.adobe.com/go/exchange
    4/19/2013 10:53:13.459 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 29 :NoDefined
    4/19/2013 10:53:13.460 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 30 :http://www.adobe.com/cfusion/exchange/upload/index.cfm
    4/19/2013 10:53:13.460 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 31 :Fireworks
    4/19/2013 10:53:13.460 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 32 :C:\ProgramData\Adobe\Extension Manager CS6\EM Store\Fireworks CS6\
    4/19/2013 10:53:13.460 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 33 :C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\EM Store\Fireworks CS6\
    4/19/2013 10:53:13.460 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 34 :
    4/19/2013 10:53:13.461 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 35
    4/19/2013 10:53:13.461 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 36
    4/19/2013 10:53:13.461 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 37 :FWKS
    4/19/2013 10:53:13.461 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 38 :
    4/19/2013 10:53:13.461 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 39 :
    4/19/2013 10:53:13.462 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 40 :1
    4/19/2013 10:53:13.462 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 41 :C:\Program Files (x86)\Adobe\Adobe Fireworks CS6\Configuration\
    4/19/2013 10:53:13.462 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 42
    4/19/2013 10:53:13.462 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 43 :Dreamweaver CS6
    4/19/2013 10:53:13.462 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 44 :Dreamweaver
    4/19/2013 10:53:13.463 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 45 :12.0.0
    4/19/2013 10:53:13.463 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 46 :C:\ProgramData\Adobe\Extension Manager CS6\Mxi Flag\Dreamweaver CS6\
    4/19/2013 10:53:13.463 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 47 :C:\Users\*************\AppData\Roaming\Adobe\Extension Manager CS6\Mxi Flag\Dreamweaver CS6\
    4/19/2013 10:53:13.463 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 48 :
    4/19/2013 10:53:13.463 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 49 :http://www.adobe.com/go/exchange
    4/19/2013 10:53:13.464 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 50 :NoDefined
    4/19/2013 10:53:13.464 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 51 :http://www.adobe.com/cfusion/exchange/upload/index.cfm
    4/19/2013 10:53:13.464 [INFO] com.adobe.exman.controller.session.backend.BackendSession respons

    1. You only pasted one log file (log0.log?), there is another more important log file: ExtensionManager.log you dind't paste.
    2. Have you removed ALL mxi files from ALL subfolders of BOTH "C:\ProgramData\Adobe\Extension Manager CS6\EM Store" AND "C:\Users\<UserName>\AppData\Roaming\Adobe\Extension Manager CS6\EM Store" to separate folder? If yes, Extension Manager shouldn't hang.
    3. Please make sure you have "Full control" permission to ""C:\ProgramData\Adobe\Extension Manager CS6\Configuration\DB\ExMan.db" and "C:\Users\<UserName>\AppData\Roaming\Adobe\Extension Manager CS6\Configuration\DB\ExManUser.db". You can check it in "Security" tab page of "Properties" dialog box.

  • Need help non-null error: xml or onComplete?

    Can someone tell me what this means?
    The slideshow its referring to is a something I purchased online and is embedded into my movie.
    Does it mean  I need to put and onComplete function on the page thats loading this?  Is it for the xml or the slideshow movie?
    Or am I missing eventListener somewhere?
    Error #2007: Parameter listener must be non-null.
        at flash.events::EventDispatcher/addEventListener()
        at slideshow_fla::TheWholeSlideshow_1/xmlLoaded()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()
    Thanks in advance
    Barbara

    Thats is my question, I just have this code on the frame  that I want it to play on and it plays on the first try, after that it's not loading.
    I don't know what i am doing wrong or how or where to code to put the listener.  I've tried so many things, obviously not the right thing!
    var ss1Req:URLRequest = new URLRequest("slideshow/slideshow.swf");
    var ss1loader:Loader = new Loader();
            _1a.x = 10;
            _1a.y = 70;
            ss1loader.load(ss1Req);
            _1a.addChild(ss1loader);
        ss1loader.unload();
    This is the buttoncode that takes user to the page
    smm1_btn.addEventListener(MouseEvent.MOUSE_DOWN, slide);
            function slide(event:MouseEvent):void  {
                if (this.vidPlayer == !null)
            this.vidPlayer.stop();
            SoundMixer.stopAll();
                MovieClip(this.parent).gotoAndStop("photo");
    This is the site :
    http://www.stacykessler.com/test.html
    Thanks,

Maybe you are looking for

  • Run Windows from an external drive......

    I want to boot Windows from an external drive. Why would Apple not allow this to be done. It makes no sence to me at all. You would still have to run Windows from the intel-Mac. To make you waste good MacOS space on the internal drive is a shame. I k

  • Process + Servlet to invoke process + form + database

    GetMortgageForm process The following illustration shows the GetMortgageForm process (see Figure 2). Figure 2. A LiveCycle ES process that returns an interactive form. Note: This document does not describe how to create a process by using Adobe LiveC

  • Oracle E-bs 11.5.10.2 CU2  Load test

    Hi, I'm planning to upgrade current 11.5.10.2 CU2 to R12(12.0.6). During this transition I'm looking for load testing by using HP LoadRunner. Does any one have tested load by using HP LoadRunner? Any metalink note or any doc would be great help. Do I

  • Travel Allowance based on distance traveled

    Dear consultants, My client wants to pay Travel Allowance to employees who travel unplanned during their travel plan. Employees are divided in "Reimbursement Group for M/A Enterprise". There are different rates per KM for each grade. I have specified

  • Flow of Quality Management

    Hi experts,      I am new to this QM in sap R/3. Can u tell me the flow of quality management? As I beginner how can start up in the QM module. Expecting your valuable answers. Regards, Arun.