FTP error: Unable to start a standalone server

Hello,
I've installed PureFTP Manager, but the following error messages appear when I use different ftp clients:
[Error] Unable to start a standalone server: [Address already in use]
Error: the server dropped the connection (it may be too busy).
I've found a similar problem posted to a number of forums (using different ftp server software) and the explanation seems to be that another program is tying up the port. The solution is to find out which program and disable it. However, this involves using the Terminal and commands, which puts me in deep water.
Could someone please offer a solution?
I have the Mac and a PC connected to the modem/router.
I have a static IP address. LAN IP on the Mac: 10.1.1.2 which I'm entering to test.
I have FTP access disabled in the Mac OS firewall settings.
FTP access is not blocked by service filtering in the modem/router's firewall settings.
I've set up port-forwading:
Private IP: 10.1.1.2
Protocal: TCP
Port Start: 21
Port End: 21
Port Map: 21
However, these saved settings disappear the next time I log in to the router's set up window.
G4 DP 867 MHZ   Mac OS X (10.2.x)   Max OS X (10.2.8)

Hello again gordon6010,
What I was intending to convey is that the message you see on your display is a printer software related error. By removing and reinstalling the drivers you may be able to correct the .dll error.
In regards to the beginning of the error message "Unable to Start a DCOM Server",  I recommend this document on how to Enable or Disable DCOM. This should help if the DCOM is disabled on your desktop. For further assistance, I will need to ask you a few questions:
What is the Product and Model Number of your desktop computer?
What version of Windows do you have installed on your computer?
Has your computer completed all of its important Windows Updates?
Have you updated your HP drivers using the HP Support Assistant?
Are you trying to install a printer on your network or specifically on your computer?
As an aside, there is no higher level technician as this is a free peer-to-peer forum of support. Please re-post with the results of your troubleshooting, and I look forward to your reply!
Regards
MechPilot
I work on behalf of HP
Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

Similar Messages

  • Error: Unable to start Web Logic Server , Managed Server in SOA Suite

    After creating JDBC DataSource in WLS 10.3.3
    Created a DbAdapter outbound connection pool, Selected javax.resource.cci.CoonectionFactory
    Enter JNDI name: eis/DB/test
    Then, In Outbound Connection Pools tab, expand javax.resource.cci.CoonectionFactory
    Check xADataSourceName, enter jdbc/testDS,
    When I restarted server's , I am getting Error:
    There are 1 nested errors:
    ava.lang.NullPointerException
    at java.util.Hashtable.put(Hashtable.java:401)
    at weblogic.jdbc.module.JDBCDataSourceFactory.addDataSourceFactory(JDBCDataSourceFactory.java:36)
    at weblogic.jdbc.common.internal.JDBCService.initFactories(JDBCService.java:370)
    at weblogic.jdbc.common.internal.JDBCService.initialize(JDBCService.java:114)
    at weblogic.jdbc.common.internal.JDBCService.start(JDBCService.java:134)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Hi,
    I have the same problem, have you find a solution ?
    Please
    Thank
    Cyril

  • Unable to start OC4J standalone server.

    Hi
    I have just started using Oracle 10g Portal Server. I have downladed the OC4J standalone and have installed at D:\JDeveloper\oc4j following the instructions of running the admin.jar creating the password. When I try starting the OC4J initializing it works fine starts the server with the message
    05/12/29 12:21:11 Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4 initialized
    But when I try to deploy a war file which I have created externally with the entries in aplication.xml
    <web-module id="mywar" path="../applications/mywar.war" />
    and default-web-site.xml
    <web-app application="default" name="mywar" root="/technology/mywar" />
    The server never starts up just hangs up with the message
    Starting OC4J from D:\JDeveloper\oc4j\j2ee\home ...
    If the entries are removed the server starts as usual.
    Can anyone let me know where is the problem I need to look at, because the war file works fine if deployed in tomcat or weblogic.
    Thanks in advance.

    Hi,
    As you asked me it is a simple war deployment. with the folder structure as
    simpleWar->index.jsp
    simpleWar->META-INF->application.xml
    simpleWar->WEB-INF->classes
    simpleWar->WEB-INF->lib
    simpleWar->WEB-INF->tld
    simpleWar->WEB-INF->struts-config.xml
    simpleWar->WEB-INF->validation.xml
    simpleWar->WEB-INF->validator-rules.xml
    simpleWar->WEB-INF->web.xml
    and the war file that I am creating is simpleWar.war.
    The contents of web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>debug</param-name>
    <param-value>3</param-value>
    </init-param>
    <init-param>
    <param-name>detail</param-name>
    <param-value>3</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <!-- Action Servlet Mapping -->
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <!-- The Welcome File List -->
    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <!-- tag libs -->
    <taglib>
    <taglib-uri>struts-html</taglib-uri>
    <taglib-location>/WEB-INF/tld/struts-html.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>struts-bean</taglib-uri>
    <taglib-location>/WEB-INF/tld/struts-bean.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>struts-logic</taglib-uri>
    <taglib-location>/WEB-INF/tld/struts-logic.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>util-tags</taglib-uri>
    <taglib-location>/WEB-INF/tld/tag-util.tld</taglib-location>
    </taglib>
    <taglib>
         <taglib-uri>example-taglib</taglib-uri>
         <taglib-location>/WEB-INF/tld/tag-util.tld</taglib-location>
    </taglib>
    </web-app>

  • Unable to start the managed server on OBIEE11.1.1.6.0, Oracle RTD exception

    Hi
    I am unable to start the Managed server on OBIEE 11.1.1.6.0 , as it is giving the following exception
    "[bi_server1] [NOTIFICATION] [] [oracle.wsm.security.policy.scenario.executor.SecurityScenarioExecutor] [tid: RTD_Worker_9] [userId: <anonymous>] [ecid: 0000JxpZwaCDkZ__xPWByW1Hm1HW000001,1:23440] [APP: OracleRTD#11.1.1] [WSM_POLICY_NAME: oracle/wss_username_token_client_policy] Recipient Alias property not configured in the policy. Defaulting to encrypting with signers certificate.
    Here I am providing the bi_server1.log, bi_server1.out log,bi_server1-diagnostic.log
    Please suggest me workaround to resolve this issue,
    thanks in advance
    Pavan
    bi_server1.log
    ==========
    ####<Jun 24, 2013 12:41:40 PM AST> <Info> <WebLogicServer> <10.11.34.111> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1372066900822> <BEA-000000> <WebLogic Server "bi_server1" version:
    WebLogic Server 10.3.5.0  Fri Apr 1 20:20:06 PDT 2011 1398638  Copyright (c) 1995, 2009, Oracle and/or its affiliates. All rights reserved.>
    ####<Jun 24, 2013 12:41:40 PM AST> <Notice> <Log Management> <10.11.34.111> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1372066900902> <BEA-170019> <The server log file /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/servers/bi_server1/logs/bi_server1.log is opened. All server side log events will be written to this file.>
    ####<Jun 24, 2013 12:41:40 PM AST> <Info> <Log Management> <10.11.34.111> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1372066900906> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<Jun 24, 2013 12:41:40 PM AST> <Info> <Diagnostics> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066900981> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901098> <BEA-002622> <The protocol "t3" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901098> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901099> <BEA-002622> <The protocol "http" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901099> <BEA-002622> <The protocol "https" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901100> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901101> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901102> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901102> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901106> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901107> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901109> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901109> <BEA-002622> <The protocol "admin" is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901109> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <RJVM> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901133> <BEA-000570> <Network Configuration for Channel "bi_server1"
    Listen Address   :9704
    Public Address   N/A
    Http Enabled   true
    Tunneling Enabled  false
    Outbound Enabled  false
    Admin Traffic Enabled  true>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901212> <BEA-002609> <Channel Service initialized.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Socket> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901243> <BEA-000415> <System has file descriptor limits of - soft: 4,096, hard: 4,096>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Socket> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901243> <BEA-000416> <Using effective file descriptor limit of: 4,096 open sockets/files.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Socket> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901244> <BEA-000406> <PosixSocketMuxer was built on Jan 10 2008 23:07:45>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Socket> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901301> <BEA-000436> <Allocating 4 reader threads.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <Socket> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901302> <BEA-000446> <Native IO Enabled.>
    ####<Jun 24, 2013 12:41:41 PM AST> <Info> <IIOP> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066901427> <BEA-002014> <IIOP subsystem enabled.>
    ####<Jun 24, 2013 12:41:47 PM AST> <Info> <Security> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066907382> <BEA-090894> <Successfully loaded the OPSS Policy Provider using oracle.security.jps.internal.policystore.JavaPolicyProvider.>
    ####<Jun 24, 2013 12:41:47 PM AST> <Info> <Security> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066907849> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<Jun 24, 2013 12:41:48 PM AST> <Info> <Security> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066908041> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_LVk1d2v3EBrlDS/rSIpIRiGgLnM=>
    ####<Jun 24, 2013 12:41:48 PM AST> <Info> <Security> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066908346> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<Jun 24, 2013 12:41:48 PM AST> <Info> <Security> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066908755> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<Jun 24, 2013 12:41:49 PM AST> <Info> <Security> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066909006> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<Jun 24, 2013 12:41:49 PM AST> <Info> <Security> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066909180> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server bi_server1 for security realm myrealm.>
    ####<Jun 24, 2013 12:41:49 PM AST> <Notice> <Security> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066909181> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Jun 24, 2013 12:41:49 PM AST> <Info> <Server> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066909747> <BEA-002622> <The protocol "[iiop, ldap, http, https, ldaps, cluster-broadcast, admin, iiops, t3s, cluster-broadcast-secure, snmp, t3]" is now configured.>
    ####<Jun 24, 2013 12:41:49 PM AST> <Info> <XML> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066909759> <BEA-130036> <Initializing XMLRegistry.>
    ####<Jun 24, 2013 12:41:49 PM AST> <Info> <messaging.interception> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066909771> <BEA-400000> <Initializing message interception service>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <Store> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910180> <BEA-280008> <Opening the persistent file store "_WLS_bi_server1" for recovery: directory=/app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/servers/bi_server1/data/store/default requestedWritePolicy="Direct-Write" fileLockingEnabled=true driver="wlfileio3".>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <Store> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910314> <BEA-280009> <The persistent file store "_WLS_bi_server1" (fb352aa7-3e6f-4655-b314-8b2cf7d9caa3) has been opened: blockSize=4,096 actualWritePolicy="Direct-Write(read-buffered)" explicitIOEnforced=false records=109.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910462> <BEA-001135> <Initializing the JDBC service.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910473> <BEA-001137> <Initialization complete.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910474> <BEA-001138> <Resuming the JDBC service.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910474> <BEA-001140> <Resume complete.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <Connector> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910507> <BEA-190000> <Initializing J2EE Connector Service......>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <Connector> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910510> <BEA-190001> <J2EE Connector Service initialized successfully>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910593> <BEA-040305> <JMS service is initialized and in standby mode.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910637> <BEA-040090> <Deployed 8 default connection factories.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910638> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory2" with its JNDI name "weblogic.jms.XAConnectionFactory2" is started.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910638> <BEA-040407> <Default connection factory "MessageDrivenBeanConnectionFactory" with its JNDI name "weblogic.jms.MessageDrivenBeanConnectionFactory" is started.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910639> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory" with its JNDI name "weblogic.jms.XAConnectionFactory" is started.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910639> <BEA-040407> <Default connection factory "DefaultConnectionFactory" with its JNDI name "weblogic.jms.ConnectionFactory" is started.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910639> <BEA-040407> <Default connection factory "QueueConnectionFactory" with its JNDI name "javax.jms.QueueConnectionFactory" is started.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910640> <BEA-040407> <Default connection factory "TopicConnectionFactory" with its JNDI name "javax.jms.TopicConnectionFactory" is started.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910640> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory0" with its JNDI name "weblogic.jms.XAConnectionFactory0" is started.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910640> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory1" with its JNDI name "weblogic.jms.XAConnectionFactory1" is started.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910641> <BEA-040306> <JMS service is active now.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <HTTP> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910680> <BEA-101128> <Initializing HTTP services.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <HTTP> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910697> <BEA-101135> <bi_server1 is the default Web server.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <HTTP> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910697> <BEA-101052> <[HttpServer (defaultWebserver) name: bi_server1] Initialized>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <HTTP> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910700> <BEA-101129> <Initializing the Web application container.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WTC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910746> <BEA-180046> <INFO: Logging service enabled.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WTC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910749> <BEA-180046> <INFO: TC Configuration Helper instantiated!>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WTC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910750> <BEA-180046> <INFO: TC Task Manager instantiated!>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WTC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910753> <BEA-180046> <INFO: TC security service instantiated!>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WTC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910756> <BEA-180046> <INFO: TC Outbound routing service instantiated!>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WTC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910758> <BEA-180046> <INFO: TC Transaction service instantiated!>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WebService> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910770> <BEA-220031> <The server does not support reliable SOAP messaging.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WebService> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910771> <BEA-220027> <Web Service reliable agents are started on the server.>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <JMX> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910888> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://10.11.34.111:9704/jndi/weblogic.management.mbeanservers.runtime .>
    ####<Jun 24, 2013 12:41:50 PM AST> <Info> <WebLogicServer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066910904> <BEA-000256> <Invoking oracle.jrf.wls.JRFStartup.main(null)>
    ####<Jun 24, 2013 12:41:51 PM AST> <Info> <WebLogicServer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066911658> <BEA-000256> <Invoking oracle.security.jps.wls.JpsWlsStartupClass.main(null)>
    ####<Jun 24, 2013 12:41:51 PM AST> <Info> <WebLogicServer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066911696> <BEA-000256> <Invoking oracle.core.ojdl.weblogic.ODLConfiguration.main(null)>
    ####<Jun 24, 2013 12:41:52 PM AST> <Info> <WebLogicServer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JxpZtZhDkZ__xPWByW1Hm1HW000000> <1372066912880> <BEA-000256> <Invoking oracle.jrf.AppContextStartup.main(null)>
    ####<Jun 24, 2013 12:41:52 PM AST> <Info> <WebLogicServer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JxpZtZhDkZ__xPWByW1Hm1HW000000> <1372066912883> <BEA-000256> <Invoking oracle.as.jmx.framework.wls.spi.StartupListener.main(null)>
    ####<Jun 24, 2013 12:41:52 PM AST> <Info> <WebLogicServer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JxpZtZhDkZ__xPWByW1Hm1HW000000> <1372066912942> <BEA-000256> <Invoking oracle.j2ee.ws.server.WebServiceServerStartup.main(null)>
    ####<Jun 24, 2013 12:41:52 PM AST> <Info> <WebLogicServer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JxpZtZhDkZ__xPWByW1Hm1HW000000> <1372066912956> <BEA-000256> <Invoking oracle.ias.cache.Startup.main(null)>
    ####<Jun 24, 2013 12:41:52 PM AST> <Info> <WebLogicServer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000JxpZtZhDkZ__xPWByW1Hm1HW000000> <1372066912959> <BEA-000256> <Invoking oracle.dms.wls.DMSStartup.main(null)>
    ####<Jun 24, 2013 12:41:53 PM AST> <Info> <Management> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066913225> <BEA-141278> <Java entropy configuration is: System property "java.security.egd= null"; JRE's java.security file property "securerandom.source= null"; Assumed Blocking Config= true; JDK version= 1.6.0; Operating System= AIX.>
    ####<Jun 24, 2013 12:41:53 PM AST> <Info> <Management> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066913226> <BEA-141279> <Detected BLOCKING java entropy configuration. This is the most secure setting, but may cause performance issues on machines with few sources of entropy.>
    ####<Jun 24, 2013 12:41:53 PM AST> <Info> <Management> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066913228> <BEA-141187> <Java system properties are defined as follows:
    EPM_ORACLE_HOME = /app1/orabi/Oracle/Middleware/Oracle_BI1
    EPM_ORACLE_INSTANCE = novalue
    EPM_REG_PROPERTIES_PATH = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/config/fmwconfig
    HYPERION_HOME = /app1/orabi/Oracle/Middleware/Oracle_BI1
    XDO_FONT_DIR = /app1/orabi/Oracle/Middleware/Oracle_BI1/common/fonts
    bi.oracle.home = /app1/orabi/Oracle/Middleware/Oracle_BI1
    com.ibm.cpu.endian = big
    com.ibm.oti.configuration = scar
    com.ibm.oti.jcl.build = 20110622_1654
    com.ibm.oti.shared.enabled = false
    com.ibm.oti.vm.bootstrap.library.path = /usr/java6_64/jre/lib/ppc64/default:/usr/java6_64/jre/lib/ppc64
    com.ibm.oti.vm.library.version = 24
    com.ibm.vm.bitmode = 64
    common.components.home = /app1/orabi/Oracle/Middleware/oracle_common
    domain.home = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1
    em.oracle.home = /app1/orabi/Oracle/Middleware/oracle_common
    epm.useApplicationContextId = false
    file.encoding = utf-8
    file.separator = /
    hyperion.home = /app1/orabi/Oracle/Middleware/Oracle_BI1
    ibm.signalhandling.rs = false
    ibm.signalhandling.sigchain = true
    ibm.signalhandling.sigint = true
    ibm.system.encoding = ISO8859-1
    igf.arisidbeans.carmlloc = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/config/fmwconfig/carml
    igf.arisidstack.home = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/config/fmwconfig/arisidprovider
    java.assistive = ON
    java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment
    java.awt.headless = true
    java.awt.printerjob = sun.print.PSPrinterJob
    java.class.path = /app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.jdbc_11.1.1/ojdbc6dms.jar:/app1/orabi/Oracle/Middleware/Oracle_BI1/bifoundation/jdbc/jdk16/bijdbc.jar::/app1/orabi/Oracle/Middleware/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/app1/orabi/Oracle/Middleware/patch_ocp360/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/java6_64/lib/tools.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/app1/orabi/Oracle/Middleware/modules/features/weblogic.server.modules_10.3.5.0.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/app1/orabi/Oracle/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/app1/orabi/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.dms_11.1.1/dms.jar:/app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar:/app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar:/app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar:/app1/orabi/Oracle/Middleware/oracle_common/soa/modules/commons-cli-1.1.jar:/app1/orabi/Oracle/Middleware/oracle_common/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbyclient.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/xqrl.jar:/app1/orabi/Oracle/Middleware/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/app1/orabi/Oracle/Middleware/patch_ocp360/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/java6_64/lib/tools.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/app1/orabi/Oracle/Middleware/modules/features/weblogic.server.modules_10.3.5.0.jar:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/app1/orabi/Oracle/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/app1/orabi/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar::/app1/orabi/Oracle/Middleware
    java.class.version = 50.0
    java.compiler = j9jit24
    java.endorsed.dirs = /usr/java6_64/jre/lib/endorsed
    java.ext.dirs = /usr/java6_64/jre/lib/ext
    java.fullversion = JRE 1.6.0 IBM J9 2.4 AIX ppc64-64 jvmap6460sr9-20110624_85526 (JIT enabled, AOT enabled)
    J9VM - 20110624_085526
    JIT  - r9_20101028_17488ifx17
    GC   - 20101027_AA
    java.home = /usr/java6_64/jre
    java.io.tmpdir = /tmp/
    java.jcl.version = 20110530_01
    java.library.path = /usr/java6_64/jre/lib/ppc64/default:/usr/java6_64/jre/lib/ppc64:/usr/java6_64/jre/lib/ppc64:/usr/java6_64/jre/lib/ppc64/default:/usr/java6_64/jre/lib/ppc64/j9vm:/usr/java6_64/jre/lib/ppc64:/usr/java6_64/jre/../lib/ppc64:/app1/orabi/Oracle/Middleware/patch_wls1035/profiles/default/native:/app1/orabi/Oracle/Middleware/patch_ocp360/profiles/default/native:/usr/java6_64/jre/lib/ppc64/j9vm:/usr/java6_64/jre/lib/ppc64:/usr/java6_64/jre/../lib/ppc64:/app1/orabi/Oracle/Middleware/patch_wls1035/profiles/default/native:/app1/orabi/Oracle/Middleware/patch_ocp360/profiles/default/native:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/native/aix/ppc64:/usr/lib:/app1/orabi/Oracle/Middleware/wlserver_10.3/server/native/aix/ppc64:/usr/lib:/usr/lib
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.protocol.handler.pkgs = oracle.mds.net.protocol|weblogic.net
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = pap6460sr9fp2-20110627_03 (SR9 FP2)
    java.security.policy = /app1/orabi/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Sun Microsystems Inc.
    java.specification.version = 1.6
    java.util.logging.config.class = oracle.core.ojdl.logging.LoggingConfiguration
    java.util.prefs.PreferencesFactory = java.util.prefs.FileSystemPreferencesFactory
    java.vendor = IBM Corporation
    java.vendor.url = http://www.ibm.com/
    java.version = 1.6.0
    java.vm.info = JRE 1.6.0 IBM J9 2.4 AIX ppc64-64 jvmap6460sr9-20110624_85526 (JIT enabled, AOT enabled)
    J9VM - 20110624_085526
    JIT  - r9_20101028_17488ifx17
    GC   - 20101027_AA
    java.vm.name = IBM J9 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 = IBM Corporation
    java.vm.version = 2.4
    javax.management.builder.initial = weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory = weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory = weblogic.webservice.core.soap.MessageFactoryImpl
    jrf.version = 11.1.1
    jrockit.optfile = /app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrocket_optfile.txt
    jxe.current.romimage.version = 15
    jxe.lowest.romimage.version = 15
    oracle.biee.search.bisearchproperties = /app1/orabi/Oracle/Middleware/Oracle_BI1/bifoundation/jee/BISearchConfig.properties
    oracle.core.ojdl.logging.applicationcontextprovider = oracle.core.ojdl.logging.WlsApplicationContextImpl
    oracle.core.ojdl.logging.componentId = bi_server1
    oracle.core.ojdl.logging.config.file = /app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.ovd_11.1.1/templates/ovd-logging.xml
    oracle.core.ojdl.logging.usercontextprovider = oracle.core.ojdl.logging.WlsUserContextImpl
    oracle.deployed.app.dir = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/servers/bi_server1/tmp/_WL_user
    oracle.deployed.app.ext = /-
    oracle.domain.config.dir = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/config/fmwconfig
    oracle.ecsf.configuration.class = oracle.biee.search.services.BISearchServiceConfiguration
    oracle.ecsf.security.service = oracle.biee.search.security.BISearchSecurityService
    oracle.notification.filewatching.interval = 2000
    oracle.security.jps.config = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/config/fmwconfig/jps-config.xml
    oracle.server.config.dir = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/config/fmwconfig/servers/bi_server1
    org.apache.commons.logging.Log = org.apache.commons.logging.impl.Jdk14Logger
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    org.xml.sax.driver = weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser = weblogic.xml.jaxp.RegistryParser
    os.arch = ppc64
    os.encoding = ISO8859-1
    os.name = AIX
    os.version = 6.1
    path.separator = :
    platform.home = /app1/orabi/Oracle/Middleware/wlserver_10.3
    rtd.instanceName = RTD_bi_server1
    server.group = obi
    sun.arch.data.model = 64
    sun.boot.class.path = /usr/java6_64/jre/lib/ppc64/default/jclSC160/vm.jar:/usr/java6_64/jre/lib/annotation.jar:/usr/java6_64/jre/lib/beans.jar:/usr/java6_64/jre/lib/java.util.jar:/usr/java6_64/jre/lib/jndi.jar:/usr/java6_64/jre/lib/logging.jar:/usr/java6_64/jre/lib/security.jar:/usr/java6_64/jre/lib/sql.jar:/usr/java6_64/jre/lib/ibmorb.jar:/usr/java6_64/jre/lib/ibmorbapi.jar:/usr/java6_64/jre/lib/ibmcfw.jar:/usr/java6_64/jre/lib/rt.jar:/usr/java6_64/jre/lib/charsets.jar:/usr/java6_64/jre/lib/resources.jar:/usr/java6_64/jre/lib/ibmpkcs.jar:/usr/java6_64/jre/lib/ibmcertpathfw.jar:/usr/java6_64/jre/lib/ibmjgssfw.jar:/usr/java6_64/jre/lib/ibmjssefw.jar:/usr/java6_64/jre/lib/ibmsaslfw.jar:/usr/java6_64/jre/lib/ibmjcefw.jar:/usr/java6_64/jre/lib/ibmjgssprovider.jar:/usr/java6_64/jre/lib/ibmjsseprovider2.jar:/usr/java6_64/jre/lib/ibmcertpathprovider.jar:/usr/java6_64/jre/lib/ibmxmlcrypto.jar:/usr/java6_64/jre/lib/management-agent.jar:/usr/java6_64/jre/lib/xml.jar:/usr/java6_64/jre/lib/jlm.jar:/usr/java6_64/jre/lib/javascript.jar
    sun.boot.library.path = /usr/java6_64/jre/lib/ppc64/default:/usr/java6_64/jre/lib/ppc64
    sun.io.unicode.encoding = UnicodeBig
    sun.java.command = weblogic.Server
    sun.java.launcher = SUN_STANDARD
    sun.jnu.encoding = ISO8859-1
    user.country = US
    user.dir = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1
    user.home = /home/orabi
    user.language = en
    user.name = orabi
    user.timezone = Asia/Riyadh
    vde.home = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/servers/bi_server1/data/ldap
    weblogic.MaxMessageSize = 50000000
    weblogic.Name = bi_server1
    weblogic.ProductionModeEnabled = true
    weblogic.ReverseDNSAllowed = false
    weblogic.alternateTypesDirectory = /app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.ossoiap_11.1.1,/app1/orabi/Oracle/Middleware/oracle_common/modules/oracle.oamprovider_11.1.1
    weblogic.classloader.preprocessor = weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.ext.dirs = /app1/orabi/Oracle/Middleware/patch_wls1035/profiles/default/sysext_manifest_classpath:/app1/orabi/Oracle/Middleware/patch_ocp360/profiles/default/sysext_manifest_classpath
    weblogic.home = /app1/orabi/Oracle/Middleware/wlserver_10.3/server
    weblogic.jdbc.remoteEnabled = false
    weblogic.management.clearTextCredentialAccessEnabled = ********
    weblogic.management.discover = false
    weblogic.management.server = http://10.11.34.111:7001
    weblogic.nodemanager.ServiceEnabled = true
    weblogic.security.SSL.enableJSSE = true
    weblogic.security.SSL.ignoreHostnameVerification = true
    weblogic.security.TrustKeyStore = DemoTrust
    weblogic.system.BootIdentityFile = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/servers/bi_server1/data/nodemanager/boot.properties
    wls.home = /app1/orabi/Oracle/Middleware/wlserver_10.3/server
    wlw.iterativeDev = false
    wlw.logErrorsToConsole = false
    wlw.testConsole = false
    xdo.server.config.dir = /app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/config/bipublisher
    >
    ####<Jun 24, 2013 12:41:53 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066913766> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "bea_wls_internal">
    ####<Jun 24, 2013 12:41:54 PM AST> <Notice> <WebLogicServer> <10.11.34.111> <bi_server1> <main> <<WLS Kernel>> <> <> <1372066914573> <BEA-000365> <Server state changed to STANDBY>
    ####<Jun 24, 2013 12:41:54 PM AST> <Notice> <WebLogicServer> <10.11.34.111> <bi_server1> <main> <<WLS Kernel>> <> <> <1372066914579> <BEA-000365> <Server state changed to STARTING>
    ####<Jun 24, 2013 12:41:54 PM AST> <Info> <SAFService> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066914605> <BEA-281003> <SAF Service has been initialized.>
    ####<Jun 24, 2013 12:41:54 PM AST> <Info> <SAFService> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066914612> <BEA-281002> <SAF Service has been started.>
    ####<Jun 24, 2013 12:41:54 PM AST> <Info> <WseeCore> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066914622> <BEA-220502> <The Wsee Service is starting>
    ####<Jun 24, 2013 12:41:54 PM AST> <Info> <Deployer> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066914743> <BEA-149209> <Resuming.>
    ####<Jun 24, 2013 12:41:54 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066914823> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "bea_wls9_async_response">
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916264> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "bea_wls_cluster_internal">
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916333> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "bea_wls_deployment_internal">
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916428> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "EPMSystemRegistry">
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916440> <BEA-001177> <Creating Connection Pool named EPMSystemRegistry, URL = jdbc:oracle:thin:@ebspocapp:1521/EBPRD, Properties = user=DEV_BIPLATFORM;oracle.net.CONNECT_TIMEOUT=10000;.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <Common> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916455> <BEA-000626> <Free resources in pool "EPMSystemRegistry" will be tested every "300" seconds.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916577> <BEA-001124> <Created Connection Pool named EPMSystemRegistry.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916591> <BEA-001174> <Creating Data Source named EPMSystemRegistry, JNDI Name = jdbc/EPMSystemRegistry.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916642> <BEA-001512> <Data Source EPMSystemRegistry has been successfully created.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916644> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "bip_datasource">
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916652> <BEA-001177> <Creating Connection Pool named bip_datasource, URL = jdbc:oracle:thin:@ebspocapp:1521/EBPRD, Properties = user=DEV_BIPLATFORM;oracle.net.CONNECT_TIMEOUT=10000;.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <Common> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916654> <BEA-000626> <Free resources in pool "bip_datasource" will be tested every "300" seconds.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916655> <BEA-001124> <Created Connection Pool named bip_datasource.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916656> <BEA-001174> <Creating Data Source named bip_datasource, JNDI Name = jdbc/bip_datasource.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916676> <BEA-001512> <Data Source bip_datasource has been successfully created.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916678> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "mds-owsm">
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916687> <BEA-001177> <Creating Connection Pool named mds-owsm, URL = jdbc:oracle:thin:@ebspocapp:1521/EBPRD, Properties = SendStreamAsBlob=true;user=DEV_MDS;oracle.net.CONNECT_TIMEOUT=10000;.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <Common> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916688> <BEA-000626> <Free resources in pool "mds-owsm" will be tested every "300" seconds.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916690> <BEA-001124> <Created Connection Pool named mds-owsm.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916691> <BEA-001174> <Creating Data Source named mds-owsm, JNDI Name = jdbc/mds/owsm.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916726> <BEA-001512> <Data Source mds-owsm has been successfully created.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916728> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "rtd_datasource">
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916735> <BEA-001177> <Creating Connection Pool named rtd_datasource, URL = jdbc:oracle:thin:@ebspocapp:1521/EBPRD, Properties = user=DEV_BIPLATFORM;oracle.net.CONNECT_TIMEOUT=10000;.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <Common> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916736> <BEA-000626> <Free resources in pool "rtd_datasource" will be tested every "300" seconds.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916738> <BEA-001124> <Created Connection Pool named rtd_datasource.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916740> <BEA-001174> <Creating Data Source named rtd_datasource, JNDI Name = SDDS.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <JDBC> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916757> <BEA-001512> <Data Source rtd_datasource has been successfully created.>
    ####<Jun 24, 2013 12:41:56 PM AST> <Info> <Store> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066916922> <BEA-280008> <Opening the persistent file store "BipJmsStore" for recovery: directory=/app1/orabi/Oracle/Middleware/user_projects/domains/bifoundation_domain1/BipJmsStore requestedWritePolicy="Direct-Write" fileLockingEnabled=true driver="wlfileio3".>
    ####<Jun 24, 2013 12:41:57 PM AST> <Info> <Store> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066917017> <BEA-280009> <The persistent file store "BipJmsStore" (68f997df-e4a0-4eb1-9497-8d994726f787) has been opened: blockSize=4,096 actualWritePolicy="Direct-Write(read-buffered)" explicitIOEnforced=false records=16.>
    ####<Jun 24, 2013 12:41:57 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066917027> <BEA-040321> <JMSServer "BipJmsServer" is resuming.>
    ####<Jun 24, 2013 12:41:57 PM AST> <Info> <Messaging> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066917092> <BEA-282003> <The messaging kernel BipJmsServer will use up to 536,870,912 bytes of memory before paging begins>
    ####<Jun 24, 2013 12:41:57 PM AST> <Info> <Messaging> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066917115> <BEA-282001> <The messaging kernel BipJmsServer is beginning recovery of its persistent state>
    ####<Jun 24, 2013 12:41:57 PM AST> <Info> <Messaging> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066917158> <BEA-282002> <The messaging kernel BipJmsServer has recovered 0 persistent messages>
    ####<Jun 24, 2013 12:41:57 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066917200> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "BipJmsResource">
    ####<Jun 24, 2013 12:41:57 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066917408> <BEA-040406> <Distributed destination "BipJmsResource!BIP.Burst.Job.Q" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921006> <BEA-040406> <Distributed destination "BipJmsResource!BIP.Burst.Report.Q" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921044> <BEA-040406> <Distributed destination "BipJmsResource!BIP.Delivery.Email.Q" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921063> <BEA-040406> <Distributed destination "BipJmsResource!BIP.Delivery.File.Q" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921078> <BEA-040406> <Distributed destination "BipJmsResource!BIP.Delivery.FTP.Q" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921091> <BEA-040406> <Distributed destination "BipJmsResource!BIP.Delivery.Print.Q" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921107> <BEA-040406> <Distributed destination "BipJmsResource!BIP.Delivery.WebDAV.Q" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921125> <BEA-040406> <Distributed destination "BipJmsResource!BIP.Delivery.Fax.Q" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921143> <BEA-040406> <Distributed destination "BipJmsResource!BIP.System.T" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <JMS> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921170> <BEA-040108> <User connection factory "BipJmsResource!BIP.JMS.CF" is started.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <WorkManager> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921185> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "Module-FMWDFW">
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <Diagnostics> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921232> <BEA-320114> <Initializing the Diagnostics Harvester.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <Diagnostics> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921241> <BEA-320117> <The Harvester is being disabled because there are no Harvestable types configured specified.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <Diagnostics> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921245> <BEA-320119> <The Harvester is now in a inactive state.>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <J2EE> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921715> <BEA-160151> <Registered library Extension-Name: UIX, Specification-Version: 11, Implementation-Version: 11.1.1.1.0 (WAR).>
    ####<Jun 24, 2013 12:42:01 PM AST> <Info> <J2EE> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066921841> <BEA-160151> <Registered library Extension-Name: adf.oracle.businesseditor, Specification-Version: 1, Implementation-Version: 11.1.1.2.0 (WAR).>
    ####<Jun 24, 2013 12:42:02 PM AST> <Info> <J2EE> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066922111> <BEA-160151> <Registered library Extension-Name: adf.oracle.domain, Specification-Version: 1, Implementation-Version: 11.1.1.2.0 (EAR).>
    ####<Jun 24, 2013 12:42:02 PM AST> <Info> <J2EE> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066922334> <BEA-160151> <Registered library Extension-Name: adf.oracle.domain.webapp, Specification-Version: 1, Implementation-Version: 11.1.1.2.0 (WAR).>
    ####<Jun 24, 2013 12:42:02 PM AST> <Info> <J2EE> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1372066922391> <BEA-160151> <Registered library Extension-Name: bithirdparty, Specification-Version: 11.1.1 (JAR).>
    ####<Jun 24, 2013 12:42:02 PM AST> <Info> <J2EE> <10.11.34.111> <bi_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <13

    Hi,
    I tried starting the server from the console as well as from command prompt. Here I am giving the command below.
    nohup ./startManagedWebLogic.sh bi_server1 t3://machineIP:portNo > bis1_startup.log &
    But each time I got the same exception.
    Korandla

  • Unable to start WC_Spaces managed server

    Iam unable to start WC_Spaces managed server form console/managed weblogic. below is the error.
    C:\WC\user_projects\domains\WebCenter_domain\bin>startManagedWebLogic.cmd WC_Spa
    ces http://localhost:8888
    'WLS_MEM_ARGS_64BIT' is not recognized as an internal or external command,
    operable program or batch file.
    'WLS_MEM_ARGS_32BIT' is not recognized as an internal or external command,
    operable program or batch file.
    Launcher.exe version: 11.1.1.4.1 (internal 7.3.2.0)
    JAVA Memory arguments: -Xms512m -Xmx1024m -XX:CompileThreshold=8000 -XX:PermSize
    =128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\WC\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C:\WC\patch_wl
    s1036\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\WC\patch_oep
    e180\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\WC\patch_ocp3
    71\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\WC\patch_adfr11
    11\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\WC\JDK160~1\lib
    \tools.jar;C:\WC\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\WC\WLSERV~1.3\server\l
    ib\weblogic.jar;C:\WC\modules\features\weblogic.server.modules_10.3.6.0.jar;C:\W
    C\WLSERV~1.3\server\lib\webservices.jar;C:\WC\modules\ORGAPA~1.1/lib/ant-all.jar
    ;C:\WC\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:/WC/ORACLE~2/ucm/idc/component
    s/NativeOsUtils/classes-NativeOsUtils.jar;C:\WC\ORACLE~1\soa\modules\commons-cli
    -1.1.jar;C:\WC\ORACLE~1\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:
    \WC\oracle_common\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-
    api.jar;C:\WC\Oracle_WC1\wcps-services-app\modules\oracle.wcps_11.1.1\wcps-conne
    ction-mbeans.jar;C:\WC\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\WC\WLSERV~1
    .3\common\derby\lib\derbyclient.jar;C:\WC\WLSERV~1.3\server\lib\xqrl.jar;C:\WC\O
    RACLE~2\ucm\idc\jlib\idcloader.jar;C:\WC\ORACLE~2\ucm\idc\components\NativeOsUti
    ls\classes-NativeOsUtils.jar;
    PATH=C:/WC/ORACLE~2/ucm/idc/components/EmailMetadata/lib;C:/WC/ORACLE~2/ucm/idc/
    components/NativeOsUtils/lib/win32/7.2.1.1;C:/WC/ORACLE~2/ucm/idc/components/Sit
    eStudio/lib;C:/WC/ORACLE~2/ucm/idc/components/SiteStudioPublisher/lib;C:\WC\patc
    h_wls1036\profiles\default\native;C:\WC\patch_oepe180\profiles\default\native;C:
    \WC\patch_ocp371\profiles\default\native;C:\WC\patch_adfr1111\profiles\default\n
    ative;C:\WC\WLSERV~1.3\server\native\win\32;C:\WC\WLSERV~1.3\server\bin;C:\WC\mo
    dules\ORGAPA~1.1\bin;C:\WC\JDK160~1\jre\bin;C:\WC\JDK160~1\bin;C:\app\skora\prod
    uct\11.2.0\dbhome_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;
    c:\Program Files\Microsoft Platform SDK\bin\win64\x86\AMD64;c:\Program Files\Mic
    rosoft Platform SDK\Bin\win64\AMD64;c:\Program Files\Microsoft Platform SDK\Bin;
    c:\Program Files\Microsoft Platform SDK\Bin\Winnt;C:\PERL\BIN;C:\Program Files (
    x86)\Intel\CPP\Compiler80\ia32e\bin;c:\program files (x86)\intel\cpp\idbe80\bin;
    c:\jdk150\bin;c:\jdk160\bin;C:\MKSNT;c:\Program Files\WinZip;c:\orautil;C:\WC\WL
    SERV~1.3\server\native\win\32\oci920_8
    * 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 *
    starting weblogic with Java version:
    java version "1.6.0_29"
    Java(TM) SE Runtime Environment (build 1.6.0_29-b11)
    Java HotSpot(TM) Client VM (build 20.4-b02, mixed mode)
    Starting WLS with line:
    C:\WC\JDK160~1\bin\java -client -Xms512m -Xmx1024m -XX:CompileThreshold=8000 -
    XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=WC_Spaces -Djava.security
    .policy=C:\WC\WLSERV~1.3\server\lib\weblogic.policy -Dweblogic.security.SSL.trus
    tedCAKeyStore="C:\WC\wlserver_10.3\server\lib\cacerts" -Xverify:none -da -Dpla
    tform.home=C:\WC\WLSERV~1.3 -Dwls.home=C:\WC\WLSERV~1.3\server -Dweblogic.home=C
    :\WC\WLSERV~1.3\server -Dcommon.components.home=C:\WC\ORACLE~1 -Djrf.version=11
    .1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logge
    r -Ddomain.home=C:\WC\USER_P~1\domains\WEBCEN~1 -Djrockit.optfile=C:\WC\ORACLE~1
    \modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=C:\WC\
    USER_P~1\domains\WEBCEN~1\config\FMWCON~1\servers\WC_Spaces -Doracle.domain.conf
    ig.dir=C:\WC\USER_P~1\domains\WEBCEN~1\config\FMWCON~1 -Digf.arisidbeans.carmll
    oc=C:\WC\USER_P~1\domains\WEBCEN~1\config\FMWCON~1\carml -Digf.arisidstack.home
    =C:\WC\USER_P~1\domains\WEBCEN~1\config\FMWCON~1\arisidprovider -Doracle.securit
    y.jps.config=C:\WC\USER_P~1\domains\WEBCEN~1\config\fmwconfig\jps-config.xml -Do
    racle.deployed.app.dir=C:\WC\USER_P~1\domains\WEBCEN~1\servers\WC_Spaces\tmp\_WL
    _user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\WC\ORAC
    LE~1\modules\oracle.ossoiap_11.1.1,C:\WC\ORACLE~1\modules\oracle.oamprovider_11.
    1.1,C:\WC\ORACLE~1\modules\oracle.jps_11.1.1 -Djava.protocol.handler.pkgs=oracle
    .mds.net.protocol -Dweblogic.jdbc.remoteEnabled=false -Djps.auth.debug=false -D
    tangosol.coherence.log=jdk -DjiveHome=C:\WC\USER_P~1\domains\WEBCEN~1\config\fmw
    config\servers\WC_Spaces\owc_discussions -DUSE_JAAS=false -Djps.policystore.hybr
    id.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true
    -Djps.auth=ACC -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.
    logging.impl.UserContextImpl -noverify -Doracle.webcenter.analytics.disable-nati
    ve-partitioning=false -Doracle.webcenter.tagging.scopeTags=false -Djava.awt.head
    less=true -Doracle.webcenter.tagging.scopeTags=false -XX:+UseParallelGC -XX:+Dis
    ableExplicitGC -Dportlet.oracle.home=C:\WC\oracle_common -Dwc.oracle.home=C:\WC\
    Oracle_WC1 -Ducm.oracle.home=C:\WC\ORACLE~2 -Dem.oracle.home=C:\WC\oracle_commo
    n -Djava.awt.headless=true -Dweblogic.management.discover=false -Dweblogic.manag
    ement.server=http://localhost:8888 -Dwlw.iterativeDev=false -Dwlw.testConsole=f
    alse -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=C:\WC\patch_wls1036\prof
    iles\default\sysext_manifest_classpath;C:\WC\patch_oepe180\profiles\default\syse
    xt_manifest_classpath;C:\WC\patch_ocp371\profiles\default\sysext_manifest_classp
    ath;C:\WC\patch_adfr1111\profiles\default\sysext_manifest_classpath weblogic.Se
    rver
    <Jun 7, 2013 1:48:13 AM CDT> <Info> <Security> <BEA-090905> <Disabling CryptoJ J
    CE Provider self-integrity check for better startup performance. To enable this
    check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Jun 7, 2013 1:48:13 AM CDT> <Info> <Security> <BEA-090906> <Changing the defaul
    t Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable
    this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Jun 7, 2013 1:48:13 AM CDT> <Notice> <WebLogicServer> <BEA-000395> <Following e
    xtensions directory contents added to the end of the classpath:
    C:\WC\user_projects\domains\WebCenter_domain\lib\mbeantypes\csp-id-asserter.jar;
    C:\WC\user_projects\domains\WebCenter_domain\lib\mbeantypes\jps-wls-trustprovide
    r.jar>
    <Jun 7, 2013 1:48:13 AM CDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebL
    ogic Server with Java HotSpot(TM) Client VM Version 20.4-b02 from Sun Microsyste
    ms Inc.>
    <Jun 7, 2013 1:48:14 AM CDT> <Info> <Security> <BEA-090065> <Getting boot identi
    ty from user.>
    Enter username to boot WebLogic server:weblogic
    Enter password to boot WebLogic server:
    <Jun 7, 2013 1:48:23 AM CDT> <Info> <Management> <BEA-141107> <Version: WebLogic
    Server 10.3.6.0 Tue Nov 15 08:52:36 PST 2011 1441050 >
    <Jun 7, 2013 1:48:25 AM CDT> <Emergency> <Management> <BEA-141151> <The admin se
    rver could not be reached at http://localhost:8888.>
    <Jun 7, 2013 1:48:25 AM CDT> <Info> <Configuration Management> <BEA-150018> <Thi
    s server is being started in managed server independence mode in the absence of
    the admin server.>
    <Jun 7, 2013 1:48:25 AM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to STARTING>
    <Jun 7, 2013 1:48:25 AM CDT> <Info> <WorkManager> <BEA-002900> <Initializing sel
    f-tuning thread pool>
    <Jun 7, 2013 1:48:25 AM CDT> <Notice> <LoggingService> <BEA-320400> <The log fil
    e C:\WC\user_projects\domains\WebCenter_domain\servers\WC_Spaces\logs\WC_Spaces.
    log will be rotated. Reopen the log file if tailing has stopped. This can happen
    on some platforms like Windows.>
    <Jun 7, 2013 1:48:25 AM CDT> <Notice> <LoggingService> <BEA-320401> <The log fil
    e has been rotated to C:\WC\user_projects\domains\WebCenter_domain\servers\WC_Sp
    aces\logs\WC_Spaces.log00014. Log messages will continue to be logged in C:\WC\u
    ser_projects\domains\WebCenter_domain\servers\WC_Spaces\logs\WC_Spaces.log.>
    <Jun 7, 2013 1:48:25 AM CDT> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\WC\user_projects\domains\WebCenter_domain\servers\WC_Spaces\logs\WC_
    Spaces.log is opened. All server side log events will be written to this file.>
    <Jun 7, 2013 1:48:30 AM CDT> <Notice> <Security> <BEA-090082> <Security initiali
    zing using security realm myrealm.>
    <Jun 7, 2013 1:48:30 AM CDT> <Error> <Configuration Management> <BEA-150000> <An
    error occurred while establishing a connection back to the adminstration server
    t3://127.0.0.1:8888 during startup. Since bootstrap succeeded check that t3://1
    27.0.0.1:8888 uniquely identifies the administration server.
    javax.naming.ServiceUnavailableException [Root exception is java.rmi.NoSuchObjec
    tException: The object identified by: '31' could not be found.  Either it was ha
    s not been exported or it has been collected by the distributed garbage collecto
    r.]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:70)
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:32)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLIni
    tialContextFactoryDelegate.java:792)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLI
    nitialContextFactoryDelegate.java:431)
    at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
    Truncated. see log file for complete stacktrace
    Caused By: java.rmi.NoSuchObjectException: The object identified by: '31' could
    not be found. Either it was has not been exported or it has been collected by t
    he distributed garbage collector.
    at weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:2
    51)
    at weblogic.rmi.extensions.server.ServerHelper.getLocalInitialReference(
    ServerHelper.java:455)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:131)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:124)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLI
    nitialContextFactoryDelegate.java:427)
    Truncated. see log file for complete stacktrace
    >
    <Jun 7, 2013 1:48:31 AM CDT> <Critical> <WebLogicServer> <BEA-000362> <Server fa
    iled. Reason:
    There are 1 nested errors:
    javax.naming.ServiceUnavailableException [Root exception is java.rmi.NoSuchObjec
    tException: The object identified by: '31' could not be found.  Either it was ha
    s not been exported or it has been collected by the distributed garbage collecto
    r.]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:70)
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:32)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLIni
    tialContextFactoryDelegate.java:792)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLI
    nitialContextFactoryDelegate.java:431)
    at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
    at weblogic.server.channels.RemoteChannelServiceImpl.registerInternal(Re
    moteChannelServiceImpl.java:173)
    at weblogic.server.channels.RemoteChannelServiceImpl.registerForever(Rem
    oteChannelServiceImpl.java:146)
    at weblogic.protocol.ConnectMonitorFactory.registerForever(ConnectMonito
    rFactory.java:88)
    at weblogic.management.provider.MSIService.registerForReconnectToAdminSe
    rver(MSIService.java:174)
    at weblogic.management.mbeanservers.compatibility.internal.Compatibility
    MBeanServerService.start(CompatibilityMBeanServerService.java:154)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: java.rmi.NoSuchObjectException: The object identified by: '31' could
    not be found. Either it was has not been exported or it has been collected by t
    he distributed garbage collector.
    at weblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:2
    51)
    at weblogic.rmi.extensions.server.ServerHelper.getLocalInitialReference(
    ServerHelper.java:455)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:131)
    at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:124)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLI
    nitialContextFactoryDelegate.java:427)
    ... 9 more
    >
    <Jun 7, 2013 1:48:31 AM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to FAILED>
    <Jun 7, 2013 1:48:31 AM CDT> <Error> <WebLogicServer> <BEA-000383> <A critical s
    ervice failed. The server will shut itself down>
    <Jun 7, 2013 1:48:31 AM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to FORCE_SHUTTING_DOWN>

    try starting managed server with startManagedWebLogic.cmd WC_Spaces without adding any parameter, I know this works in linux with startManagedWebLogic.sh WC_Spaces

  • Unable to start the weblogic server from windows environment

    Hi All,
    In our training system we have installed the SOA 11g and it worked fine till today afternoon. We have logged off the admin user in windows account and logged with our login credentials into windows after that we are unable to start the weblogic server.
    - Earlier in the DOS command prompt we used to navigate to the path where the startWeblogic.cmd file located and then we execute the command, after that we will able to see the status message as RUNNING MODE in the bottom of the screen, and when ever we deploy an project using Jdeveloper in the weblogic server window some messages will appended based on the action.
    - Only when we issue the command to shut down the weblogic server at that time only the command will be back to the path from where we started the server.
    - After login to windows with our account, when we tried to start the weblogic server, it didn't throw any error instead of that after running few lines in the command window the prompt was back in to the (D:\Middleware\.....\Domains\bin)path from where we ran the command to start the server.
    Please help us to resolve the issue asap.
    Thanks in advance.
    Regards,
    Sathyaseelan

    Hi,
    Make sure that the user which you are using to start weblogic server should be part of Administrator group or the group to which your admin user belongs to.
    Regards,
    Kishore

  • Error-Unable to start debugging.

    Visual Studio 2013 showing an error while trying to Run.
    ' Unable to start debugging.
    0x80040154
    How to solve this issue?
    Thanks,
    Arjun

    Hi Arjun,
    Based on the error message, it is hard for us to find the real reason for this issue directly.
    Could you get any other error messages if you build your project? Please check the detailed error or warning messages in Error list window or the output window.
    The reason why I suggest you run it with "start without debugging" is that if it still has certain issues without debugging, it means that it is not the debugging issue.
    Maybe you could view the Event log to get more information.
    Could you share us the detailed steps about how you debug your project?
    >> Unable to start debugging.0x80040154
    A report about the simliar error message:
    https://connect.microsoft.com/VisualStudio/feedback/details/786897/update-2-unable-to-debug-0x80040154
    I got the issue with the error "Unable to Start Debugging on the Web Server" before.
    Reference:
    https://msdn.microsoft.com/en-us/library/vstudio/dwesw3ee(v=vs.120).aspx
    https://technet.microsoft.com/zh-cn/subscriptions/dwesw3ee(v=vs.71).aspx
    If still no help, maybe you could share us a simple sample, so we could debug it in our side.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to Start Oracle Reports Server

    Hi,
    I downloaded patch 17 for Oracle Forms and Reports 6i. Now I am unable to start my Reports server.
    I am getting the following message:
    Windows could not start the Oracle Reports Server [Rep60_XXX] on Local Computer. For more information, review the System Event Log. If this is a non-Microsoft service, contact the service vendor, and refer to service-specific error code 186.
    Did anyone encounter this problem? Please let me know how to fix it or do I need to go back to Patch 13 as I am working on XP.
    Thanks in Advance.

    I think the Reports forum (Reports could be of help here.
    Frank

  • BTTray Error: Unable to start the Bluetooth Stack Service

    I have a HP TouchSmart 610-1190f operating system Windows 7 64-bit
    I installed Norton 360 back in January and ran the registry program which corrupted the Bluetooth.
    BTTray Error:  Unable to start the Bluetooth Stack Service.  I know that a system restore will take care of it, but when it happened I did not know that and I also did not know that I can't go back in time like Windows XP.  I've tried reinstalling the driver with no luck.  Is my only option a System Recovery?

    Product Name: HP H8-1160t
    Product Number: QC45AV#ABA
    I spent over 3 hours with HP chat and in typical fashion they could not solve the problem and requested I restore to original OS. I refused. HP Support needs to figure out a way to RESOLVE a customer problem without first jumping to "please restore your system".
    After a second call to HP, they sent me a replacement Wireless Card, and much to my surprise the Hardware Tech showed up as scheduled on a SATURDAY no less; even after being told by HP that no weekend calls are made.
    Anyway, the very nice service tech installed the new part and ...drum roll....wait for it...Voila!!!!
    NO FIX!!  As expected.  Why Did HP Software Support think the new card would fix the issue?? HP Software Support is virtually USELESS, actually, lets just say without any equivocation at all: HP SOFTWARE Support is USELESS; HARDWARE SUPPORT IS FANTASTIC...
    OK. I FIXED the problem myself:
    I downloaded the Broadcom fix:
    sp56715.exe
    Available from:
    ftp://ftp.hp.com/pub/softpaq/sp56501-57000/ sp56715.exe   (eliminate the spaces...HP forum would not let me load this VALID site.
    I am NOT POSITIVE THAT DOWNLOAD IS FOR YOUR VERSION, BE CERTAIN TO CHECK SYSTEM REQUIREMENTS.
    Rebooted, Bluetooth service started up, NO BTTray Stack Error, discovered my device (old LG Cell Phone), connected, and I was able to access the MY Music, Pictures, Video files finally.
    Trust me, HP Software Support is a waste of time.

  • An internal error occurred during: "Starting BEA WebLogic Server v8.1 at lo

    Hi,
    On "Start the server in debug mode"
    file .log
    eclipse.buildId=I20090611-1540
    java.version=1.6.0_13
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=es_AR
    Command-line arguments: -os win32 -ws win32 -arch x86
    !ENTRY org.eclipse.core.jobs 4 2 2009-08-05 12:29:57.060
    !MESSAGE An internal error occurred during: "Starting BEA WebLogic Server v8.1 at localhost".
    !STACK 0
    java.lang.NullPointerException
         at oracle.eclipse.tools.weblogic.legacy.GenericWeblogicServerBehaviour.findWorkshopJspDebuggerLaunchConfigurationDelegate(GenericWeblogicServerBehaviour.java:477)
         at oracle.eclipse.tools.weblogic.legacy.GenericWeblogicServerBehaviour.setupLaunch(GenericWeblogicServerBehaviour.java:226)
         at org.eclipse.jst.server.generic.core.internal.ExternalLaunchConfigurationDelegate.launch(ExternalLaunchConfigurationDelegate.java:101)
         at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:853)
         at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:703)
         at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:696)
         at org.eclipse.wst.server.core.internal.Server.startImpl2(Server.java:3057)
         at org.eclipse.wst.server.core.internal.Server.startImpl(Server.java:3007)
         at org.eclipse.wst.server.core.internal.Server$StartJob.run(Server.java:294)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    OS= Windows XP SP2
    Eclipse Java Version= 1.6.0_13
    Workspace Java Version= 1.4.2_08
    BEA Weblogic= 8.1.6
    Eclipse= 3.5.0
    WTP= 3.1.0
    Project Facets= Dynamic Web Module 2.3
    Java= 1.4
    Tanks and sorry my English.
    Gustavo

    I am also experiencing the same NullPointerException when launching Weblogic 8.1 in debug mode within Eclipse 3.5. Is there any anticipated fix for this issue, or a bugtraq record that we can follow to know when the issue is addressed? I do not expect JSP debugging to work (as it wasn't available with Weblogic 8.1 under Eclipse 3.4 either) - BUT right now I cannot debug ANY server-side code within Weblogic 8.1 in Eclipse 3.5 as the server cannot start in debug mode at all.
    Many thanks.

  • Outboung Campaing: Error Unable to communicate with Enterprise Server. outbound Option not available

    Hi everyone,
    I'm running UCCX 8.01 + CUCM 7.1+ Cisco 7942 just for learning purpose. After creating the Outbound Campaign and imported the Contact List the call is received by the agent (call is state is received as Offering) but after press the Accept, Reject or any othe action button is received the error:
    Error Unable to communicate with Enterprise Server. outbound Option not available (attached to post).
    What does this mean?
    Regards
    Please rate all useful posts
    Favor calificar todos las respuestas útiles.
    LinkedIn Profile: do.linkedin.com/in/leosalcie
    MDGDP, CCNA, CCNA Voice, CCNP Voice Certified       

    Any idea?
    Please rate all useful posts
    Favor calificar todos las respuestas útiles.
    LinkedIn Profile: do.linkedin.com/in/leosalcie
    MDGDP, CCNA, CCNA Voice, CCNP Voice Certified

  • Unable to start Oracle BI server and Presentation Service

    I am unable to start the Bi Server and presentation service . I start stop, options in service window is coming disabled. Please can any body help on this?

    Hi,
    Please check if you have started the Oracle BI Java host service.
    Check if the OC4j is started.
    Check the event viewer logs. Also check on what account the service is starting.
    Hope this helps ...
    Thanks,
    Anita

  • Can't open Lightroom.  Keep getting application error - unable to start correctly (0xc000007b).

    Keep getting application error - unable to start correctly (0xc000007b).  Have uninstalled and reinstalled twice with no change.

    ...07b Problems http://forums.adobe.com/thread/1355374?tstart=0

  • I get this message when i start the computer :" error : unable to start the bluetooth stack service"

    i get this message when i start the computer :" error : unable to start the bluetooth stack service"

    If a power cycle of the TC works then the issue is simply Lion.. and there is as yet no fix.. and may never be..
    Apple do not seem to acknowledge the issue but plenty of people have it.. It doesn't happen with SL.. one very good reason to not bother with Lion.. Maybe ML will fix it.. without Apple having to ever admit an issue.
    In the meantime, if possible downgrade TC to 7.5.2 .. it has less issues than 7.6 or later.
    Reset the TC and change all names, TC and wireless names, to short, no spaces, no special characters.
    If it is the main router, set the dhcp lease to a short time.. 10min I recommend.
    The above will probably not fix the issue.. but it might go a bit longer before a reboot is needed.. going back to SL would fix it.

  • Weblogic Error(unable to start Admin Server)

    "Error Message"
    In the linux terminal I tried to start the Weblogic Adminserver. While starting the weblogic server it is showing the following error.
    Java HotSpot(TM) Client VM (build 17.0-b17, mixed mode)
    Starting WLS with line:
    /mwhome/BEA/Middleware/jdk160_21/bin/java -client -Xms768m -Xmx1536m -XX:PermSize=512m -XX:MaxPermSize=1024m -Dweblogic.Name=AdminServer -Djava.security.policy=/mwhome/BEA/Middleware/wlserver_10.3/server/lib/weblogic.policy -Xverify:none -da -Dplatform.home=/mwhome/BEA/Middleware/wlserver_10.3 -Dwls.home=/mwhome/BEA/Middleware/wlserver_10.3/server -Dweblogic.home=/mwhome/BEA/Middleware/wlserver_10.3/server -Dcommon.components.home=/mwhome/BEA/Middleware/oracle_common -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=/mwhome/BEA/Middleware/user_projects/domains/soa_domain -Djrockit.optfile=/mwhome/BEA/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrocket_optfile.txt -Doracle.server.config.dir=/mwhome/BEA/Middleware/user_projects/domains/soa_domain/config/fmwconfig/servers/AdminServer -Doracle.domain.config.dir=/mwhome/BEA/Middleware/user_projects/domains/soa_domain/config/fmwconfig -Digf.arisidbeans.carmlloc=/mwhome/BEA/Middleware/user_projects/domains/soa_domain/config/fmwconfig/carml -Digf.arisidstack.home=/mwhome/BEA/Middleware/user_projects/domains/soa_domain/config/fmwconfig/arisidprovider -Doracle.security.jps.config=/mwhome/BEA/Middleware/user_projects/domains/soa_domain/config/fmwconfig/jps-config.xml -Doracle.deployed.app.dir=/mwhome/BEA/Middleware/user_projects/domains/soa_domain/servers/AdminServer/tmp/_WL_user -Doracle.deployed.app.ext=/- -Dweblogic.alternateTypesDirectory=/mwhome/BEA/Middleware/oracle_common/modules/oracle.ossoiap_11.1.1,/mwhome/BEA/Middleware/oracle_common/modules/oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol|oracle.fabric.common.classloaderurl.handler|oracle.fabric.common.uddiurl.handler|oracle.bpm.io.fs.protocol -Dweblogic.jdbc.remoteEnabled=false -da:org.apache.xmlbeans... -Dsoa.archives.dir=/mwhome/BEA/Middleware/Oracle_SOA1/soa -Dsoa.oracle.home=/mwhome/BEA/Middleware/Oracle_SOA1 -Dsoa.instance.home=/mwhome/BEA/Middleware/user_projects/domains/soa_domain -Dtangosol.coherence.clusteraddress=227.7.7.9 -Dtangosol.coherence.clusterport=9778 -Dtangosol.coherence.log=jdk -Djavax.xml.soap.MessageFactory=oracle.j2ee.ws.saaj.soap.MessageFactoryImpl -Dweblogic.transaction.blocking.commit=true -Dweblogic.transaction.blocking.rollback=true -Djavax.net.ssl.trustStore=/mwhome/BEA/Middleware/wlserver_10.3/server/lib/DemoTrust.jks -Dem.oracle.home=/mwhome/BEA/Middleware/oracle_common -Djava.awt.headless=true -Dums.oracle.home=/mwhome/BEA/Middleware/Oracle_SOA1 -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/mwhome/BEA/Middleware/patch_wls1034/profiles/default/sysext_manifest_classpath:/mwhome/BEA/Middleware/patch_ocp360/profiles/default/sysext_manifest_classpath weblogic.Server
    <Sep 8, 2011 5:41:07 PM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Sep 8, 2011 5:41:07 PM IST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Sep 8, 2011 5:41:07 PM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 17.0-b17 from Sun Microsystems Inc.>
    <Sep 8, 2011 5:41:07 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.4.0 Fri Dec 17 20:47:33 PST 2010 1384255 >
    <Sep 8, 2011 5:41:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Sep 8, 2011 5:41:09 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Sep 8, 2011 5:41:09 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file /mwhome/BEA/Middleware/user_projects/domains/soa_domain/servers/AdminServer/logs/AdminServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Sep 8, 2011 5:41:09 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /mwhome/BEA/Middleware/user_projects/domains/soa_domain/servers/AdminServer/logs/AdminServer.log00033. Log messages will continue to be logged in /mwhome/BEA/Middleware/user_projects/domains/soa_domain/servers/AdminServer/logs/AdminServer.log.>
    <Sep 8, 2011 5:41:09 PM IST> <Notice> <Log Management> <BEA-170019> <The server log file /mwhome/BEA/Middleware/user_projects/domains/soa_domain/servers/AdminServer/logs/AdminServer.log is opened. All server side log events will be written to this file.>
    Sep 8, 2011 5:41:10 PM oracle.security.jps.internal.credstore.ssp.CsfWalletManager openWallet
    WARNING: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
    oracle.security.jps.service.credstore.CredStoreException: JPS-01050: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
    at oracle.security.jps.internal.credstore.ssp.CsfWalletManager.openWallet(CsfWalletManager.java:177)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.doInit(SspCredentialStore.java:217)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.<init>(SspCredentialStore.java:139)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.<init>(SspCredentialStore.java:126)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStoreProvider.getInstance(SspCredentialStoreProvider.java:114)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStoreProvider.getInstance(SspCredentialStoreProvider.java:52)
    at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139)
    at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170)
    at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191)
    at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:132)
    at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:127)
    at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:798)
    at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:792)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
    at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    <Sep 8, 2011 5:41:10 PM IST> <Error> <Security> <BEA-090892> <The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider>
    <Sep 8, 2011 5:41:10 PM IST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
    weblogic.security.SecurityInitializationException: The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1398)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.JpsRuntimeException: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:291)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
    at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
    at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:847)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
    at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    Truncated. see log file for complete stacktrace
    Caused By: java.security.PrivilegedActionException: oracle.security.jps.JpsException: [PolicyUtil] Unable to obtain default JPS Context!
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
    at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.JpsException: [PolicyUtil] Unable to obtain default JPS Context!
    at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:808)
    at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:792)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.service.credstore.CredStoreException: JPS-01050: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
    at oracle.security.jps.internal.credstore.ssp.CsfWalletManager.openWallet(CsfWalletManager.java:177)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.doInit(SspCredentialStore.java:217)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.<init>(SspCredentialStore.java:139)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.<init>(SspCredentialStore.java:126)
    at oracle.security.jps.internal.credstore.ssp.SspCredentialStoreProvider.getInstance(SspCredentialStoreProvider.java:114)
    Truncated. see log file for complete stacktrace
    >
    <Sep 8, 2011 5:41:10 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Sep 8, 2011 5:41:10 PM IST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Sep 8, 2011 5:41:10 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    "Hope I'll get a solution soon"

    You probably run the WebLogic once as the super user and are now trying to run it as another.
    you could issue a chown or chmod -R 777
    Also a remark that provided here: Opening of wallet based credential store failed. Reason java.io.IOException
    "It appears the my config/fmwconfig/cwallet.sso file was corrupted, possibly by a previous WebLogic crash. The cwallet.sso file in my fmwconfig directory was only 77bytes, but it should have been larger. I was able to find a previous version of the cwallet.sso file in the /tmp/cred* directories, and restored the file. That allowed me to start up WebLogic, but I had lost some data in cwallet.sso that I needed to re-enter in FMW Control."

Maybe you are looking for

  • Firefox starts but won't open

    downloaded beta v 4, worked for a while then stopped. When i start firefox, it starts in task manager with some cpu, then cpu goes to zero. Firefox never actually opens. Can not open profile manager either. Tried uninstalling, reinstalling, uninstall

  • No more key photos in "Photos" view?

    After upgrading, I can no longer see key photos in "Photos" view. Is this a setting that I can change, or did iPhoto '11 drop this feature?

  • Performance and Stability Problem with PE9

    I just upgraded my computer to a Core i5 with 8G of memory and everything is running much faster.  But my NEW PE9 just run very slow.  Some of the simple tasks take 10-30 second to complete.  Even Windows 7 will often come out to ask if I want to wai

  • Ideas For n95

    hey nokia if you are reading please consider these tips for the N95 (i have every N series phone except N92....so you would be losing a good customer and my girlfriend also has every one except the N70 and N92) Camera- unseen picture quality in a mob

  • Photoshop cs6, how to apply an effect to just the layer you are working on, and not the ones underneath please

    I was shown how to do the above earlier this year but cannot find my written reference to it, nor can i find the answer on adobe help site.  can someone answer this for me.  I know it a couple of quick keys, but don't know which ones, and something t