Compile error during Flex Deployment of a Webservice

Hello,
We are using the Visual Composer (7.0 SP9) to display the data from a home made Web Service. This is the complete display of a simple table without input.
We tested the Web Service with the "Test Dat Service" option and within the Web Service Navigator of the J2EE Engine. This all worked fine.
When we try to deploy the application with Flash/Flex it fails, but when we try to deploy it with WebDynpro, the table is displayed correctly.
The following error is created during the compilation:
Error in compiling Flex application: Error 1049: Expected a field name after '.' operator.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:300)
Error 1205: The statement '' is incomplete.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:300)
Error 1099: This statement is not permitted in a class definition.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:302)
Error 1099: This statement is not permitted in a class definition.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:303)
Error 1099: This statement is not permitted in a class definition.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:304)
Error 1099: This statement is not permitted in a class definition.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:305)
Error 1099: This statement is not permitted in a class definition.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:307)
Error 1128: Attribute used outside class.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:310)
Error 1128: Attribute used outside class.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:337)
Error 1049: Expected a field name after '.' operator.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:355)
Error 1205: The statement '' is incomplete.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:355)
Error 1140: ActionScript 2.0 class scripts may only define class or interface constructs.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:337)
Error 1128: Attribute used outside class.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:376)
Error 1128: Attribute used outside class.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:394)
Error 1128: Attribute used outside class.
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:408)
Error 1029: Unexpected '}' encountered
      (E:\usr\sap\DP6\JC00\j2ee\cluster\server0\GUIMachine_Business_Packages\Prodin_Taken_2_8620\FLEX_COMPILATION_FOLEDR\AAD25B.mxml:417)
Failed to compile AAD25B.mxml
Does anybody know what the problem could be?
Thanks in advance,
Edwin Oldenburg

Hi Edwin,
have you access to the AAD25B.mxml file and take a look at the lines where the errors occurs?
Maybe you get further particulars about the errors.
But I think, this is an error in VC, but I'm not sure.
Best Regards,
Marcel

Similar Messages

  • Warning: Compiler errors during type creation

    Hello all,
    when I run the following little script in my Oracle 8.1.7 SQL plus spreadsheet I get the following error message:
    "Warning: Compiler errors during type creation". (This is my offhand translation from German, since I have a German version)
    There is no further hint as to what the nature of the error is or how I can fix it, but for sure I can't use the type I tried to define.
    Can anybody help?
    Here is the code:
    set serveroutput on ;
    create or replace type DataPoint as object(
    name varchar2(20)
    create or replace type DataPointList as table of DataPoint ;
    create or replace type ElementType as object (
    TypeName varchar(20),
    Datapoints DataPointList
    create or replace type ElementList as table of ElementType ;
    Regards,
    Norbert Ploett
    null

    create or replace type DataPoint as object(
    name varchar2(20)
    create table DataPointList of DataPoint ;
    create or replace type ElementType as object (
    TypeName varchar(20),
    Datapoints DataPointList
    create table ElementList of ElementType ;
    This should work in the given case
    Ravi
    Regards,
    Norbert Ploett
    Regards,
    Norbert Ploett
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Norbert.Ploett:
    Hello all,
    when I run the following little script in my Oracle 8.1.7 SQL plus spreadsheet I get the following error message:
    "Warning: Compiler errors during type creation". (This is my offhand translation from German, since I have a German version)
    There is no further hint as to what the nature of the error is or how I can fix it, but for sure I can't use the type I tried to define.
    Can anybody help?
    Here is the code:<HR></BLOCKQUOTE>
    null

  • JDeveloper Compiler Error during BPEL flow deployment

    Hi,
    Has anyone encountered the following during BPEL deployment? I am using JDeveloper 10.1.3.4. I was able to deploy last week without any problems.
    Compiling...
    Compiling D:\Datos\Jazztel\Cancelador\bpel\Cancelador.bpel
    [BPEL Compiler] Initializing compiler for first time use...
    BPEL suitcase generated in: D:\Datos\Jazztel\Cancelador\output\bpel_Cancelador_2.6.6.jar
    D:\Datos\jdevstudio10134\jdk\jre\bin\java.exe -jar D:\Datos\jdevstudio10134\jdev\lib\ojc.jar -source 1.5 -target 1.5 -noquiet -warn -nowarn:320 -nowarn:486 -nowarn:487 -deprecation:self -nowarn:560 -nowarn:704 -nowarn:489 -nowarn:415 -nowarn:909 -nowarn:412 -nowarn:414 -nowarn:561 -nowarn:376 -nowarn:371 -nowarn:558 -nowarn:375 -nowarn:413 -nowarn:377 -nowarn:372 -nowarn:557 -nowarn:556 -nowarn:559 -encoding Cp1252 -g -d D:\Datos\Jazztel\Cancelador\output -make D:\Datos\Jazztel\Cancelador\output\Cancelador.cdi -classpath D:\Datos\jdevstudio10134\jdk\jre\lib\rt.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\i18n.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\sunrsasign.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\jsse.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\jce.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\charsets.jar;D:\Datos\jdevstudio10134\jdk\jre\classes;D:\Datos\Jazztel\Cancelador\output;D:\Datos\jdevstudio10134\toplink\jlib\toplink.jar;D:\Datos\jdevstudio10134\toplink\jlib\toplink-oc4j.jar;D:\Datos\jdevstudio10134\toplink\jlib\antlr.jar;D:\Datos\jdevstudio10134\lib\xmlparserv2.jar;D:\Datos\jdevstudio10134\lib\xml.jar -sourcepath D:\Datos\Jazztel\Cancelador\src;D:\Datos\jdevstudio10134\jdk\src.zip;D:\Datos\jdevstudio10134\toplink\jlib\toplink-src.zip D:\Datos\Jazztel\Cancelador\src\ConsultaInstanciasCS\Customerservicecrmkpn.java D:\Datos\Jazztel\Cancelador\src\CustomerServices\Customerservicesconstantes.java D:\Datos\Jazztel\Cancelador\src\DBCONSTANTES\Constantes.java D:\Datos\Jazztel\Cancelador\src\DBCONSULTAHISTORICO\Historico.java D:\Datos\Jazztel\Cancelador\src\DBERRORESSISTEMA\Erroressistemasacciones.java D:\Datos\Jazztel\Cancelador\src\DBETAPAS\EtapasCompletadas.java D:\Datos\Jazztel\Cancelador\src\DBINSERTARINCIDENCIA\Incidencias.java D:\Datos\Jazztel\Cancelador\src\DBINSERTETAPASCOMPLETADAS\EtapasCompletadas.java D:\Datos\Jazztel\Cancelador\src\DBINSERTHISTORICO\Historico.java D:\Datos\Jazztel\Cancelador\src\DBINSERTORDERPROGRESS\Ordersprogress.java D:\Datos\Jazztel\Cancelador\src\DBNOTIFICACIONESASINCRONAS\NotifRedAsincronas.java D:\Datos\Jazztel\Cancelador\src\DBORDENESCRM\OrdenesCrm.java D:\Datos\Jazztel\Cancelador\src\DBORDENESMNP\OrdenesMnp.java D:\Datos\Jazztel\Cancelador\src\DBORDENESRED\OrdenesRed.java D:\Datos\Jazztel\Cancelador\src\DBPEDIDO\EtapasCompletadas.java D:\Datos\Jazztel\Cancelador\src\DBPEDIDO\Historico.java D:\Datos\Jazztel\Cancelador\src\DBPEDIDO\Pedidos.java D:\Datos\Jazztel\Cancelador\src\DBUPDATEETAPAADDONS\EtapasCompletadas.java D:\Datos\Jazztel\Cancelador\src\DBUPDATEETAPAS\EtapasCompletadas.java D:\Datos\Jazztel\Cancelador\src\DBUPDATEETAPAS\Historico.java
    Error: compiler internal error
    *** OJC internal error log written to file C:\DOCUME~1\anipatel\CONFIG~1\Temp\ojcInternalError.log
    [10:45:12] Compilation complete: 1 errors, 156 warnings.
    The log file mentioned contains the following:
    OJC internal error log:
    Compiler version: 10.1.3
    Build number: 4270
    Source files:
         D:\Datos\Jazztel\Cancelador\src\ConsultaInstanciasCS\Customerservicecrmkpn.java
         D:\Datos\Jazztel\Cancelador\src\CustomerServices\Customerservicesconstantes.java
         D:\Datos\Jazztel\Cancelador\src\DBCONSTANTES\Constantes.java
         D:\Datos\Jazztel\Cancelador\src\DBCONSULTAHISTORICO\Historico.java
         D:\Datos\Jazztel\Cancelador\src\DBERRORESSISTEMA\Erroressistemasacciones.java
         D:\Datos\Jazztel\Cancelador\src\DBETAPAS\EtapasCompletadas.java
         D:\Datos\Jazztel\Cancelador\src\DBINSERTARINCIDENCIA\Incidencias.java
         D:\Datos\Jazztel\Cancelador\src\DBINSERTETAPASCOMPLETADAS\EtapasCompletadas.java
         D:\Datos\Jazztel\Cancelador\src\DBINSERTHISTORICO\Historico.java
         D:\Datos\Jazztel\Cancelador\src\DBINSERTORDERPROGRESS\Ordersprogress.java
         D:\Datos\Jazztel\Cancelador\src\DBNOTIFICACIONESASINCRONAS\NotifRedAsincronas.java
         D:\Datos\Jazztel\Cancelador\src\DBORDENESCRM\OrdenesCrm.java
         D:\Datos\Jazztel\Cancelador\src\DBORDENESMNP\OrdenesMnp.java
         D:\Datos\Jazztel\Cancelador\src\DBORDENESRED\OrdenesRed.java
         D:\Datos\Jazztel\Cancelador\src\DBPEDIDO\EtapasCompletadas.java
         D:\Datos\Jazztel\Cancelador\src\DBPEDIDO\Historico.java
         D:\Datos\Jazztel\Cancelador\src\DBPEDIDO\Pedidos.java
         D:\Datos\Jazztel\Cancelador\src\DBUPDATEETAPAADDONS\EtapasCompletadas.java
         D:\Datos\Jazztel\Cancelador\src\DBUPDATEETAPAS\EtapasCompletadas.java
         D:\Datos\Jazztel\Cancelador\src\DBUPDATEETAPAS\Historico.java
    Options:
         source: 150
         target: 150
         classpath: D:\Datos\jdevstudio10134\jdk\jre\lib\ext\sunjce_provider.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\ext\sunpkcs11.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\ext\localedata.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\ext\dnsns.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\rt.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\i18n.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\sunrsasign.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\jsse.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\jce.jar;D:\Datos\jdevstudio10134\jdk\jre\lib\charsets.jar;D:\Datos\jdevstudio10134\jdk\jre\classes;D:\Datos\Jazztel\Cancelador\output;D:\Datos\jdevstudio10134\toplink\jlib\toplink.jar;D:\Datos\jdevstudio10134\toplink\jlib\toplink-oc4j.jar;D:\Datos\jdevstudio10134\toplink\jlib\antlr.jar;D:\Datos\jdevstudio10134\lib\xmlparserv2.jar;D:\Datos\jdevstudio10134\lib\xml.jar
         sourcepath: D:\Datos\Jazztel\Cancelador\srcD:\Datos\jdevstudio10134\jdk\src.zipD:\Datos\jdevstudio10134\toplink\jlib\toplink-src.zip
         encoding: Cp1252
         excluded cls:
         rebuild: false
         noCodeGen: false
         lineNumbers: true
         sourceFile: true
         localVars: true
         codecoach: true
         omitAsserts: false
    Parser:
         errorFound: false
    java.lang.ArrayIndexOutOfBoundsException: 110
         at oracle.ojc.compiler.DepInfo.readInt(DepInfo.java:521)
         at oracle.ojc.compiler.DepInfo.readName(DepInfo.java:541)
         at oracle.ojc.compiler.DepInfo.read(DepInfo.java:578)
         at oracle.ojc.compiler.DepInfo.analyzeSources(DepInfo.java:279)
         at oracle.ojc.compiler.Compiler.main_internal(Compiler.java:1088)
         at oracle.ojc.compiler.Compiler.main_throws_exceptions(Compiler.java:816)
         at oracle.ojc.compiler.Compiler.main(Compiler.java:836)
         at oracle.jdeveloper.compiler.Ojc.translate(Ojc.java:1541)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildGraph(UnifiedBuildSystem.java:300)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildProjectFiles(UnifiedBuildSystem.java:516)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildProject(UnifiedBuildSystem.java:609)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.buildAll(UnifiedBuildSystem.java:666)
         at oracle.jdeveloper.compiler.UnifiedBuildSystem$CompileThread.run(UnifiedBuildSystem.java:894)

    Just an update to this...
    I copied the BPEL flow project to our Linux server, where I was successfully able to compile and deploy the flow using devprompt and Ant. So, the problem is with JDev on my PC, but I'm not sure why though.
    I have rebooted my PC, shutdown any unnecessary apps, and the problem continues. Will see if the problem exists with other flows.
    Anit

  • Error during application deployment in cluster

    Hi All,
              I am seeing a weird error when I deploy my application in 2 node cluster. Few months back, the same cluster worked perfectly alright. The error relates to lookup at localhost:7001 which is no where in the configuration as admin server url is http://srai-xp:7001. I created a new domain and see the same problem.
              Any pointers are greatly appreciated.
              Thanks
              --shashi
              Here is the error log:
              D:\apps\bea\user_projects\domains\nclusterdomain>startManagedWebLogic.cmd NodeSR http://srai-xp:7001
              D:\apps\bea\user_projects\domains\nclusterdomain>echo off
              CLASSPATH=CR190380_81sp3.jar;D:\apps\bea\user_projects\domains\nclusterdomain\lib\jax-qname.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\li
              jsafe.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\jsafejce.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\asn1.jar;;C:\j2sd
              .4.2_04\lib\tools.jar;d:\apps\bea\WEBLOG~1\server\lib\weblogic_sp.jar;d:\apps\bea\WEBLOG~1\server\lib\weblogic.jar;d:\apps\bea\WEBLOG~1\common\eval\
              intbase\lib\pbserver44.jar;d:\apps\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar;C:\j2sdk1.4.2_04\jre\lib\rt.jar;d:\apps\bea\WEBLOG~1\server\lib\webservices.jar;D:\apps\bea\user_projects\domains\nclusterdomain\lib;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\jcsi_base.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\jcsi_jce.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\jcsi_krb.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\jcsi_krb_jaas.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\jcsi_license.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\jcsi_provider.jar;D:\apps\bea\user_projects\domains\nclusterdomain\lib\mysql-connector-java.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\nls_charset12.jar;;D:\apps\bea\user_projects\domains\nclusterdomain\lib\ojdbc14.jar;
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://[hostname]:[port]/console *
              <Mar 17, 2005 4:19:27 PM PST> <Info> <Security> <BEA-090065> <Getting boot identity from user.>
              Enter username to boot WebLogic server:weblogic
              Enter password to boot WebLogic server:
              <Mar 17, 2005 4:21:22 PM PST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM Version 1.4.2_04-b05 fr
              Sun Microsystems Inc.>
              <Mar 17, 2005 4:21:22 PM PST> <Info> <Management> <BEA-141140> <The managed server is going to contact the admin server at http://srai-xp:7001 to ch
              k if there exists a running admin server at this URL.>
              <Mar 17, 2005 4:21:22 PM PST> <Info> <Configuration Management> <BEA-150017> <This server is being started as a dependent managed server.>
              <Mar 17, 2005 4:21:22 PM PST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
              WebLogic XMLX Module 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973 >
              <Mar 17, 2005 4:21:22 PM PST> <Info> <Configuration Management> <BEA-150015> <Connecting to the administration server http://srai-xp:7001 to retriev
              the initial configuration.>
              <Mar 17, 2005 4:21:25 PM PST> <Notice> <Log Management> <BEA-170019> <The server log file D:\apps\bea\user_projects\domains\nclusterdomain\NodeSR\No
              SR.log is opened. All server side log events will be written to this file.>
              <Mar 17, 2005 4:21:30 PM PST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
              <Mar 17, 2005 4:21:30 PM PST> <Notice> <WebLogicServer> <BEA-000328> <Starting WebLogic Managed Server "NodeSR" for domain "nclusterdomain">
              <Mar 17, 2005 4:21:35 PM PST> <Notice> <Cluster> <BEA-000138> <Listening for announcements from cluster XCluster on 237.0.0.101:8050.>
              <Mar 17, 2005 4:21:35 PM PST> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of XCluster.>
              <Mar 17, 2005 4:22:08 PM PST> <Notice> <WebLogicServer> <BEA-000355> <Thread "ListenThread.Default" listening on port 8001, ip address 153.32.158.12
              <Mar 17, 2005 4:22:08 PM PST> <Notice> <Cluster> <BEA-000102> <Joining cluster XCluster on 237.0.0.101:8050>
              <Mar 17, 2005 4:22:08 PM PST> <Notice> <WebLogicServer> <BEA-000330> <Started WebLogic Managed Server "NodeSR" for domain "nclusterdomain" running i
              Production Mode>
              <Mar 17, 2005 4:22:08 PM PST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
              <Mar 17, 2005 4:23:33 PM PST> <Warning> <HTTP> <BEA-101247> <Application: 'C:\Temp\edc-server.ear', Module: 'help_de': Public ID references the old
              rsion of the Servlet DTD. You must change the public ID in web.xml file to "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN".>
              <Mar 17, 2005 4:23:33 PM PST> <Warning> <HTTP> <BEA-101247> <Application: 'C:\Temp\edc-server.ear', Module: 'help_fr': Public ID references the old
              rsion of the Servlet DTD. You must change the public ID in web.xml file to "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN".>
              <Mar 17, 2005 4:23:33 PM PST> <Warning> <HTTP> <BEA-101247> <Application: 'C:\Temp\edc-server.ear', Module: 'help_ja': Public ID references the old
              rsion of the Servlet DTD. You must change the public ID in web.xml file to "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN".>
              <Mar 17, 2005 4:23:35 PM PST> <Warning> <J2EE> <BEA-160081> <The JMS connection factory resource EDCEventQCF declared in the EJB "EventManagerBean"
              part of application "edc-server" does not support XA. It cannot be used inside a transaction context.>
              javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is:
                      java.net.ConnectException: Connection refused: connect; No available router to destination]
              at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:47)
              at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:618)
              at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:306)
              at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:239)
              at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:135)
              at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
              at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
              at javax.naming.InitialContext.init(InitialContext.java:219)
              at javax.naming.InitialContext.<init>(InitialContext.java:175)
              at weblogic.deployment.EnvironmentBuilder.findObject(EnvironmentBuilder.java:768)
              at weblogic.deployment.EnvironmentBuilder.findObjectOrCreateLinkRef(EnvironmentBuilder.java:759)
              at weblogic.deployment.EnvironmentBuilder.addUserTransaction(EnvironmentBuilder.java:555)
              at weblogic.deployment.EnvironmentBuilder.<init>(EnvironmentBuilder.java:94)
              at weblogic.servlet.internal.CompEnv.<init>(CompEnv.java:80)
              at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:565)
              at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:489)
              at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:634)
              at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:632)
              at weblogic.j2ee.J2EEApplicationContainer.prepareWebModule(J2EEApplicationContainer.java:3150)
              at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1558)
              at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1208)
              at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1051)
              at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.prepareContainer(SlaveDeployer.java:2444)
              at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2394)
              at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2310)
              at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:866)
              at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:594)
              at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:508)
              at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
              Caused by: java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is:
              java.net.ConnectException: Connection refused: connect; No available router to destination
              at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:199)
              at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:125)
              at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:296)
              ... 28 more
              --------------- nested within: ------------------
              weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Unable to create InitialContext ] - with nested exception:
              [javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is
                      java.net.ConnectException: Connection refused: connect; No available router to destination]]
              at weblogic.deployment.EnvironmentBuilder.findObject(EnvironmentBuilder.java:770)
              at weblogic.deployment.EnvironmentBuilder.findObjectOrCreateLinkRef(EnvironmentBuilder.java:759)
              at weblogic.deployment.EnvironmentBuilder.addUserTransaction(EnvironmentBuilder.java:555)
              at weblogic.deployment.EnvironmentBuilder.<init>(EnvironmentBuilder.java:94)
              at weblogic.servlet.internal.CompEnv.<init>(CompEnv.java:80)
              at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:565)
              at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:489)
              at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:634)
              at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:632)
              at weblogic.j2ee.J2EEApplicationContainer.prepareWebModule(J2EEApplicationContainer.java:3150)
              at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1558)
              at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1208)
              at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1051)
              at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.prepareContainer(SlaveDeployer.java:2444)
              at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2394)
              at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2310)
              at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:866)
              at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:594)
              at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:508)
              at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
              <Mar 17, 2005 4:23:40 PM PST> <Error> <Deployer> <BEA-149201> <Failed to complete the deployment task with ID 0 for the application edc-server.
              java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is:
              java.net.ConnectException: Connection refused: connect; No available router to destination
              at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:199)
              at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:125)
              at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:296)
              at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:239)
              at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:135)
              at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
              at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
              at javax.naming.InitialContext.init(InitialContext.java:219)
              at javax.naming.InitialContext.<init>(InitialContext.java:175)
              at weblogic.deployment.EnvironmentBuilder.findObject(EnvironmentBuilder.java:768)
              at weblogic.deployment.EnvironmentBuilder.findObjectOrCreateLinkRef(EnvironmentBuilder.java:759)
              at weblogic.deployment.EnvironmentBuilder.addUserTransaction(EnvironmentBuilder.java:555)
              at weblogic.deployment.EnvironmentBuilder.<init>(EnvironmentBuilder.java:94)
              at weblogic.servlet.internal.CompEnv.<init>(CompEnv.java:80)
              at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:565)
              at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:489)
              at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:634)
              at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:632)
              at weblogic.j2ee.J2EEApplicationContainer.prepareWebModule(J2EEApplicationContainer.java:3150)
              at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1558)
              at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1208)
              at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1051)
              at weblogic.management.deploy.slave.SlaveDeployer$ComponentActivateTask.prepareContainer(SlaveDeployer.java:2444)
              at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2394)
              at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2310)
              at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:866)
              at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:594)
              at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:508)
              at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
              --------------- nested within: ------------------
              weblogic.management.ManagementException: - with nested exception:
              [java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is:
                      java.net.ConnectException: Connection refused: connect; No available router to destination]
              at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2327)
              at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:866)
              at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:594)
              at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:508)
              at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
              >

    I checked all deployment descriptions and there are no references to t3://localhost:7001. Few months back, I had the complete clustering setup working on 2 machines and now when I deploy my application on same configuration, it fails with t3://localhost:7001 unreachable error. I created a new cluster configuration on one machine with 2 managed server and it deploys fine. Can not figure out what has changed ?

  • Error During to Deployment of Webcenter Spaces Extension

    I am getting the following error during compilation of Webcenter Spaces Extension (Extending WebCenter Spaces 11.1.1.3.0) application in JDeveloper (11.1.1.3). It is saying some packages are missing. Please help from where I can get these packages and where I need to copy them in my webcenter application folder.
    Compiling 1 source file to D:\WebCenter\ExtendWebCenterSpaces\CustomPersistentSpacesTabs\classes
    +[javac] D:\WebCenter\ExtendWebCenterSpaces\CustomPersistentSpacesTabs\src\custom\webcenter\spaces\CustomPhaseListener.java:11: package javax.faces.event does not exist+
    +[javac] import javax.faces.event.PhaseEvent;+
    +[javac] ^+
    +[javac] D:\WebCenter\ExtendWebCenterSpaces\CustomPersistentSpacesTabs\src\custom\webcenter\spaces\CustomPhaseListener.java:12: package javax.faces.event does not exist+
    +[javac] import javax.faces.event.PhaseId;+
    +[javac] ^+
    +[javac] D:\WebCenter\ExtendWebCenterSpaces\CustomPersistentSpacesTabs\src\custom\webcenter\spaces\CustomPhaseListener.java:13: package javax.faces.event does not exist+
    +[javac] import javax.faces.event.PhaseListener;+
    +[javac] ^+
    +[javac] D:\WebCenter\ExtendWebCenterSpaces\CustomPersistentSpacesTabs\src\custom\webcenter\spaces\CustomPhaseListener.java:15: package oracle.adf.share.logging does not exist+
    +[javac] import oracle.adf.share.logging.ADFLogger;+
    +[javac] ^+
    +[javac] D:\WebCenter\ExtendWebCenterSpaces\CustomPersistentSpacesTabs\src\custom\webcenter\spaces\CustomPhaseListener.java:17: package oracle.webcenter.webcenterapp.context does not exist+
    +[javac] import oracle.webcenter.webcenterapp.context.WCApplicationContext;+
    +[javac] ^+
    +[javac] D:\WebCenter\ExtendWebCenterSpaces\CustomPersistentSpacesTabs\src\custom\webcenter\spaces\CustomPhaseListener.java:18: package oracle.webcenter.webcenterapp.shell.pages does not exist+
    +[javac] import oracle.webcenter.webcenterapp.shell.pages.WCShellTabModel;+
    +[javac] ^+
    +[javac] D:\WebCenter\ExtendWebCenterSpaces\CustomPersistentSpacesTabs\src\custom\webcenter\spaces\CustomPhaseListener.java:20: package oracle.webcenter.spaces.context does not exist+
    +[javac] import oracle.webcenter.spaces.context.SpacesContext;+
    Also I am able to run default Spaces application, but need to know what should be name of my extended space application as I need to enter it in the config.properties
    +## Enter the name of the WebCenter Spaces application.+
    +## Obtain this information from your systems administrator or from the+
    +## WLS Administration Console as follows:+
    +## 1. Login to WLS Administration Console.+
    +## 2. Navigate to Deployments> webcenter>Overview+
    +## The application's name displays here.+
    webcenter.app.name=
    Any suggestions or workarounds are highly appreciated
    Thanks
    Manav

    This error related to reporting services, you need to verify that reporting services is installed on these instances.
    Secondly, you didn't need to create this instance manually then setup monitoring role. delete this instance from shared storage and try again to setup rule using different instance name and it will create automatic on shared storage.
    You can also refer below link
    http://windowspbx.blogspot.com/2012/07/aaa-donotpost-install-lync-standard.html
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

  • Stuck on Compiler Error in Flex Builder

    Greetings all.
    I have my first Flex app calling a Java backend, and the connection works fine.  I have a method "getContinents()" in Java, which returns a List of Continent objects.  Each Continent object has two variables, "name" and "description".  "Name" is a two-letter abbreviation (NA for North America, SA for South America, etc; you get the idea) and "Description" is the spelled-out description (like "North America").  I have an ActionScript class which mimics the Java class.
    In Flex, I have a DataGrid which has, as its dataProvider, a Bindable ArrayCollection.  When the data comes back into Flex, I put it in the aforementioned Bindable ArrayCollection.  That works great.  The list of Continents appears in the DataGrid, as expected.
    The issue is the DropDownList.  I want to see the same thing happen in the DropDownList.  I want to see the Description in the DropDownList, and when one is chosen, based on the selection, I want to go back to the server to get the list of Countries in that selected Continent.  But I can't get this to happen because I can't get past a compiler error on the DropDownList:
    -1067: Implicit coercion of a value of type String to an unrelated type mx.collections:IList.
    DropDownList is defined like this:
        <s:DropDownList x="270" y="220" id="continentDropdown" width="112">
                                        dataProvider="{continentArray}"
                                        labelField="description"
                                        valueField="name"
                                        change="continentChanged(event)">
        </s:DropDownList>
    Data is returned to Flex in this result handler:
                protected function continentsRO_resultHandler(event:ResultEvent):void
                {    log.info("Returned in result handler") ;
                    continentArray=event.result as ArrayCollection ;
    When I create a ComboBox instead of a DropDownList, I get the same compiler error.  When I change the ComboBox from a Spark ComboBox to an MX ComboBox, I don't get the compiler error, but the ComboBox never has any data in it.
    Would anyone be able to tell me what it is that I am doing wrong here?
    Thanks very much in advance!!!

    I would try this:
    continentArray = new ArrayCollection(event.result as Array);
    And if that does not work then ensure event.result is not just a string.
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex Training and Support Services

  • Error during test deployment

    We are getting the following error during a test deployment and cannot install the app we built.
    Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict validation.
    Windows cannot install package Test2 because this package depends on another package that couldn't be found. This package requires minimum version 1.0.9600.16408 of framework Microsoft.WinJS.2.0 published by any publisher to install; the frameworks with
    name Microsoft.WinJS.2.0 available to the user are Microsoft.WinJS.2.0_1.0.9600.16384_neutral__8wekyb3d8bbwe. Provide the correct framework along with this package.
    NOTE: For additional information, look for [ActivityId] 88451b6b-4aaa-0000-b01b-4588aa4acf01 in the Event Log or use the command line Get-AppxLog -ActivityID 88451b6b-4aaa-0000-b01b-4588aa4acf01
    I have tried updating the computer but I can't seem to find the correct file to install to make this error go away.  Any help would be appreciated.

    Hi Dracodoom, we haven't seen such error before and can't reproduce it here. To help us troubleshoot, can you please describe your configuration? More specifically:
    - Are you deploying on Windows 8.1?
    - What locale does the deployment target machine have (English, German, etc)?
    - Can you copy/paste the contents of the log generated by the deployment script? You these hints from the error message: NOTE:
    For additional information, look for [ActivityId] 88451b6b-4aaa-0000-b01b-4588aa4acf01 in the Event Log or use the command line Get-AppxLog -ActivityID 88451b6b-4aaa-0000-b01b-4588aa4acf01
    Thank you for using Siena and for helping us improve!
    Manski

  • How do I see javac compiler errors during JSP precompile?

              I played with all the options that "weblogic.jspc"
              supports. I couldn't get the javac compiler errors to
              show up when there is a problem with the generated
              Java file.
              Interestingly the same JSP when compiled automatically
              by the weblogic server, the javac errors show up in
              the output.
              Any tricks? or ideas?
              thanks
              

              In WL 5.1, earlier service packs would sometimes not show the errors. Get sp6 or later.
              mike
              "Mahesh Vellanki" <[email protected]> wrote:
              >
              >
              >I played with all the options that "weblogic.jspc"
              >supports. I couldn't get the javac compiler errors to
              >show up when there is a problem with the generated
              >Java file.
              >
              >Interestingly the same JSP when compiled automatically
              >by the weblogic server, the javac errors show up in
              >the output.
              >
              >Any tricks? or ideas?
              >
              >thanks
              >
              

  • Compile error during deployment. (App. Server 8 with Mysql)

    I am using Sun Application Server 8 with several Mysql databases.
    When I attempt to deploy my .EAR, the App Server's CMP compiler gives an error regarding missing JDO classes.
    I did try dowloading JDO from java.sun.com, but noted that the jdo jars do not contain the needed classes referenced in the error.
    Error follows:
    [#|2004-04-07T13:14:16.812-0500|WARNING|sun-appserver-pe8.0|javax.enterprise.system.tools.deployment|_ThreadID=11;|JDO74030: JDOCodeGenerator: Caught an IOException initializing CMP code generation for application 'WholeSpectrum' module 'ejb-jar-ic': JDO7001: Cannot find resource com/sun/jdo/spi/persistence/generator/database/MYSQL.properties.|#]
    [#|2004-04-07T13:14:16.828-0500|WARNING|sun-appserver-pe8.0|javax.enterprise.system.stream.err|_ThreadID=11;|JDO74030: JDOCodeGenerator: Caught an IOException initializing CMP code generation for application 'WholeSpectrum' module 'ejb-jar-ic': JDO7001: Cannot find resource com/sun/jdo/spi/persistence/generator/database/MYSQL.properties.
         at com.sun.ejb.codegen.CmpCompiler.compile(CmpCompiler.java:274)
         at com.sun.ejb.codegen.IASEJBC.doCompile(IASEJBC.java:617)
         at com.sun.ejb.codegen.IASEJBC.ejbc(IASEJBC.java:565)
         at com.sun.enterprise.deployment.backend.EJBCompiler.preDeployApp(EJBCompiler.java:360)
         at com.sun.enterprise.deployment.backend.EJBCompiler.compile(EJBCompiler.java:208)
         at com.sun.enterprise.deployment.backend.AppDeployer.runEJBC(AppDeployer.java:292)
         at com.sun.enterprise.deployment.backend.AppDeployer.deploy(AppDeployer.java:173)
         at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.java:105)
         at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:124)
         at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:74)
         at com.sun.enterprise.deployment.phasing.DeploymentService.executePhases(DeploymentService.java:233)
         at com.sun.enterprise.deployment.phasing.DeploymentService.deploy(DeploymentService.java:150)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.deploy(ApplicationsConfigMBean.java:275)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:287)
         at com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:280)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:221)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:228)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:823)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:792)
         at sun.reflect.GeneratedMethodAccessor59.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:54)
         at $Proxy1.invoke(Unknown Source)
         at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:282)
         at com.sun.enterprise.admin.jmx.remote.server.callers.InvokeCaller.call(InvokeCaller.java:38)
         at com.sun.enterprise.admin.jmx.remote.server.MBeanServerRequestHandler.handle(MBeanServerRequestHandler.java:92)
         at com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.processRequest(RemoteJmxConnectorServlet.java:69)
         at com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.doPost(RemoteJmxConnectorServlet.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:768)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:861)
         at sun.reflect.GeneratedMethodAccessor63.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:289)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:311)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:205)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:102)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:192)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:261)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:215)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:583)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:200)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:180)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:582)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at com.sun.enterprise.webservice.EjbWebServiceValve.invoke(EjbWebServiceValve.java:134)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at com.sun.enterprise.security.web.SingleSignOn.invoke(SingleSignOn.java:254)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at com.sun.enterprise.web.VirtualServerValve.invoke(VirtualServerValve.java:209)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:161)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
         at com.sun.enterprise.web.VirtualServerMappingValve.invoke(VirtualServerMappingValve.java:166)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:979)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:211)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:692)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:647)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:589)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:691)
         at java.lang.Thread.run(Thread.java:534)
    |#]
    ***************************************************************

    Setting the Vendor Type of the Database to SQL92 helps.
    I don't know if it allways maps the datatypes right.

  • Error during Component Deployment Validation

    Windows 2008 SP2 64-bit server running JBoss and LiveCycle ES2 SP1 after installing SP2, running the Configuration Manager, I get the following error in the LiveCycle Component Deployment Validation stage:
    adobe-usermanager-dsc.jar is deployed but is not currently running
    adobe-usermanager-jit-dsc.jar is deployed but is not currently running
    Then validation completes.
    If I go onto the Configure PDF Generator ES2 step, it doesn't have my previously configured user credentials for multi-threaded native conversions, and if I attempt to add any I get:
    An error occurred while adding user. See LCM logs for details.
    Swapping over to the admin webpage, there are no longer any users listed under PDFG User Accounts, in fact that page has this error in the moddle
    ALC-PDG-001-000-Conversion of the input file failed because of an exception.
    And no users or profiles in Settings -> Trust Store Management -> User and Password Credentials. Adding a profile here gives:
    An error has occurred. Please see error log for details.
    If I go into Services -> Applications and Services -> Service Management, and filter for Stopped services, I can see four usermanager services stopped; AuthorizationManagerService, DirectoryManagerService, SPIRegistrationService and AuthenticationManagerService. Selecting any of these and trying to Start them gives:
    ALC-AAC-0017-000: Service(s) failed to start. It could be configuration problem

    Server.log
    2011-02-01 17:30:52,630 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
    2011-02-01 17:30:52,630 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Setting up property manager MBean and JMX layer
    2011-02-01 17:30:52,786 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Starting recovery manager
    2011-02-01 17:30:52,849 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Recovery manager started
    2011-02-01 17:30:52,864 INFO  [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Binding TransactionManager JNDI Reference
    2011-02-01 17:30:55,115 INFO  [org.jboss.ejb3.EJB3Deployer] Starting java:comp multiplexer
    2011-02-01 17:30:56,771 INFO  [org.jboss.ws.core.server.ServiceEndpointManager] jbossws-1.2.1.GA (build=200704151756)
    2011-02-01 17:30:57,396 INFO  [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] SNMP agent going active
    2011-02-01 17:30:57,990 INFO  [org.jboss.iiop.CorbaNamingService] Naming: [IOR:000000000000002B49444C3A6F6D672E6F72672F436F734E616D696E672F4E616D696E67436F6E746578 744578743A312E3000000000000200000000000000E8000102000000000D31302E32302E32312E31373000000D C8000000114A426F73732F4E616D696E672F726F6F74000000000000050000000000000008000000004A414300 000000010000001C00000000050100010000000105010001000101090000000105010001000000210000006000 000000000000010000000000000024000000200000007E00000000000000010000000D31302E32302E32312E31 373000000DC9004000000000000000000010040100080606678102010101000000000000000000000000000000 00000000000000002000000004000000000000001F000000040000000300000001000000200000000000000002 0000002000000004000000000000001F0000000400000003]
    2011-02-01 17:30:58,021 WARN  [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.startupWarning] [com.arjuna.ats.internal.jta.transaction.arjunacore.lastResource.startupWarning] You have chosen to enable multiple last resources in the transaction manager. This is transactionally unsafe and should not be relied upon.
    2011-02-01 17:30:58,037 INFO  [org.jboss.tm.iiop.CorbaTransactionService] TransactionFactory: [IOR:000000000000003049444C3A6F72672F6A626F73732F746D2F69696F702F5472616E73616374696F6E46 6163746F72794578743A312E30000000000200000000000000E8000102000000000D31302E32302E32312E3137 3000000DC8000000144A426F73732F5472616E73616374696F6E732F4600000005000000000000000800000000 4A414300000000010000001C000000000501000100000001050100010001010900000001050100010000002100 00006000000000000000010000000000000024000000200000007E00000000000000010000000D31302E32302E 32312E31373000000DC90040000000000000000000100401000806066781020101010000000000000000000000 0000000000000000000000002000000004000000000000001F0000000400000003000000010000002000000000 000000020000002000000004000000000000001F0000000400000003]
    2011-02-01 17:30:58,427 INFO  [org.apache.catalina.core.AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_19\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Wi ndows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;D:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Common Files\Adobe\AGL
    2011-02-01 17:30:58,537 INFO  [org.apache.coyote.http11.Http11Protocol] Initializing Coyote HTTP/1.1 on http-10.20.21.170-8080
    2011-02-01 17:30:58,537 INFO  [org.apache.coyote.ajp.AjpProtocol] Initializing Coyote AJP/1.3 on ajp-10.20.21.170-8009
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.startup.Catalina] Initialization processed in 232 ms
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.core.StandardService] Starting service jboss.web
    2011-02-01 17:30:58,537 INFO  [org.apache.catalina.core.StandardEngine] Starting Servlet Engine: JBossWeb/2.0.0.GA
    2011-02-01 17:30:58,568 INFO  [org.apache.catalina.startup.Catalina] Server startup in 29 ms
    2011-02-01 17:30:58,646 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/
    2011-02-01 17:30:59,115 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/httpha-invoker.sar/invoker.war/
    2011-02-01 17:30:59,334 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/tmp1594363530041496429jbossws-context-exp.war/
    2011-02-01 17:30:59,568 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/juddi, warUrl=.../deploy/juddi-service.sar/juddi.war/
    2011-02-01 17:30:59,646 INFO  [org.apache.juddi.registry.RegistryServlet] Loading jUDDI configuration.
    2011-02-01 17:30:59,677 INFO  [org.apache.juddi.registry.RegistryServlet] Resources loaded from: /WEB-INF/juddi.properties
    2011-02-01 17:30:59,677 INFO  [org.apache.juddi.registry.RegistryServlet] Initializing jUDDI components.
    2011-02-01 17:30:59,990 INFO  [org.jboss.mail.MailService] Mail Service bound to java:/Mail
    2011-02-01 17:31:00,646 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
    2011-02-01 17:31:00,678 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
    2011-02-01 17:31:00,787 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
    2011-02-01 17:31:00,818 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
    2011-02-01 17:31:00,849 INFO  [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar
    2011-02-01 17:31:00,865 INFO  [org.jboss.resource.adapter.quartz.inflow.QuartzResourceAdapter] start quartz!!!
    2011-02-01 17:31:00,912 INFO  [org.quartz.simpl.SimpleThreadPool] Job execution threads will use class loader of thread: main
    2011-02-01 17:31:00,928 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:31:00,928 INFO  [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
    2011-02-01 17:31:00,928 INFO  [org.quartz.impl.StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
    2011-02-01 17:31:00,928 INFO  [org.quartz.impl.StdSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:31:00,928 INFO  [org.quartz.core.QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=IDP_DS' to JNDI name 'java:IDP_DS'
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=EDC_DS' to JNDI name 'java:EDC_DS'
    2011-02-01 17:31:01,099 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=CTA_DS' to JNDI name 'java:CTA_DS'
    2011-02-01 17:31:01,178 INFO  [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
    2011-02-01 17:31:02,271 INFO  [org.jboss.deployment.EARDeployer] Init J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-assembler-ivs.ear
    2011-02-01 17:31:02,412 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/Assembler, warUrl=.../tmp/deploy/tmp8865139024421213565adobe-assembler-ivs.ear-contents/adobe-assemb ler-ivs-exp.war/
    2011-02-01 17:31:02,506 INFO  [org.jboss.deployment.EARDeployer] Started J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-assembler-ivs.ear
    2011-02-01 17:31:04,678 INFO  [org.jboss.deployment.EARDeployer] Init J2EE application: file:/D:/jboss/server/lc_sqlserver/deploy/adobe-livecycle-jboss.ear
    2011-02-01 17:31:07,787 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:07,928 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,319 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,663 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,756 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:08,881 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,100 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-dscf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,163 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,319 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,459 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:09,710 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-ejb-receiver.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:11,913 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,100 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,257 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,397 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,553 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,741 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:12,991 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,163 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-wkf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,366 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,585 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,679 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for adobe-wkf.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:13,944 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:14,225 WARN  [org.jboss.deployment.MainDeployer] Found non-jar deployer for um.jar: MBeanProxyExt[jboss.ejb:service=EJBDeployer]
    2011-02-01 17:31:51,321 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_AACComponent
    2011-02-01 17:31:51,618 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_CoreSystemConfigComponent
    2011-02-01 17:31:51,743 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_HealthMonitorComponent
    2011-02-01 17:31:51,821 INFO  [org.jboss.ejb.EjbModule] Deploying SessionBundle
    2011-02-01 17:31:52,305 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_TrustStoreComponent
    2011-02-01 17:31:52,384 INFO  [org.jboss.ejb.EjbModule] Deploying CoreInitializer
    2011-02-01 17:31:52,431 INFO  [org.jboss.ejb.EjbModule] Deploying DocumentManagerEJB
    2011-02-01 17:31:52,524 INFO  [org.jboss.ejb.EjbModule] Deploying DSCInitializerBeanLocalEJB
    2011-02-01 17:31:52,524 INFO  [org.jboss.ejb.EjbModule] Deploying DSCInitializerBeanRemoteEJB
    2011-02-01 17:31:52,618 INFO  [org.jboss.ejb.EjbModule] Deploying EjbTransactionCMTAdapter
    2011-02-01 17:31:52,634 INFO  [org.jboss.ejb.EjbModule] Deploying EjbTransactionBMTAdapter
    2011-02-01 17:31:52,759 INFO  [org.jboss.ejb.EjbModule] Deploying Invocation
    2011-02-01 17:31:52,790 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_OutputAdmin
    2011-02-01 17:31:52,852 INFO  [org.jboss.ejb.EjbModule] Deploying OutputConfigEJB
    2011-02-01 17:31:53,181 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_PGUIComponent
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSequenceGeneratorEJB
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDataDictionaryLocalEJB
    2011-02-01 17:31:53,759 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDataDictionaryRemoteEJB
    2011-02-01 17:31:53,774 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSchemaManagerLocalEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFSchemaManagerRemoteEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFObjectManagerLocalEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFObjectManagerRemoteEJB
    2011-02-01 17:31:53,868 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_POFDeletionProcessorEJB
    2011-02-01 17:31:53,977 INFO  [org.jboss.ejb.EjbModule] Deploying RepositoryUrlDataProvider
    2011-02-01 17:31:53,993 INFO  [org.jboss.ejb.EjbModule] Deploying XappstoreUrlDataProvider
    2011-02-01 17:31:54,087 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_AdminManagerEJB
    2011-02-01 17:31:54,118 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_WorkflowInitializerEJB
    2011-02-01 17:31:54,165 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_WorkflowServiceMessageBeanLocalEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessManagerLocalEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessManagerRemoteEJB
    2011-02-01 17:31:54,321 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessEngineCMTEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ProcessEngineBMTEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TemplateManagerLocalEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TemplateManagerRemoteEJB
    2011-02-01 17:31:54,337 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ComponentManagerLocalEJB
    2011-02-01 17:31:54,352 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_ComponentManagerRemoteEJB
    2011-02-01 17:31:54,352 INFO  [org.jboss.ejb.EjbModule] Deploying adobe_TaskManagerEJB
    2011-02-01 17:31:54,681 INFO  [org.jboss.ejb.EjbModule] Deploying AdobeIDP2UI_UMUIComponent
    2011-02-01 17:31:54,806 INFO  [org.jboss.ejb.EjbModule] Deploying AuthenticationManagerBean
    2011-02-01 17:31:54,837 INFO  [org.jboss.ejb.EjbModule] Deploying LocalUserManagerBean
    2011-02-01 17:31:54,852 INFO  [org.jboss.ejb.EjbModule] Deploying DirectoryServicesManagerBean
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying SynchronizationAuditLogManagerBean
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying UMHibernateGenericDao
    2011-02-01 17:31:54,868 INFO  [org.jboss.ejb.EjbModule] Deploying HibernateSynchronizationDao
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying PreferencesBean
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying PreferencesRemoteBean
    2011-02-01 17:31:54,884 INFO  [org.jboss.ejb.EjbModule] Deploying BootstrapperManagerBean
    2011-02-01 17:31:55,665 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_AACComponent' to jndi 'ejb/AdobeIDP2UI_AACComponent'
    2011-02-01 17:31:55,665 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/AACComponent.jar
    2011-02-01 17:31:55,759 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_CoreSystemConfigComponent' to jndi 'ejb/AdobeIDP2UI_CoreSystemConfigComponent'
    2011-02-01 17:31:55,759 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/CoreSystemConfigComponent.jar
    2011-02-01 17:31:55,821 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_HealthMonitorComponent' to jndi 'ejb/AdobeIDP2UI_HealthMonitorComponent'
    2011-02-01 17:31:55,821 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/HealthMonitorComponent.jar
    2011-02-01 17:31:55,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'SessionBundle' to jndi 'ejb/SessionBundleLocal'
    2011-02-01 17:31:55,962 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'SessionBundle' to jndi 'ejb/SessionBundleRemote'
    2011-02-01 17:31:55,978 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/SessionBundle.jar
    2011-02-01 17:31:56,024 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_TrustStoreComponent' to jndi 'ejb/AdobeIDP2UI_TrustStoreComponent'
    2011-02-01 17:31:56,024 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/TrustStoreComponent.jar
    2011-02-01 17:31:56,103 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'CoreInitializer' to jndi 'local/com/adobe/bmc/config/initializer/CoreInitializerLocal'
    2011-02-01 17:31:56,103 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'CoreInitializer' to jndi 'com/adobe/bmc/config/initializer/CoreInitializer'
    2011-02-01 17:31:56,103 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-csa-config.jar
    2011-02-01 17:31:56,134 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'DocumentManagerEJB' to jndi 'adobe/idp/DocumentManagerEJB'
    2011-02-01 17:31:56,134 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-docmanager-ejb.jar
    2011-02-01 17:31:56,149 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'DSCInitializerBeanLocalEJB' to jndi 'local/DSCInitializerBeanLocalEJB@2107292101'
    2011-02-01 17:31:56,165 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'DSCInitializerBeanRemoteEJB' to jndi 'adobe/DSCInitializerBeanRemoteEJB'
    2011-02-01 17:31:56,165 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-dsc-bootstrap-ejb.jar
    2011-02-01 17:31:56,399 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'EjbTransactionCMTAdapter' to jndi 'adobe/EjbTransactionCMTAdapterLocal'
    2011-02-01 17:31:56,462 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'EjbTransactionBMTAdapter' to jndi 'adobe/EjbTransactionBMTAdapterLocal'
    2011-02-01 17:31:56,462 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-dscf.jar
    2011-02-01 17:31:56,540 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'Invocation' to jndi 'ejb/Invocation'
    2011-02-01 17:31:56,540 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-ejb-receiver.jar
    2011-02-01 17:31:56,603 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_OutputAdmin' to jndi 'ejb/AdobeIDP2UI_OutputAdmin'
    2011-02-01 17:31:56,603 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-output-admin-ejb.jar
    2011-02-01 17:31:56,853 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'OutputConfigEJB' to jndi 'com.adobe.output.config.OutputConfigLocalHome'
    2011-02-01 17:31:56,853 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'OutputConfigEJB' to jndi 'com.adobe.output.config.OutputConfigHome'
    2011-02-01 17:31:57,056 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-output-config-ejb.jar
    2011-02-01 17:31:57,071 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_PGUIComponent' to jndi 'ejb/AdobeIDP2UI_PGUIComponent'
    2011-02-01 17:31:57,087 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-pg-uicomponent.jar
    2011-02-01 17:31:57,134 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFSequenceGeneratorEJB' to jndi 'local/adobe_POFSequenceGeneratorEJB@1278683798'
    2011-02-01 17:31:57,196 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFDataDictionaryLocalEJB' to jndi 'local/adobe_POFDataDictionaryLocalEJB@1334574952'
    2011-02-01 17:31:57,196 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFDataDictionaryRemoteEJB' to jndi 'adobe/POFDataDictionary'
    2011-02-01 17:31:57,212 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFSchemaManagerLocalEJB' to jndi 'local/adobe_POFSchemaManagerLocalEJB@1412892778'
    2011-02-01 17:31:57,228 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFSchemaManagerRemoteEJB' to jndi 'adobe/POFSchemaManager'
    2011-02-01 17:31:57,243 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_POFObjectManagerLocalEJB' to jndi 'local/adobe_POFObjectManagerLocalEJB@1992663799'
    2011-02-01 17:31:57,259 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFObjectManagerRemoteEJB' to jndi 'adobe/POFObjectManager'
    2011-02-01 17:31:57,274 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_POFDeletionProcessorEJB' to jndi 'adobe/POFDeletionProcessor'
    2011-02-01 17:31:57,274 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-pof.jar
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'RepositoryUrlDataProvider' to jndi 'com/adobe/local/repositoryUrlDataProvider'
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'XappstoreUrlDataProvider' to jndi 'com/adobe/local/xappstoreUrlDataProvider'
    2011-02-01 17:31:57,306 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-repository-bindings.jar
    2011-02-01 17:31:57,353 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_AdminManagerEJB' to jndi 'local/adobe_AdminManagerEJB@284206056'
    2011-02-01 17:31:57,353 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_AdminManagerEJB' to jndi 'adobe/AdminManager'
    2011-02-01 17:31:57,353 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-admin.jar
    2011-02-01 17:31:57,524 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_WorkflowInitializerEJB' to jndi 'local/adobe_WorkflowInitializerEJB@1594420688'
    2011-02-01 17:31:57,524 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_WorkflowInitializerEJB' to jndi 'adobe/WorkflowInitializerEJB'
    2011-02-01 17:31:57,540 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-initializer-ejb.jar
    2011-02-01 17:31:57,618 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_WorkflowServiceMessageBeanLocalEJB' to jndi 'local/adobe_WorkflowServiceMessageBeanLocalEJB@712543094'
    2011-02-01 17:31:57,634 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf-services-ejb.jar
    2011-02-01 17:31:57,634 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessManagerLocalEJB' to jndi 'local/adobe_ProcessManagerLocalEJB@51535841'
    2011-02-01 17:31:57,649 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_ProcessManagerRemoteEJB' to jndi 'adobe/ProcessManager'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessEngineCMTEJB' to jndi 'local/adobe_ProcessEngineCMTEJB@1209177426'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ProcessEngineBMTEJB' to jndi 'local/adobe_ProcessEngineBMTEJB@1699041128'
    2011-02-01 17:31:57,681 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_TemplateManagerLocalEJB' to jndi 'local/adobe_TemplateManagerLocalEJB@30528184'
    2011-02-01 17:31:57,696 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_TemplateManagerRemoteEJB' to jndi 'adobe/TemplateManager'
    2011-02-01 17:31:57,696 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_ComponentManagerLocalEJB' to jndi 'local/adobe_ComponentManagerLocalEJB@1434344637'
    2011-02-01 17:31:57,712 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_ComponentManagerRemoteEJB' to jndi 'adobe/ComponentManager'
    2011-02-01 17:31:57,712 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'adobe_TaskManagerEJB' to jndi 'local/adobe_TaskManagerEJB@843999483'
    2011-02-01 17:31:57,728 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'adobe_TaskManagerEJB' to jndi 'adobe/TaskManager'
    2011-02-01 17:31:57,728 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/adobe-wkf.jar
    2011-02-01 17:31:57,868 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'AdobeIDP2UI_UMUIComponent' to jndi 'ejb/AdobeIDP2UI_UMUIComponent'
    2011-02-01 17:31:57,868 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/um-adminui.jar
    2011-02-01 17:31:57,915 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'AuthenticationManagerBean' to jndi 'com.adobe.idp.um.businesslogic.authentication.AuthenticationManagerHome'
    2011-02-01 17:31:57,915 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'LocalUserManagerBean' to jndi 'com.adobe.idp.um.businesslogic.localuser.LocalUserManagerHome'
    2011-02-01 17:31:57,931 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'DirectoryServicesManagerBean' to jndi 'com.adobe.idp.um.businesslogic.directoryservices.DirectoryServicesManagerHome'
    2011-02-01 17:31:57,946 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'SynchronizationAuditLogManagerBean' to jndi 'com.adobe.idp.um.businesslogic.directoryservices.SynchronizationAuditLogManagerHome'
    2011-02-01 17:31:57,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'UMHibernateGenericDao' to jndi 'com.adobe.idp.um.businesslogic.dao.GenericDAOHome'
    2011-02-01 17:31:57,962 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'HibernateSynchronizationDao' to jndi 'com.adobe.idp.um.businesslogic.synch.dao.SynchronizationDAOHome'
    2011-02-01 17:31:57,978 INFO  [org.jboss.ejb.plugins.local.BaseLocalProxyFactory] Bound EJB LocalHome 'PreferencesBean' to jndi 'com.adobe.idp.config.PreferencesSPIHome'
    2011-02-01 17:31:57,978 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'PreferencesRemoteBean' to jndi 'com.adobe.idp.config.remote.PreferencesSPIRemoteHome'
    2011-02-01 17:31:57,993 INFO  [org.jboss.proxy.ejb.ProxyFactory] Bound EJB Home 'BootstrapperManagerBean' to jndi 'com.adobe.idp.um.businesslogic.bootstrapper.BootstrapperManagerHome'
    2011-02-01 17:31:57,993 INFO  [org.jboss.ejb.EJBDeployer] Deployed: file:/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss .ear-contents/um.jar
    2011-02-01 17:31:58,025 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/AACComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/AACCompone nt-exp.war/
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validator-rules.xml'
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/custom-rules.xml'
    2011-02-01 17:31:58,618 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validation.xml'
    2011-02-01 17:31:58,790 INFO  [org.apache.struts.tiles.TilesPlugin] Tiles definition factory loaded for module ''.
    2011-02-01 17:31:58,806 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/CoreSystemConfigComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/CoreSystem ConfigComponent-exp.war/
    2011-02-01 17:31:59,290 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/datamanagerservice, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/DataManage rService-exp.war/
    2011-02-01 17:31:59,525 INFO  [com.adobe.service.DataManagerService] BMC512: Service DataManagerService: Starting
    2011-02-01 17:31:59,556 INFO  [com.adobe.service.DataManagerService] BMC511: Service DataManagerService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\DataManagerService
    2011-02-01 17:32:02,275 INFO  [com.adobe.fontmanager.FontManager] ALC-FMR-001-010:FontManager: Loading Adobe Server fonts from directory: D:\Adobe\Adobe LiveCycle ES2\fonts
    2011-02-01 17:32:07,697 INFO  [com.adobe.fontmanager.FontManager] ALC-FMR-001-010:FontManager: Loading System fonts from directory: C:\Windows\Fonts
    2011-02-01 17:32:17,713 INFO  [com.adobe.service.DataManagerService] BMC513: Service DataManagerService: Started
    2011-02-01 17:32:17,729 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/HealthMonitor, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/HealthMoni torComponent-exp.war/
    2011-02-01 17:32:18,525 INFO  [com.adobe.monitor.stats.SystemStatistic] Health Monitor Thread started
    2011-02-01 17:32:19,182 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/TrustStoreComponent, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/TrustStore Component-exp.war/
    2011-02-01 17:32:19,494 INFO  [com.adobe.truststore.ui.TSAuthFilter] TSAuthFilter init
    2011-02-01 17:32:19,994 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adminui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adminui-ex p.war/
    2011-02-01 17:32:20,182 WARN  [org.apache.commons.digester.Digester] [NavigationRuleRule]{faces-config/navigation-rule} Merge(/*)
    2011-02-01 17:32:20,416 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/XMLFMCallBackService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-XMLF MCallBack-exp.war/
    2011-02-01 17:32:20,510 INFO  [com.adobe.service.XMLFMCallBackService] BMC512: Service XMLFMCallBackService: Starting
    2011-02-01 17:32:20,541 INFO  [com.adobe.service.XMLFMCallBackService] BMC511: Service XMLFMCallBackService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\XMLFMCallBackService
    2011-02-01 17:32:20,541 INFO  [com.adobe.service.XMLFMCallBackService] Starting XMLFM CallBack service
    2011-02-01 17:32:20,557 INFO  [com.adobe.service.XMLFMCallBackService] BMC513: Service XMLFMCallBackService: Started
    2011-02-01 17:32:20,588 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-bootstrapper, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-boot strapper-exp.war/
    2011-02-01 17:32:20,666 INFO  [com.adobe.livecycle.bootstrap.framework.BootstrapServlet] Initializing BootstrapServlet ...
    2011-02-01 17:32:20,682 INFO  [com.adobe.livecycle.bootstrap.framework.BootstrapServlet] BootstrapServlet initialization complete.
    2011-02-01 17:32:20,713 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/cache-controller, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-cach e-controller-exp.war/
    2011-02-01 17:32:20,791 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC512: Service CacheController: Starting
    2011-02-01 17:32:20,807 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC511: Service CacheController: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\CacheController
    2011-02-01 17:32:20,807 INFO  [com.adobe.livecycle.cache.adapter.GemfireCacheController] BMC513: Service CacheController: Started
    2011-02-01 17:32:20,822 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/DocumentManager, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-docm anager-init-exp.war/
    2011-02-01 17:32:20,916 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-forms-cacheService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-form s-cacheService-exp.war/
    2011-02-01 17:32:21,010 INFO  [com.adobe.formServer.common.config.CacheInitializationServlet] Initialization done for com.adobe.formServer.common.cachemanager.CacheManager and com.adobe.formServer.common.clustercache.ClusterCache
    2011-02-01 17:32:21,026 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/launchpad, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-lc-l aunchpad-exp.war/
    2011-02-01 17:32:21,104 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/adobe-lcm-bootstrapper, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-lcm- bootstrapper-redirector-exp.war/
    2011-02-01 17:32:21,197 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/OutputAdmin, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-outp ut-admin-exp.war/
    2011-02-01 17:32:21,447 WARN  [com.adobe.output.admin.LocaleFilter] LF001: Bundle not found: forms.license.forms-productinfo
    2011-02-01 17:32:21,447 INFO  [com.adobe.output.admin.LocaleFilter] LF002: Supported locales: [all]
    2011-02-01 17:32:21,682 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/OutputService, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-outp ut-mbean-exp.war/
    2011-02-01 17:32:21,807 INFO  [com.adobe.output.mbean.Output] BMC512: Service Output: Starting
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] BMC511: Service Output: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\Output
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] FSC003: ========== Start Output Service =========
    2011-02-01 17:32:21,822 INFO  [com.adobe.output.mbean.Output] BMC513: Service Output: Started
    2011-02-01 17:32:21,838 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfg-ipp, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pdfg -ipp-support-exp.war/
    2011-02-01 17:32:21,932 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfgui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pdfg ui-exp.war/
    2011-02-01 17:32:22,447 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/pdfg-adminui, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-pg-a dminui-exp.war/
    2011-02-01 17:32:22,979 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/remoting, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-remo ting-provider-exp.war/
    2011-02-01 17:32:23,494 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/repository, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-repo sitory-bindings-exp.war/
    2011-02-01 17:32:23,588 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/rest, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-rest -provider-exp.war/
    2011-02-01 17:32:23,823 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/soap, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-soap -provider-exp.war/
    2011-02-01 17:32:24,104 INFO  [com.adobe.idp.dsc.provider.impl.soap.axis.Logging] SOAP501: Initializing Adobe SOAP Provider
    2011-02-01 17:32:24,119 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/dsc, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/dsc-exp.wa r/
    2011-02-01 17:32:24,213 INFO  [com.adobe.idp.dsc.management.impl.ArchiveFileManagerImpl] ArchiveFileManagerImpl:getLocalCacheRootDir():Adobe tmp directory is:C:\LCTemp\adobejb_server1
    2011-02-01 17:32:25,526 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Initializing DSC Container
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS502: The document storage sweep interval is set to 30000 seconds.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS503: The global document storage root directory is: D:\LCGlobalDocumentStorage
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS509: The local storage root directory is: C:\LCTemp\AdobeDocumentStorage\local
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS505: The document storage default disposal timeout is set to 600 seconds.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS506: The document storage default max inline size is set to 65536 bytes.
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS508: Accessing the global document storage filesystem: true
    2011-02-01 17:32:31,495 INFO  [com.adobe.idp.Document] DOCS510: Called from within the EAR: true
    2011-02-01 17:33:07,684 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] IDPSchedulerService onLoad called
    2011-02-01 17:33:09,246 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Initializing SCHEDULER FACTORY from properties ...
    2011-02-01 17:33:09,262 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] SCHEDULER FACTORY initialized.
    2011-02-01 17:33:09,278 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] IDPSchedulerService onLoad complete
    2011-02-01 17:33:09,278 INFO  [com.adobe.idp.event.EventMgmtLifeCycleImpl] Called onLoad:
    2011-02-01 17:33:09,450 INFO  [com.adobe.idp.event.EventMgmtLifeCycleImpl] onLoad completed:
    2011-02-01 17:33:09,465 INFO  [com.adobe.idp.workflow.dsc.lifecycle.WorkflowDSCLifeCycle] Now loading workflow-dsc service.
    2011-02-01 17:33:09,465 INFO  [com.adobe.idp.workflow.dsc.lifecycle.WorkflowDSCLifeCycle] Workflow-dsc service load completed.
    2011-02-01 17:33:14,059 INFO  [com.adobe.idp.dsc.webservice.WebServiceImpl] WebServiceImpl.onLoad
    2011-02-01 17:33:14,137 INFO  [com.adobe.pdfg.ConfigServiceOnLoad] Calling onLoad of Config Service
    2011-02-01 17:33:14,137 INFO  [com.adobe.pdfg.ConfigServiceOnLoad] Application server started as user: GBVM011742$
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Called onLoad: GeneratePDF
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Acrobat_PATH" is set to "D:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe"
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Notepad_PATH" is set to "C:\Windows\System32\Notepad.exe"
    2011-02-01 17:33:14,465 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "Photoshop_PATH" is set to "D:\Program Files (x86)\Adobe\Adobe Photoshop CS2\Photoshop.exe"
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "WordPerfect_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "PageMaker_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "FrameMaker_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "OpenOffice_PATH" is set to " "
    2011-02-01 17:33:14,481 INFO  [com.adobe.pdfg.GeneratePDFOnLoad] Environment variable "JAVA_HOME_32" is set to "C:\Program Files (x86)\Java\jdk1.6.0_19"
    2011-02-01 17:33:15,309 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] DSC Container initialized
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.startup.DSCStartupServlet] Install and start of components complete. Now starting core asynchronous services ...
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting Core Components...
    2011-02-01 17:33:15,325 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting WorkManager Component...
    2011-02-01 17:33:15,872 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] WorkManager Component started successfully
    2011-02-01 17:33:15,872 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Starting services which need post-dsc-initialization (Scheduler, docmanager purge)...
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Start scheduler service
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Context classloader is org.jboss.util.loading.DelegatingClassLoader
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Creating new scheduler. isInUpgrade:false
    2011-02-01 17:33:15,903 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Scheduler is shutdown, will attempt to recreate.
    2011-02-01 17:33:16,012 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:33:16,012 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Using thread monitor-based data access locking (synchronization).
    2011-02-01 17:33:16,075 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 Volatile Trigger(s).
    2011-02-01 17:33:16,075 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 Volatile Job(s).
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] JobStoreTX initialized.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.DSCSchedulerFactory] Quartz scheduler 'IDPSchedulerService' initialized from an externally provided properties instance.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.DSCSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.SchedulerServiceImpl] Scheduler loaded with name IDPSchedulerService
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Freed 1 triggers from 'acquired' / 'blocked' state.
    2011-02-01 17:33:16,091 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Handling 5 trigger(s) that missed their scheduled fire-time.
    2011-02-01 17:33:16,153 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Recovering 0 jobs that were in-progress at the time of the last shut-down.
    2011-02-01 17:33:16,153 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Recovery complete.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 0 'complete' triggers.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.scheduler.jobstore.DSCJobStoreTX] Removed 1 stale fired job entries.
    2011-02-01 17:33:16,169 INFO  [org.quartz.core.QuartzScheduler] Scheduler IDPSchedulerService_$_20 started.
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Started services which need post-dsc-initialization (Scheduler, docmanager purge) successfully
    2011-02-01 17:33:16,169 INFO  [com.adobe.idp.dsc.impl.DSCManagerImpl] Core Components started successfully
    2011-02-01 17:33:16,231 INFO  [com.adobe.idp.dsc.startup.DSCStartupServlet] Install and start of components complete. Now starting core asynchronous services ...
    2011-02-01 17:33:18,771 WARN  [com.adobe.livecycle.cache.adapter.GemfireCacheAdapter] Cache region 'PartitionedGuaranteed_dsc_sc_endpoint' was already created
    2011-02-01 17:33:30,070 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/launchpad_help_en, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/launchpad_ help_en-exp.war/
    2011-02-01 17:33:30,159 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_de, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_d e-exp.war/
    2011-02-01 17:33:30,232 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_en, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_e n-exp.war/
    2011-02-01 17:33:30,306 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_fr, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_f r-exp.war/
    2011-02-01 17:33:30,376 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/lc_admin_ja, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/lc_admin_j a-exp.war/
    2011-02-01 17:33:30,455 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umcache, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-cache-e xp.war/
    2011-02-01 17:33:30,551 INFO  [com.adobe.idp.um.services.UMCacheService] BMC512: Service UMCacheService: Starting
    2011-02-01 17:33:30,569 INFO  [com.adobe.idp.um.services.UMCacheService] BMC511: Service UMCacheService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\UMCacheService
    2011-02-01 17:33:30,570 INFO  [com.adobe.idp.um.services.UMCacheService] BMC513: Service UMCacheService: Started
    2011-02-01 17:33:30,582 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umscheduler, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-schedul er-exp.war/
    2011-02-01 17:33:30,668 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC512: Service IDPScheduler: Starting
    2011-02-01 17:33:30,685 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC511: Service IDPScheduler: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\IDPScheduler
    2011-02-01 17:33:30,698 INFO  [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.6.0 created.
    2011-02-01 17:33:30,698 INFO  [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
    2011-02-01 17:33:30,698 INFO  [org.quartz.impl.DirectSchedulerFactory] Quartz scheduler 'SimpleQuartzScheduler
    2011-02-01 17:33:30,698 INFO  [org.quartz.impl.DirectSchedulerFactory] Quartz scheduler version: 1.6.0
    2011-02-01 17:33:30,698 INFO  [org.quartz.core.QuartzScheduler] Scheduler SimpleQuartzScheduler_$_SIMPLE_NON_CLUSTERED started.
    2011-02-01 17:33:30,708 INFO  [com.adobe.idp.um.scheduler.IDPScheduler] BMC513: Service IDPScheduler: Started
    2011-02-01 17:33:30,721 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/umstartup, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-startup -exp.war/
    2011-02-01 17:33:30,822 INFO  [com.adobe.idp.um.services.UMStartupService] BMC512: Service UMStartupService: Starting
    2011-02-01 17:33:30,839 INFO  [com.adobe.idp.um.services.UMStartupService] BMC511: Service UMStartupService: Native files expanded in D:\jboss\server\lc_sqlserver\svcnative\UMStartupService
    2011-02-01 17:33:30,911 INFO  [STDOUT] Got IP Address of LC Server:10.20.21.170
    2011-02-01 17:33:30,912 INFO  [com.adobe.idp.um.services.UMStartupService] BMC513: Service UMStartupService: Started
    2011-02-01 17:33:30,926 INFO  [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/um, warUrl=.../tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-exp.war /
    2011-02-01 17:33:31,364 INFO  [org.apache.struts.tiles.TilesPlugin] Tiles definition factory loaded for module ''.
    2011-02-01 17:33:31,366 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validator-rules.xml'
    2011-02-01 17:33:31,367 INFO  [org.apache.struts.validator.ValidatorPlugIn] Loading validation rules file from '/WEB-INF/validation.xml'
    2011-02-01 17:33:31,474 INFO  [com.adobe.idp.um.ui.UMActionServlet]
    * System Properties **************************************************
    PROPERTIES_FILE..............................: tsmx.properties
    TSMX_VERSION.................................: unknown
    adobe.server.common.dir......................: D:\jboss\server\lc_sqlserver\svccommon
    adobe.server.data.dir........................: D:\jboss\server\lc_sqlserver\svcdata
    adobe.server.root.dir........................: D:\jboss\server\lc_sqlserver
    adobeidp.serverName..........................: server1
    awt.toolkit..................................: sun.awt.windows.WToolkit
    bind.address.................................: 10.20.21.170
    catalina.base................................: D:\jboss\server\lc_sqlserver
    catalina.ext.dirs............................: D:\jboss\server\lc_sqlserver\lib
    catalina.home................................: D:\jboss\server\lc_sqlserver
    catalina.useNaming...........................: false
    com.adobe.idp.DocumentManagerServlet.........: started
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobejb_server1
    com.adobe.tempDirectory......................: C:\LCTemp\adobejb_server1
    com.arjuna.ats.arjuna.objectstore.objectStoreDir: D:\jboss\server\lc_sqlserver\data/tx-object-store
    com.arjuna.ats.jta.lastResourceOptimisationInterface: org.jboss.tm.LastResource
    com.arjuna.ats.tsmx.agentimpl................: com.arjuna.ats.internal.jbossatx.agent.LocalJBossAgentImpl
    com.arjuna.common.util.logger................: log4j_releveler
    com.arjuna.common.util.logging.DebugLevel....: 0x00000000
    com.arjuna.common.util.logging.FacilityLevel.: 0xffffffff
    com.arjuna.common.util.logging.VisibilityLevel: 0xffffffff
    common.loader................................: ${catalina.home}/lib,${catalina.home}/lib/*.jar
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    gemfire.disableShutdownHook..................: true
    hibernate.bytecode.provider..................: cglib
    jacorb.config.log.verbosity..................: 0
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: C:\Program Files\Java\jdk1.6.0_19\lib\tools.jar;D:\jboss\bin\run.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: D:\jboss\lib\endorsed
    java.ext.dirs................................: C:\Program Files\Java\jdk1.6.0_19\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
    java.home....................................: C:\Program Files\Java\jdk1.6.0_19\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: C:\Program Files\Java\jdk1.6.0_19\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Wi ndows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Windows Imaging\;D:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Common Files\Adobe\AGL
    java.naming.factory.initial..................: org.jnp.interfaces.NamingContextFactory
    java.naming.factory.url.pkgs.................: org.jboss.naming:org.jnp.interfaces
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: org.jboss.net.protocol
    java.rmi.server.RMIClassLoaderSpi............: org.jboss.system.JBossRMIClassLoader
    java.rmi.server.codebase.....................: http://10.20.21.170:8083/
    java.rmi.server.hostname.....................: 10.20.21.170
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_19-b04
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Sun Microsystems Inc.
    java.vendor.url..............................: http://java.sun.com/
    java.vendor.url.bug..........................: http://java.sun.com/cgi-bin/bugreport.cgi
    java.version.................................: 1.6.0_19
    java.vm.info.................................: mixed mode
    java.vm.name.................................: Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Sun Microsystems Inc.
    java.vm.version..............................: 16.2-b04
    javax.management.builder.initial.............: org.jboss.mx.server.MBeanServerBuilderImpl
    jboss.bind.address...........................: 10.20.21.170
    jboss.home.dir...............................: D:\jboss
    jboss.home.url...............................: file:/D:/jboss/
    jboss.identity...............................: 1f0ac9f04d8e357cx-36a1f369x129b18f2917x-8000127
    jboss.lib.url................................: file:/D:/jboss/lib/
    jboss.remoting.domain........................: JBOSS
    jboss.remoting.instanceid....................: 1f0ac9f04d8e357cx-36a1f369x129b18f2917x-8000127
    jboss.remoting.jmxid.........................: gbvm011742_1296581443348
    jboss.remoting.version.......................: 22
    jboss.server.base.dir........................: D:\jboss\server
    jboss.server.base.url........................: file:/D:/jboss/server/
    jboss.server.config.url......................: file:/D:/jboss/server/lc_sqlserver/conf/
    jboss.server.data.dir........................: D:\jboss\server\lc_sqlserver\data
    jboss.server.home.dir........................: D:\jboss\server\lc_sqlserver
    jboss.server.home.url........................: file:/D:/jboss/server/lc_sqlserver/
    jboss.server.lib.url.........................: file:/D:/jboss/server/lc_sqlserver/lib/
    jboss.server.log.dir.........................: D:\jboss\server\lc_sqlserver\log
    jboss.server.name............................: lc_sqlserver
    jboss.server.temp.dir........................: D:\jboss\server\lc_sqlserver\tmp
    jbossmx.loader.repository.class..............: org.jboss.mx.loading.UnifiedLoaderRepository3
    jgroups.bind_addr............................: 10.20.21.170
    line.separator...............................:
    org.apache.commons.logging.Log...............: org.apache.commons.logging.impl.Log4JLogger
    org.apache.xerces.xni.parser.Configuration...: org.apache.xerces.parsers.XMLGrammarCachingConfiguration
    org.jboss.ORBSingletonDelegate...............: org.jacorb.orb.ORBSingleton
    org.omg.CORBA.ORBClass.......................: org.jacorb.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: org.jboss.system.ORBSingleton
    org.w3c.dom.DOMImplementationSourceList......: org.apache.xerces.dom.DOMXSImplementationSourceImpl
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008
    os.version...................................: 6.0
    p2p.useSSL...................................: false
    package.access...............................: sun.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.,sun.be ans.
    package.definition...........................: sun.,java.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.
    path.separator...............................: ;
    program.name.................................: run.bat
    server.loader................................:
    shared.loader................................:
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: D:\jboss\lib\endorsed\serializer.jar;D:\jboss\lib\endorsed\xalan.jar;D:\jboss\lib\endorse d\xercesImpl.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_19\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_19\jre\classes
    sun.boot.library.path........................: C:\Program Files\Java\jdk1.6.0_19\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: HotSpot 64-Bit Server Compiler
    sun.os.patch.level...........................: Service Pack 2
    sun.rmi.dgc.client.gcInterval................: 3600000
    sun.rmi.dgc.server.gcInterval................: 3600000
    tomcat.util.buf.StringCache.byte.enabled.....: true
    user.country.................................: GB
    user.dir.....................................: D:\jboss\bin
    user.home....................................: C:\
    user.language................................: en
    user.name....................................: GBVM011742$
    user.timezone................................: Europe/London
    user.variant.................................:
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 1691 mb
    2011-02-01 17:33:31,481 INFO  [com.adobe.idp.um.ui.UMActionServlet]
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: JBossWeb/2.0.0.GA
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: D:\jboss\server\lc_sqlserver\work\jboss.web\localhost\um
    org.apache.AnnotationProcessor...............: org.apache.catalina.util.DefaultAnnotationProcessor@307dea47
    org.apache.catalina.WELCOME_FILES............: [Ljava.lang.String;@1a9ff430
    org.apache.catalina.jsp_classpath............: /D:/jboss/server/lc_sqlserver/tmp/deploy/tmp8487529096491474650jboss-ha-xa-jdbc.rar-conte nts/jboss-ha-xa-jdbc.jar;/D:/jboss/server/lc_sqlserver/lib/bsf.jar;/D:/jboss/server/lc_sql server/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/gemfire.jar;/D: /jboss/server/lc_sqlserver/deploy/snmp-adaptor.sar/;/D:/jboss/server/lc_sqlserver/tmp/depl oy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/javax77.jar;/D:/jboss/server/l c_sqlserver/lib/jaxen.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642a dobe-livecycle-jboss.ear-contents/adobe-dsc-bootstrap-ejb.jar;/D:/jboss/server/lc_sqlserve r/lib/joesnmp.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp5744798618431161839quartz-ra .rar;/D:/jboss/server/lc_sqlserver/deploy/jbossws.sar/;/D:/jboss/server/lc_sqlserver/deplo y/httpha-invoker.sar/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe -livecycle-jboss.ear-contents/CoreSystemConfigComponent.jar;/D:/jboss/server/lc_sqlserver/ tmp/deploy/tmp6138912020851092714jboss-ha-local-jdbc.rar-contents/jboss-ha-local-jdbc.jar; /D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-c ontents/lc_admin_en-exp.war/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp36511446303422966 42adobe-livecycle-jboss.ear-contents/jcsi_license.jar;/D:/jboss/server/lc_sqlserver/tmp/de ploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-event-client.jar;/D:/j boss/server/lc_sqlserver/lib/jboss-iiop.jar;/D:/jboss/server/lc_sqlserver/lib/commons-http client.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle- jboss.ear-contents/adobe-pdfg-common.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp36511 44630342296642adobe-livecycle-jboss.ear-contents/commons-codec-1.3.jar;/D:/jboss/server/lc _sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-bmc-c lient.jar;/D:/jboss/server/lc_sqlserver/deploy/httpha-invoker.sar/invoker.war/;/D:/jboss/s erver/lc_sqlserver/lib/autonumber-plugin.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3 651144630342296642adobe-livecycle-jboss.ear-contents/ldapbp.jar;/D:/jboss/server/lc_sqlser ver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/adobe-remoting-pro vider.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp1594363530041496429jbossws-context-e xp.war/;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jbo ss.ear-contents/adobe-pof-adapters.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144 630342296642adobe-livecycle-jboss.ear-contents/jsafeJCEFIPS.jar;/D:/jboss/server/lc_sqlser ver/lib/servlet-api.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642ado be-livecycle-jboss.ear-contents/SessionBundle.jar;/D:/jboss/server/lc_sqlserver/deploy/uui d-key-generator.sar/;/D:/jboss/server/lc_sqlserver/deploy/juddi-service.sar/juddi.war/;/D: /jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-cont ents/pdfencryption.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adob e-livecycle-jboss.ear-contents/flex-messaging-common.jar;/D:/jboss/server/lc_sqlserver/tmp /deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/um-spi.jar;/D:/jboss/serv er/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jboss.ear-contents/jsafeF IPS.jar;/D:/jboss/server/lc_sqlserver/tmp/deploy/tmp3651144630342296642adobe-livecycle-jbo ss.ear-

  • Compile error in flex with FlvPlayBack

    Hi all,
    First of all I should mention that i'm working under linux.
    I've installed flex plugin 3 alpha 4 for eclipse, with an ecliplse 3.3.0.
    I've decided to be in the "best environement" possible and do not force the installation as needed on higher versions.
    Firsts compilation, hello word, textbox, backgrounds...etc.. run correctly... stimulant !
    So I start my real stuff : working with FlvPlayback.
    I choose this component because I have to work with cue points and I prefer not to start with a full extend of video classes to implement it.
    I've installed the 2.5 component released for linux as mentionned in the productivity tool download page.
    Adding the swc to my projet librairie build path and wow : now I can acceed to fl.* classes with import classes completion... sounds good !!!
    However when I tried to compile a simple code ( player with 1 flv ) it rise an error :
    1046 : Type not found or not a compilation constant : NetStreamPlayOptions.
    I've browsed the web frantically for hours....
    What i've understood is that this class is part of Player2 implementation that come in runtime player10.
    According to http://opensource.adobe.com/wiki/display/flexsdk/Targeting+Flash+Player+10?showComments=fa lse
    i have to got /frameworks/libs/player/10/playerglobal.swc and force eclipse to use it.
    But that's not in the SDK...
    All what adobe propose as download is the libflashplayer.so.
    Does anyone had encountered this issue ?
    As the download page explicitly explain the the component is working on linux there should be a fix somewhere, does anybody know ?
    Thxs for you help...

    Hi,
    Can you please make sure you have Flex 3.2 or higher SDK and then target to Flash Player 10. I have this working on my system and yes, i got the same error when my SDK was below 3.2 and not targeted to Flash Player 10.
    Hope this helps.

  • Native extension, compilation error in flex

    Hello,
    I use flex 4.6.
    I try to include native extension in my AIR/IOS project, but when I compile, i always have a runtime error whatever the native extension i try.
    Exemple :
    VerifyError: Error #1014: Class com.custardbelly.air.extensions.battery.ios::Battery could not be found.
    I link in my project properties the ane file and the associate swc file.
    in the app xml file I have the right extensions tag :
    <extensions>
        <extensionID>com.custardbelly.ibattery</extensionID>
    </extensions>
    What do I wrong ?
    Thanks.
    PS : sorry for my english...

    Make sure the ANE file has no error if you created it.
    Add the ANE file into your project Build Path, then check it into Build Packaging->Apple IOS->Native Extensions.
    BTW, I built my native extension for displaying PPT file in UIWebView from Objective-C. Then I tried it on my PC to get the IPA file, it did not work out, but it works on my mac
    I don't what exactly the reason is. You can try a mac if you are using windows.

  • Dism error during MDT deployment Windows 10

    Hello,
    during installation of windows 10 with MDT 2013 i get this error:
    Anybody who knows a solution for this?
    Thx

    See there :
    http://www.deploymentresearch.com/Research/tabid/62/EntryId/192/Beyond-unsupported-Deploying-Windows-Technical-Preview-with-MDT-2013.aspx
    Mickael,
    My technet galleries contributions :
    ConfigMgr driver injector
    SCCM Collection splitter
    ConfigMgr TS Tools
    Customize WinPE images with powershell

  • Linker error during TestStand deployment

    Using Version - LabVIEW 2014 and TestStand 2014
    Test Stand deployment failed so I am trying to narrow down the issue.
    Note:
    1. Create Installer option is not selected
    2. Everything has been mass compiled in LabVIEW 2014
    Step 1 -
    1. Selected Folder A which has around 70 LabVIEW controls 
    2. Build is successful
    Step 2 -
    1. Selected One single VI from Folder B
    2. Build Successful
    Step 3 -
    1. Selected that same VI from Folder B and Selected Folder A (combining step 1 and 2)
    2. Build Fail
    "LabVIEW returned a linker error but did not return any missing VIs. This can mean that the missing files are RC files or other similar dependencies. Mass compile your top-level files and resolve the errors reported. If the problem persists contact National Instruments for support."
    Other than "Enable SSE2 Optimization" none of the options are selected from LabVIEW VI Options.
    Any idea?
    Thanks,
    VS

    This may be useful:
    http://digital.ni.com/public.nsf/allkb/19F78E0B290BFA63862574F8005A9303

  • Error During Local Deployment of Application

    Hi,
    I am developing 7.1 Laptop application, I am facing issues with the local deployment of the application from the NWDS. I have 2 DCs, one for model and the other for application, When I add a new query to the model DC, the Model DC builds without errors, But when I try to invoke the newly created query in my app DC , after the local deployment of the application, it gives me following error.
         ... 20 more
    Caused by: java.lang.ExceptionInInitializerError
         at com.acc.iss.instoredatamodel.model.DataModel.createGetAccountVisits(DataModel.java:79)
         at com.acc.iss.instoreapp.instoreapp.comp.InStoreappComp.&lt;init>(InStoreappComp.java:451)
         at com.acc.iss.instoreapp.instoreapp.comp.wdp.InternalInStoreappComp.&lt;init>(InternalInStoreappComp.java:200)
         ... 25 more
    Caused by: com.sap.tc.mobile.exception.standard.SAPIllegalArgumentException: Cannot find class com.acc.iss.instoredatamodel.model.GetAccountVisits
         at com.sap.tc.mobile.cfs.meta.io.MetaRuntimeUtils.findClass(MetaRuntimeUtils.java:229)
         at com.sap.tc.mobile.cfs.meta.io.MetaRuntimeUtils.findClass(MetaRuntimeUtils.java:204)
         at com.acc.iss.instoredatamodel.model.GetAccountVisits.&lt;clinit>(GetAccountVisits.java:45)
    Now When I reinstall the mobile client from my PC , this error is gone and also When I run the same application on another NWDS in another desktop, it builds fine and works fine. I am suspecting this is because of the local deployment of the application. Like in OCA applications we can delete the locally deployed application from eclipse  mobile plugins and do a fresh deployment again, where will I find the entries for locally deployed laptop applications so that in such cases I can delete those entries and try out a new deployment.
    Please  let me know whether local deployment is the problem or some other thing is causing this issue.
    Regards,
    Priya

    thanks for help, indeed during the Enabling monitoring in my topology i have to select the same sql store as when i install lync (in
    my case it note the default but with an instance xxxxxxx\rtc)  , when i try to create a new store xxxx\rtc in the archiving config , i can't ,the system said tha xxx\rtc already exist. 
    so i create the archiving with the default one
    i think that my error comes from there not? what can i do to create with the same store \rtc 

Maybe you are looking for

  • How to create Inbound Idocs in a ABAP program? Any function Module?

    Hello Experts, My requirement is : I have sales order data which I extracted from third party system in my internal tables. In the same box I need to create inbound Idocs and then consequently create sales orders. I have used the function module IDOC

  • Poor quality printing - white lines, etc

    I have had a K5400 for over 2 years (out of warrenty).  I don't use it a lot and have recently developed problems with white lines through characters when printing black and white and multi colored lines when printing in color.  I aligned the printhe

  • Still frames

    Can anyone suggest the best way to grab a frame from a video to then use it in an iDVD menu or print it for the cover of the DVD? There seem to be two ways but so far the only success I have had is to grab a frame as a still clip then remove .dv befo

  • Ora-00333 redo log read error block on 11g express

    Hi all I have error ora-00333 redo log read error block is there any solution for this? And I was type SQL> recovery database until cancel; but error still exist? any idea regards Gordan

  • Getting java.lang.IllegalStateException  when try response.sendRedirect(cv)

    hi, I am getting this error java.lang.IllegalStateException when i am trying to send response to a jsp page here is my code try{           Class.forName("com.mysql.jdbc.Driver");           Connection con = DriverManager.getConnection("jdbc:mysql://lo