Start a new Coherence cache server

Hi experts,
I have an application configured with oracle coherence running on the weblogic server. Can I start a new Coherence cache server from a command prompt so that, this newly created cache server joins the existing cluster already running on the weblogic server. Can you please guide me through this or point to the relevant documentation.
Thanks for your time.
Cheers,

You just need to run...
java <parameters> -cp <your class path> DefaultCacheServerwhere...
<parameters> is set to the same set of -D paramters you have given the application inside WebLogic.
<your class path> is all the jar files in your application, including coherence.jar (but you don't need any ear or web app stuff obviously)
Presumably you have configured the system properties for your application in WebLogic to set the multicast address (-Dtangosol.coherence.clusteraddress
and -Dtangosol.coherence.clusterport), cache config (-Dtangosol.coherence.cacheconfig) etc... If you have not then you really should! You basically run DefaultCacheServer with the same parameters.
When I have used Weblogic and Coherence in the past the usual configurationis to run a number of storage enabled cache server nodes (which is what you are asking about) and then run the WebLogic nodes as storage diabled cluster members. This is much more efficient as it lets the storage enabled node just concentrate on storing data nad the WebLogic node just concentrate on you application.
JK

Similar Messages

  • Start a JPA persistent cache server but it is hanging

    I create a JPA persistence project and online EJB object HR.EMPLOYEES according to the guide of Chapter 6 of
    Tutorial for Oracle Coherence (3.5). But when I tried to start a JPA persistent cache server, it is hanging and report
    the following message:
    I don't know what is the problem.
    C:\coherence\bin>jpa-cache-server.cmd
    java version "1.6.0_16"
    Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
    Java HotSpot(TM) Server VM (build 14.2-b01, mixed mode)
    2009-11-04 15:11:37.767/0.532 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a):
    Loaded operational configuration from resource "jar:file:/C:/coherence/lib/coherence.jar!/tangosol-
    coherence.xml"
    2009-11-04 15:11:37.767/0.532 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a):
    Loaded operational overrides from resource "jar:file:/C:/coherence/lib/coherence.jar!/tangosol-
    coherence-override-dev.xml"
    2009-11-04 15:11:37.782/0.547 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a):
    Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-04 15:11:37.782/0.547 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a):
    Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.5.2/463
    Grid Edition: Development mode
    Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
    2009-11-04 15:11:38.157/0.922 Oracle Coherence GE 3.5.2/463 <Info> (thread=main, member=n/a):
    Loaded cache configuration from "file:/C:/home/oracle/coherence/JPA/jpa-cache-config.xml"
    2009-11-04 15:11:38.188/0.953 Oracle Coherence GE 3.5.2/463 <Info> (thread=main, member=n/a):
    Started DefaultCacheServer
    SafeCluster: nullThe contents of jpa-cache-server.cmd file is shown here under:
    setlocal
    :config
    @rem specify the Coherence installation directory
    set coherence_home=C:\coherence
    @rem specify the JVM heap size
    set memory=512m
    :start
    if not exist "%coherence_home%\lib\coherence.jar" goto instructions
    if "%java_home%"=="" (set java_exec=java) else (set java_exec=%java_home%\bin\java)
    :launch
    set java_opts="-Xms%memory% -Xmx%memory% -Dtangosol.coherence.cacheconfig=
    C:\home\oracle\coherence\JPA\jpa-cache-config.xml"
    "%java_exec%" -server -showversion "%java_opts%" -cp "%coherence_home%\lib\coherence.jar;
    C:\home\oracle\coherence\JPA\classes;C:\coherence\lib\coherence-jpa.jar;C:\Oracle\Middleware\
    wlserver_10.3\server\lib\ojdbc6.jar;C:\Oracle\Middleware\modules\javax.persistence_1.0.0.0_1-0-2.jar;
    D:\toplink_11\jlib\eclipselink.jar" com.tangosol.net.DefaultCacheServer %1
    goto exit
    :instructions
    echo Usage:
    echo   ^<coherence_home^>\bin\cache-server.cmd
    goto exit
    :exit
    endlocal
    @echo onEdited by: junez on 04-Nov-2009 12:31

    Now report the following message:
    C:\coherence\bin>jpa-cache-server.cmd
    java version "1.6.0_16"
    Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
    Java HotSpot(TM) Server VM (build 14.2-b01, mixed mode)
    2009-11-04 16:03:54.320/0.563 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational configurat
    ion from resource "jar:file:/C:/coherence/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-04 16:03:54.320/0.563 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational overrides
    from resource "jar:file:/C:/coherence/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-04 16:03:54.335/0.578 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration override
    "/tangosol-coherence-override.xml" is not specified
    2009-11-04 16:03:54.335/0.578 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration override
    "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.5.2/463
    Grid Edition: Development mode
    Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
    Exception in thread "main" (Wrapped: Failed to load the factory) java.lang.reflect.InvocationTargetException
            at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
            at com.tangosol.net.DefaultCacheFactoryBuilder.getDefaultFactory(DefaultCacheFactoryBuilder.java:419)
            at com.tangosol.net.DefaultCacheFactoryBuilder.getSingletonFactory(DefaultCacheFactoryBuilder.java:113)
            at com.tangosol.net.DefaultCacheFactoryBuilder.getFactory(DefaultCacheFactoryBuilder.java:173)
            at com.tangosol.net.DefaultCacheFactoryBuilder.getConfigurableCacheFactory(DefaultCacheFactoryBuilder.java:149)
            at com.tangosol.net.CacheFactory.getConfigurableCacheFactory(CacheFactory.java:657)
            at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:49)
    Caused by: java.lang.reflect.InvocationTargetException
            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 com.tangosol.util.ClassHelper.newInstance(ClassHelper.java:662)
            at com.tangosol.net.DefaultCacheFactoryBuilder.getDefaultFactory(DefaultCacheFactoryBuilder.java:381)
            ... 5 more
    Caused by: (Wrapped: Failed to load configuration: C:\home\oracle\coherence\JPA\jpa-cache-config.xml) (Wrapped) java.io.
    IOException: Exception occurred during parsing: looking for id=9, found id=3((0,0,0) Character Data Literal xml version=
    "1.0" encoding="windows-1252" ?>
            at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
            at com.tangosol.net.DefaultConfigurableCacheFactory.loadConfig(DefaultConfigurableCacheFactory.java:403)
            at com.tangosol.net.DefaultConfigurableCacheFactory.loadConfig(DefaultConfigurableCacheFactory.java:372)
            at com.tangosol.net.DefaultConfigurableCacheFactory.<init>(DefaultConfigurableCacheFactory.java:141)
            ... 11 more
    Caused by: (Wrapped) java.io.IOException: Exception occurred during parsing: looking for id=9, found id=3((0,0,0) Charac
    ter Data Literal xml version="1.0" encoding="windows-1252" ?>
            at com.tangosol.run.xml.XmlHelper.loadXml(XmlHelper.java:137)
            at com.tangosol.run.xml.XmlHelper.loadXml(XmlHelper.java:152)
            at com.tangosol.net.DefaultConfigurableCacheFactory.loadConfig(DefaultConfigurableCacheFactory.java:395)
            ... 13 more
    Caused by: java.io.IOException: Exception occurred during parsing: looking for id=9, found id=3((0,0,0) Character Data L
    iteral xml version="1.0" encoding="windows-1252" ?>
            at com.tangosol.run.xml.SimpleParser.parseXml(SimpleParser.java:134)
            at com.tangosol.run.xml.SimpleParser.parseXml(SimpleParser.java:71)
            at com.tangosol.run.xml.SimpleParser.parseXml(SimpleParser.java:99)
            at com.tangosol.run.xml.XmlHelper.loadXml(XmlHelper.java:133)
            ... 15 more

  • Architectural Choice for accessing Coherence Cache Server

    I am a newbie and have a coherence use-case question.
    When accessing an independent coherence cache server from application code such as an EJB deployed in WLS, architecturally does one write up an entity which is then used as a sole point of
    access to the resource (coherence cache server) for querying, adding, modifying entries or are the accesses to the coherence cache server split and spread among the application code.
    For example,
    1. I write an EJB (EJB 1) which recieves the request from other EJB's (EJB 2, EJB 3), EJB 1 runs requests from EJB2 and EJB 3 on the Coherence Cache Server and acts as the sole point of
    contact to the resource.
    2. EJB 2 and EJB 3 both run requests against the coherence cache server. No fixed entity in architecture repsonsible for interaction with Coherence Cache Server.
    Which is more common ?

    stevephe wrote:
    Yes you could treat Coherence as a "pluggable" resource, just like a database. But that, just like in the case of a database, wouldn't boil it down to a single entity/interface. You'd treat Coherence as a "integration tier" resource that you'd "plumb in" just like you would a database, thus shielding your application's "domain" objects from integration-level concerns. That's how I've tiered our application, although we aren't inside a container like Weblogic/WebSphere/etc. The domain objects specify their persistence requirements via a multiplicity of interfaces; those interfaces have a number of implementations in the integration tier, one set of which just happens to be a Coherence set. You can use a "registry" approach to pick up the appropriate implementations (we use Spring injection.) Have a look at the Coherence book from Apress for more details.Apress? You mean Packt, don't you?
    Best regards,
    Robert

  • Can create new cache with new cache config xml to existing cache server?

    Hi,
    I have a question regarding coherence cache.
    currently there is coherence cache server running with its own cache config file.
    Can I create another cache with new cache config file?
    If so, do I need add my own cache config file and pof file to the server?
    so during cache server start up, it can load cache config and pof config file?
    Thanks for the help.
    Regards
    Julia

    Yes, when you want to load your own cache configuration you can use something like
    export CLASSPATH=coherence.jar
    java -Xms512m -Xmx512m -Dtangosol.coherence.cacheconfig=my-cache-config.xml com.tangosol.net.DefaultCacheServerby using the system parameter tangosol.coherence.cacheconfig you can add your own cache configuration. Note that
    the POF configuration is loaded when you are referring to it in your cache configuration.

  • Verify whether the session data is kept in the Coherence caches

    I have successfully combined the MapViewer application with WebLogic and Oracle Coherence*Web.
    How to verify whether the session data of MapViewer application is kept in the Coherence caches or not?
    All out put show that both of MapViewer and WebLogic server as well as Coherence are running well.
    All the following steps are right?
    The procedure is as the following:
    1. Create a WebLogic domain: Map_domain.
    2. Start the WebLogic domain Map_domain by running startWebLogic.sh script.
    3. Install Coherence.jar as a library on WebLogic.
    4. Copy the coherence.jar in the WAR's WEB-INF/lib directory.
    5. Create a reference to the shared library by modifying the weblogic.xml in web applications WEB-INF directory
    and add the following contents:
    <weblogic-web-app>
         <library-ref>
              <library-name>coherence-web-spi</library-name>
              <specification-version>1.0.0.0</specification-version>
              <implementation-version>1.0.0.0</implementation-version>
              <exact-match>false</exact-match>
         </library-ref>
    <weblogic-web-app>6. Install Coherence-web-spi.war as a WebLogic library.
    7. Install the MapViewer as a WebLogic application.
    8. Start a Coherence cache server using the cmd file web-cache-server.cmd and then start MapViewer application.
    The content of web-cache-server.cmd file:
    @echo off
    @rem This will start a cache server
    setlocal
    :config
    @rem specify the Coherence installation directory
    set coherence_home=F:\coherence
    @rem specify the JVM heap size
    set memory=256m
    :start
    if not exist "%coherence_home%\lib\coherence.jar" goto instructions
    if "%java_home%"=="" (set java_exec=java) else (set java_exec=%java_home%\bin\java)
    :launch
    set java_opts="-Xms%memory% -Xmx%memory%"
    "%java_exec%" -server -showversion "%java_opts%" -cp %coherence_home%\lib\coherence.jar;
    %coherence_home%\lib\coherence-web-spi.war
    -Dtangosol.coherence.management.remote=true
    -Dtangosol.coherence.cacheconfig=WEB-INF/classes/session-cache-config.xml
    -Dtangosol.coherence.session.localstorage=true
    com.tangosol.net.DefaultCacheServer %1
    goto exit
    :instructions
    echo Usage:
    echo   ^<coherence_home^>\bin\cache-server.cmd
    goto exit
    :exit
    endlocal
    @echo onEdited by: jetq on Jan 13, 2010 9:32 AM

    Any opinions are welcome.

  • Cache server lifecycle

    Going through the documentation it is a bit unclear to me if there is a way to make the coherence cache-server run within the weblogic (10.3.5) java process.
    The examples and the documentation I have gone through seems to indicate that coherence cache-server has to live as an independent java process.
    Perhaps I am wrong!

    807103 wrote:
    Thanks for the awesome reply.
    I have one follow up question for you, how does one tie up the lifecycle of the Coherence Cache with the Weblogic Server.
    So basically, in other words how do i configure the coherence cache in a manner such that it comes up automatically when my WLS domain starts up and dies when
    my WLS domain is shutdown.
    Thanks.
    AAIf you run storage disabled, then you don't need to start Coherence up automatically.
    As for shutdown, if you don't have periodic activities by Coherence (i.e. you don't use its WorkManager) then you don't need anything special at shutdown, again if running storage-disabled.
    There also were a few integration classes which implements Weblogic's or the JSDK's lifecycle callbacks in earlier versions.
    There are also some guides for running within an app server or weblogic specifically (scoping, and so on). I expect those would contain some info in this area as well.
    Best regards,
    Robert

  • Verify if the sessision data of MapViewer app is stored in Coherence caches

    I have successfully combined the MapViewer application with WebLogic and Oracle Coherence*Web.
    How to verify whether the session data of MapViewer application is kept in the Coherence caches or not?
    All out put show that both of MapViewer and WebLogic server as well as Coherence are running well.
    All the following steps are right?
    The procedure is as the following:
    1. Create a WebLogic domain: Map_domain.
    2. Start the WebLogic domain Map_domain by running startWebLogic.sh script.
    3. Install Coherence.jar as a library on WebLogic.
    4. Copy the coherence.jar in the WAR's WEB-INF/lib directory.
    5. Create a reference to the shared library by modifying the weblogic.xml in web applications WEB-INF directory
    and add the following contents:
    <weblogic-web-app>
         <library-ref>
              <library-name>coherence-web-spi</library-name>
              <specification-version>1.0.0.0</specification-version>
              <implementation-version>1.0.0.0</implementation-version>
              <exact-match>false</exact-match>
         </library-ref>
    <weblogic-web-app>6. Install Coherence-web-spi.war as a WebLogic library.
    7. Install the MapViewer as a WebLogic application.
    8. Start a Coherence cache server using the cmd file web-cache-server.cmd and then start MapViewer application.
    The content of web-cache-server.cmd file:
    @echo off
    @rem This will start a cache server
    setlocal
    :config
    @rem specify the Coherence installation directory
    set coherence_home=F:\coherence
    @rem specify the JVM heap size
    set memory=256m
    :start
    if not exist "%coherence_home%\lib\coherence.jar" goto instructions
    if "%java_home%"=="" (set java_exec=java) else (set java_exec=%java_home%\bin\java)
    :launch
    set java_opts="-Xms%memory% -Xmx%memory%"
    "%java_exec%" -server -showversion "%java_opts%" -cp %coherence_home%\lib\coherence.jar;
    %coherence_home%\lib\coherence-web-spi.war
    -Dtangosol.coherence.management.remote=true
    -Dtangosol.coherence.cacheconfig=WEB-INF/classes/session-cache-config.xml
    -Dtangosol.coherence.session.localstorage=true
    com.tangosol.net.DefaultCacheServer %1
    goto exit
    :instructions
    echo Usage:
    echo   ^<coherence_home^>\bin\cache-server.cmd
    goto exit
    :exit
    endlocal
    @echo onEdited by: jetq on Jan 12, 2010 9:02 PM

    Any opinions are welcome.

  • Coherence Cache

    Iam new to coherence, can anyone tell me how to connect coherence cache server at domain level.

    Hi ,
    Go to WLS ---Environment Coherence Servers New Coherence Server to add coherence cache server at domain level !!
    Cheers ,
    Abhinav

  • New cache server

    Hi there,
    I am admin of an new ISP.Our service ADSL2+ over pppoe.Regarding to ISP legals,We have to track and monitor  the users that who surf the witch Website.For example IP x.x.x.x by MAC y.y.y.y watch the www.xxx.com at 3:00 am.
    Would you recommend me what to use?
    I heard that I have to use Cache server in my network.
    Please sending me an advice.
    Thanks

    You just need to run...
    java <parameters> -cp <your class path> DefaultCacheServerwhere...
    <parameters> is set to the same set of -D paramters you have given the application inside WebLogic.
    <your class path> is all the jar files in your application, including coherence.jar (but you don't need any ear or web app stuff obviously)
    Presumably you have configured the system properties for your application in WebLogic to set the multicast address (-Dtangosol.coherence.clusteraddress
    and -Dtangosol.coherence.clusterport), cache config (-Dtangosol.coherence.cacheconfig) etc... If you have not then you really should! You basically run DefaultCacheServer with the same parameters.
    When I have used Weblogic and Coherence in the past the usual configurationis to run a number of storage enabled cache server nodes (which is what you are asking about) and then run the WebLogic nodes as storage diabled cluster members. This is much more efficient as it lets the storage enabled node just concentrate on storing data nad the WebLogic node just concentrate on you application.
    JK

  • TCP Extend Server - Failed to start Service - Oracle Coherence GE 3.5.2/463

    Hello,
    We are about to go to production I see Failed to start Service in TCP Extend Server (Storage disable node).
    Regards
    /AG
    My Configuration look like the following
    <?xml version="1.0" encoding="windows-1252" ?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <caching-scheme-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>distributedCache</scheme-name>
    <service-name>distributedCache</service-name>
    <backing-map-scheme>
    <local-scheme>
    <eviction-policy>HYBRID</eviction-policy>
    <high-units>500</high-units>
    <low-units>375</low-units>
    <unit-calculator>BINARY</unit-calculator>
    <unit-factor>1048576</unit-factor>
    </local-scheme>
    </backing-map-scheme>
    </distributed-scheme>
    <proxy-scheme>
    <service-name>ExtendTcpProxyService</service-name>
    <thread-count>15</thread-count>
    <acceptor-config>
    <tcp-acceptor>
    <local-address>
    <address system-property="proxy.listen.address">....</address>
    <port system-property="proxy.listen.port">....</port>
    </local-address>
    </tcp-acceptor>
    </acceptor-config>
    <autostart>true</autostart>
    </proxy-scheme>
    </caching-schemes>
    </cache-config>
    ------------------------------------------------------------------------- And the Log looks like the following ------------------------------------
    2009-12-04 16:21:54.056/25821.278 Oracle Coherence GE 3.5.2/463 <D6> (thread=Proxy:ExtendTcpProxyService:TcpAcceptor, member=12): Closed: Channel(Id=193159068
    6, Open=false)
    2009-12-04 16:21:54.058/25821.280 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:4, member=12): Repeating SizeReques
    t due to the re-distribution of PartitionSet{220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242
    , 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256}
    2009-12-04 16:21:54.058/25821.280 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:12, member=12): Repeating SizeReque
    st due to the re-distribution of PartitionSet{220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 24
    2, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256}
    2009-12-04 16:21:54.058/25821.280 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:11, member=12): Repeating SizeReque
    st due to the re-distribution of PartitionSet{220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 24
    2, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256}
    2009-12-04 16:21:54.058/25821.280 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:7, member=12): Repeating SizeReques
    t due to the re-distribution of PartitionSet{220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242
    , 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256}
    2009-12-04 16:21:54.175/25821.397 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:10, member=12): An exception occurr
    ed while processing a SizeRequest for Service=Proxy:ExtendTcpProxyService:TcpAcceptor: (Wrapped) java.lang.InterruptedException
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:269)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:107)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForRedistribution(DistributedCache.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.sendPartitionedRequest(DistributedCache.CDB:31)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.size(DistributedCache.CDB:13)
    at com.tangosol.util.ConverterCollections$ConverterMap.size(ConverterCollections.java:1470)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.size(DistributedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.size(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.collections.WrapperMap.size(WrapperMap.CDB:1)
    at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$SizeRequest.onRun(NamedCacheFactory.CDB:7)
    at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:28)
    at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.InterruptedException
    at java.lang.Object.wait(Native Method)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:96)
    ... 18 more
    2009-12-04 16:21:54.175/25821.397 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:9, member=12): An exception occurre
    d while processing a SizeRequest for Service=Proxy:ExtendTcpProxyService:TcpAcceptor: (Wrapped) java.lang.InterruptedException
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:269)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:107)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForRedistribution(DistributedCache.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.sendPartitionedRequest(DistributedCache.CDB:31)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.size(DistributedCache.CDB:13)
    at com.tangosol.util.ConverterCollections$ConverterMap.size(ConverterCollections.java:1470)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.size(DistributedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.size(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.collections.WrapperMap.size(WrapperMap.CDB:1)
    at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$SizeRequest.onRun(NamedCacheFactory.CDB:7)
    at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:28)
    at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.InterruptedException
    at java.lang.Object.wait(Native Method)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:96)
    ... 18 more
    2009-12-04 16:21:54.175/25821.397 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:13, member=12): An exception occurr
    ed while processing a SizeRequest for Service=Proxy:ExtendTcpProxyService:TcpAcceptor: (Wrapped) java.lang.InterruptedException
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:269)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:107)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForRedistribution(DistributedCache.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.sendPartitionedRequest(DistributedCache.CDB:31)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.size(DistributedCache.CDB:13)
    at com.tangosol.util.ConverterCollections$ConverterMap.size(ConverterCollections.java:1470)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.size(DistributedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.size(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.collections.WrapperMap.size(WrapperMap.CDB:1)
    at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$SizeRequest.onRun(NamedCacheFactory.CDB:7)
    at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:28)
    at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.InterruptedException
    at java.lang.Object.wait(Native Method)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:96)
    ... 18 more
    2009-12-04 16:21:54.175/25821.397 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:11, member=12): An exception occurr
    ed while processing a SizeRequest for Service=Proxy:ExtendTcpProxyService:TcpAcceptor: (Wrapped) java.lang.InterruptedException
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:269)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:107)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForRedistribution(DistributedCache.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.sendPartitionedRequest(DistributedCache.CDB:31)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.size(DistributedCache.CDB:13)
    at com.tangosol.util.ConverterCollections$ConverterMap.size(ConverterCollections.java:1470)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.size(DistributedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.size(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.collections.WrapperMap.size(WrapperMap.CDB:1)
    at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$SizeRequest.onRun(NamedCacheFactory.CDB:7)
    at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:28)
    at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.InterruptedException
    at java.lang.Object.wait(Native Method)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:96)
    ... 18 more
    2009-12-04 16:21:54.175/25821.397 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:2, member=12): An exception occurre
    d while processing a SizeRequest for Service=Proxy:ExtendTcpProxyService:TcpAcceptor: (Wrapped) java.lang.InterruptedException
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:269)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:107)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForRedistribution(DistributedCache.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.sendPartitionedRequest(DistributedCache.CDB:31)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.size(DistributedCache.CDB:13)
    at com.tangosol.util.ConverterCollections$ConverterMap.size(ConverterCollections.java:1470)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.size(DistributedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.size(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.collections.WrapperMap.size(WrapperMap.CDB:1)
    at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$SizeRequest.onRun(NamedCacheFactory.CDB:7)
    at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:28)
    at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.InterruptedException
    at java.lang.Object.wait(Native Method)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:96)
    ... 18 more
    2009-12-04 16:21:54.176/25821.398 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:6, member=12): An exception occurre
    d while processing a SizeRequest for Service=Proxy:ExtendTcpProxyService:TcpAcceptor: (Wrapped) java.lang.InterruptedException
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:269)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForPartitionRedistribution(DistributedCache
    .CDB:107)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.waitForRedistribution(DistributedCache.CDB:34)
    :$
    2009-12-04 16:21:54.259/25821.481 Oracle Coherence GE 3.5.2/463 <D4> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:8, member=12): Daemon caught an unh
    andled exception (com.tangosol.net.messaging.ConnectionException: channel is closed) while exiting.
    2009-12-04 16:21:54.264/25821.486 Oracle Coherence GE 3.5.2/463 <D4> (thread=Proxy:ExtendTcpProxyService:TcpAcceptorWorker:3, member=12): Daemon caught an unh
    andled exception (com.tangosol.net.messaging.ConnectionException: channel is closed) while exiting.
    2009-12-04 16:21:54.330/25821.552 Oracle Coherence GE 3.5.2/463 <D5> (thread=Proxy:ExtendTcpProxyService:TcpAcceptor, member=12): Stopped: TcpAcceptor{Name=Pr
    oxy:ExtendTcpProxyService:TcpAcceptor, State=(SERVICE_STOPPED), ThreadCount=0, Codec=Codec(Format=POF), PingInterval=0, PingTimeout=0, RequestTimeout=0, Local
    Address=[nybc94lxb01/10.12.101.81:21005], LocalAddressReusable=false, KeepAliveEnabled=true, TcpDelayEnabled=false, ReceiveBufferSize=0, SendBufferSize=0, Lis
    tenBacklog=0, LingerTimeout=-1, BufferPoolIn=BufferPool(BufferSize=2KB, BufferType=DIRECT, Capacity=Unlimited), BufferPoolOut=BufferPool(BufferSize=2KB, Buffe
    rType=DIRECT, Capacity=Unlimited)}
    Exception in thread "Thread-2" java.lang.RuntimeException: Failed to start Service "Proxy:ExtendTcpProxyService:TcpAcceptor" (ServiceState=SERVICE_STOPPED)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
    at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:10)
    at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:1)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.closeChannel(Peer.CDB:18)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.closeChannel(Peer.CDB:1)
    at com.tangosol.coherence.component.net.extend.Channel.close(Channel.CDB:20)
    at com.tangosol.coherence.component.net.extend.Channel.close(Channel.CDB:1)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.run(NamedCacheProxy.CDB:30)
    at java.lang.Thread.run(Thread.java:619)
    Exception in thread "Thread-3" java.lang.RuntimeException: Failed to start Service "Proxy:ExtendTcpProxyService:TcpAcceptor" (ServiceState=SERVICE_STOPPED)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.waitAcceptingClients(Service.CDB:12)
    at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:10)
    at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:1)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.closeChannel(Peer.CDB:18)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.closeChannel(Peer.CDB:1)
    at com.tangosol.coherence.component.net.extend.Channel.close(Channel.CDB:20)
    at com.tangosol.coherence.component.net.extend.Channel.close(Channel.CDB:1)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.run(NamedCacheProxy.CDB:30)
    at java.lang.Thread.run(Thread.java:619)
    Edited by: Anand Gupta on Dec 4, 2009 5:10 PM

    David,
    Thanks for your detailed response. I will try all that you suggested and let you know my observation at the end. To give a back ground of the application I am working on.
    Background
    Try to replace home grown cache (very well optimized uses custom serialization using NIO bytebuffer etc.,) my mandate is to replace the legacy cache with coherence (I love coherence product (at least 3.4) from my previous job experience). Since all kind of optimization is done in legacy application I am converting NIO byteBuffer generated by legacy serialization to byteArray and converting ByteArray into POF. Also for various other reasons, I have to send entry processor to do even get and put data from the cluster.
    Raw Data Set Size
    My data size is just 500MB (In Production). I put enough cache nodes so that raw data is just 50MB per node. (Since it is compute heavy with entry processor and the number of clients are going to be ~2500)
    What was happening when I got the exception?
    I was doing stress testing of the cache. Not sure if that put lot of garbage in some of the node hence may be the garbage collection pause triggered the re-distribution of partition set. Since the stress testing was on the way it might had cascading effect on all the nodes.
    Datagram Test result.
    Tx summary 4 peers:
    life: 96 MB/sec, 68774 packets/sec
    now: 100 MB/sec, 71378 packets/sec, packets/burst: 1029, bursts/second: 69.41594
    Success rate ranges from 0.87 to 1.0
    Is a success rate less than 0.98 a cause for concern?
    Regarding Size (to keep the extend client always connected to the proxy)
    I do size request every 5 sec. if there is not other request has gone to the cluster in the past 5 sec.
    In one of the oracle presentation it was said that "If you have map listener's and no other request from a long period of time extend client has to do a periodic size request to make sure that connection to proxy is alive"
    In this regard my question is "Can the same effect achieved by doing member listener on the extend client and on disconnection do the size request?"
    Proxy Size guide lines
    In production number of extend clients are going to be ~2500 connected all the time.
    Of which 2000 clients with few map listener + entry processor gets (Each of the clients will have distinct and disjoint set of data on which they work and listener)
    And the remaining ~500 clients will do all kinds of request on the entire data set.
    In this circumstance is there any recommendation for Number of extend-client : Number of extend-server : Number of threads ratio?
    Regards
    /Anand

  • Dashboard Design Cache Server failed to start after upgrade to BOBJ 4.0 SP09 Patch 3

    Hi Friends,
    We have upgraded our BOBJ 4.0 server from SP04 Patch 8 to SP09 patch 3.
    After upgrade completed "Dashboard Design Cache Server" Failed to start. other servers are running fine.
    xccache_<hostname>.DashboardDesignCacheServer_trace.000003.glf Error Log:
    |c24257f2-85df-0f2b-efe2-d7cfe59df826|2014 06 19 14:04:21:444|-0400|Information|Information|>=|S| |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200||{|0|1|0|1|-|-|-|-|-|-||||||||||||SessionManagerFactory::createInstance
    -:0:-: TraceLog message 1241
    |84f9fa46-c9ce-d9c4-fb5b-a08e6b6c1fea|2014 06 19 14:04:21:451|-0400|Debug| |<<| | |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200|| |0|1|0|1|-|-|-|-|-|-||||||||||com.businessobjects.dsl.commons.platform.OsgiPlatform||using OSGi emulation; cause: java.lang.ClassNotFoundException: org.eclipse.core.runtime.Platform
    -:0:-: TraceLog message 1242
    |2eb28d2c-acaa-e2ff-26de-0ce297ad41e5|2014 06 19 14:04:21:502|-0400|Debug| |<<| | |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200|| |0|1|0|1|-|-|-|-|-|-||||||||||com.businessobjects.dsl.commons.platform.OsgiPlatform||adding contributions from "jar:file:/bobje/sap_bobj/enterprise_xi40/java/lib/dsl_engine.jar!/META-INF/DSLContributions/DSLContributions.properties": DSL-Contribution = com.sap.sl.sdk.datasource.strategy.DataSourceStrategyContribution,com.sap.sl.sdk.services.session.BridgeSessionContribution,com.sap.sl.sdk.session.cms.BridgeCmsSessionContribution,com.sap.sl.sdk.session.filesystem.BridgeFileSystemSessionContribution,com.sap.sl.contributions.EPackageContribution,com.businessobjects.dsl.framework.session.SessionContribution,com.sap.sl.core.emf.registry.GeneratedPackageContribution,com.businessobjects.dsl.services.JavaDPContribution,com.businessobjects.dsl.services.repository.RepositoryServicesContribution,com.businessobjects.dsl.services.olap.sapbw.SapBwBrowsingServicesContribution,com.businessobjects.dsl.services.universe.UniverseServicesContribution,com.businessobjects.dsl.services.security.SecurityServicesContribution,com.businessobjects.mds.consumption.ConsumptionContribution,com.businessobjects.mds.consumption.SecurityKeyServiceContribution,com.businessobjects.mds.olap.protocol.bics.BICSClientContribution,com.businessobjects.mds.olap.protocol.ess_japi.EssJapiClientContribution,com.businessobjects.mds.olap.protocol.sapbapi.SapRfcClientContribution,com.businessobjects.mds.olap.protocol.xmla.XMLAClientContribution,com.businessobjects.mds.olap.OlapClientContribution,com.businessobjects.mds.publishing.PublishingContribution,com.businessobjects.mds.repository.cms.CMSSessionContribution,com.businessobjects.mds.repository.filesystem.FSSessionContribution,com.businessobjects.mds.repository.memory.MemorySessionContribution,com.businessobjects.mds.securedconnection.services.SecuredConnectionContribution,com.businessobjects.mds.security.cms.CMSSecurityContribution,com.businessobjects.mds.security.SecurityContribution,com.businessobjects.mds.services.internal.MdsModelContribution,com.sap.sl.edp.dataprovider.bics.BicsDataProviderBuilderContribution,com.sap.sl.edp.dataprovider.olap.OlapDataProviderBuilderContribution,com.sap.sl.edp.dataprovider.relational.RelationalDataProviderBuilderContribution,com.sap.sl.pquery.PQueryServiceContribution
    jvm/Bootstrap.cpp:146:-: TraceLog message 1243
    |9992bc42-cf8b-51bd-739f-ee471da81b76|2014 06 19 14:04:22:292|-0400|Debug| |<<| | |xccache_halsapad12.DashboardDesignCacheServer|16574|47600550826240|| ||||||||||||||||||||||ras21-core: CBootstrap::getSLUserSecurity starting wait loop[3], timeout[119]
    -:0:-: TraceLog message 1244
    |762aa011-8afb-af8d-6bd6-a61be1be142d|2014 06 19 14:04:22:399|-0400|Error| |>>| | |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200|| |0|1|0|1|-|-|-|-|-|-||||||||||com.businessobjects.dsl.commons.platform.OsgiPlatform||java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContribution(OsgiPlatform.java:646)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromProperty(OsgiPlatform.java:622)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromProperties(OsgiPlatform.java:580)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromPropertiesFile(OsgiPlatform.java:326)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsInternal(OsgiPlatform.java:281)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributions(OsgiPlatform.java:239)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.<clinit>(OsgiPlatform.java:109)
            at com.businessobjects.dsl.framework.session.SessionContribution.register(SessionContribution.java:71)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.initializeExtensionPoint(SessionManagerFactory.java:377)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.createInstance(SessionManagerFactory.java:340)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.getInstance(SessionManagerFactory.java:205)
            at com.businessobjects.ras21.servercore.externalservicessubsystem.UserSecurityCalculator.<clinit>(UserSecurityCalculator.java:38)
            at com.businessobjects.ras21.servercore.externalservicessubsystem.SecurityCalculator.<init>(SecurityCalculator.java:89)
            at com.businessobjects.ras21.servercore.bridge.servant.SLUserSecurityServant.<init>(SLUserSecurityServant.java:125)
            at com.businessobjects.ras21.servercore.bridge.JavaBridgeMain.runServants(JavaBridgeMain.java:224)
            at com.businessobjects.ras21.servercore.bridge.JavaBridgeMain.runAdapter(JavaBridgeMain.java:56)
            at com.businessobjects.ras21.servercore.servercontainer.ProcChildMain.main(ProcChildMain.java:141)
    Caused by: java.lang.NoClassDefFoundError: sun/awt/SunToolkit : cannot initialize class because prior initialization attempt failed
            at sun.awt.AppContext$2.run(AppContext.java:237)
            at sun.awt.AppContext$2.run(AppContext.java:226)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.initMainAppContext(AppContext.java:226)
            at sun.awt.AppContext.access$200(AppContext.java:112)
            at sun.awt.AppContext$3.run(AppContext.java:294)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.getAppContext(AppContext.java:275)
            at sun.awt.AppContext$6.getContext(AppContext.java:822)
            at sun.misc.SharedSecrets.getJavaAWTAccess(SharedSecrets.java:144)
            at java.util.TimeZone.getDefaultInAppContext(TimeZone.java:635)
            at java.util.TimeZone.getDefaultRef(TimeZone.java:523)
            at java.util.TimeZone.getDefault(TimeZone.java:515)
            at java.text.SimpleDateFormat.initializeCalendar(SimpleDateFormat.java:598)
            at java.text.SimpleDateFormat.<init>(SimpleDateFormat.java:496)
            at org.eclipse.emf.ecore.impl.EFactoryImpl$SafeSimpleDateFormat.<init>(EFactoryImpl.java:712)
            at org.eclipse.emf.ecore.impl.EFactoryImpl.<clinit>(EFactoryImpl.java:730)
            at com.businessobjects.mds.universe.UniverseFactory.<clinit>(UniverseFactory.java:26)
            at com.businessobjects.mds.universe.impl.UniversePackageImpl.<init>(UniversePackageImpl.java:106)
            at com.businessobjects.mds.universe.impl.UniversePackageImpl.init(UniversePackageImpl.java:142)
            at com.businessobjects.mds.universe.UniversePackage.<clinit>(UniversePackage.java:62)
            at com.businessobjects.mds.services.internal.MdsModelContribution.register(MdsModelContribution.java:14)
            ... 21 more
    Caused by: java.lang.UnsatisfiedLinkError: Can't load library: /bobje/sap_bobj/enterprise_xi40/linux_x64/headless/libmawt.so
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1807)
            at java.lang.Runtime.load0(Runtime.java:770)
            at java.lang.System.load(System.java:1011)
            at java.lang.ClassLoader$NativeLibrary.load(Native Method)
            at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1922)
            at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1846)
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1825)
            at java.lang.Runtime.loadLibrary0(Runtime.java:823)
            at java.lang.System.loadLibrary(System.java:1036)
            at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.awt.Toolkit.loadLibraries(Toolkit.java:1605)
            at java.awt.Toolkit.<clinit>(Toolkit.java:1627)
            at sun.awt.AppContext$2.run(AppContext.java:237)
            at sun.awt.AppContext$2.run(AppContext.java:226)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.initMainAppContext(AppContext.java:226)
            at sun.awt.AppContext.access$200(AppContext.java:112)
            at sun.awt.AppContext$3.run(AppContext.java:294)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.getAppContext(AppContext.java:275)
            at com.sun.jmx.trace.Trace.out(Trace.java:180)
            at com.sun.jmx.trace.Trace.isSelected(Trace.java:88)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.isTraceOn(DefaultMBeanServerInterceptor.java:1830)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerDynamicMBean(DefaultMBeanServerInterceptor.java:929)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerObject(DefaultMBeanServerInterceptor.java:916)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.java:312)
            at com.sun.jmx.mbeanserver.JmxMBeanServer$2.run(JmxMBeanServer.java:1195)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.initialize(JmxMBeanServer.java:1193)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.<init>(JmxMBeanServer.java:225)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.<init>(JmxMBeanServer.java:170)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.newMBeanServer(JmxMBeanServer.java:1401)
            at javax.management.MBeanServerBuilder.newMBeanServer(MBeanServerBuilder.java:93)
            at javax.management.MBeanServerFactory.newMBeanServer(MBeanServerFactory.java:311)
            at javax.management.MBeanServerFactory.createMBeanServer(MBeanServerFactory.java:214)
            at javax.management.MBeanServerFactory.createMBeanServer(MBeanServerFactory.java:175)
            at sun.management.ManagementFactory.createPlatformMBeanServer(ManagementFactory.java:302)
            at java.lang.management.ManagementFactory.getPlatformMBeanServer(ManagementFactory.java:504)
            at com.sap.sup.wily.agent.service.PlatformMBeanPoller.launchPoller(PlatformMBeanPoller.java:73)
            at com.sap.sup.wily.agent.service.PlatformMBeanPoller.IAgentService_startService(PlatformMBeanPoller.java:65)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.startService(ServiceAdministrator.java:432)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.startServiceSafe(ServiceAdministrator.java:446)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.IExecutableItem_execute(ServiceAdministrator.java:310)
            at com.wily.util.task.AsynchExecutionQueue$WrapperItem.IExecutableItem_execute(AsynchExecutionQueue.java:414)
            at com.wily.util.task.AsynchExecutionQueue.doTask(AsynchExecutionQueue.java:205)
            at com.wily.util.task.ATask$CoreTask.run(ATask.java:132)
            at java.lang.Thread.run(Thread.java:743)
    -:0:-: TraceLog message 1245
    |4ab25da4-f37d-97ff-b2ad-a97877076bb3|2014 06 19 14:04:22:399|-0400|Information|Information|>=|S| |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200||}|0|1|0|1|-|-|-|-|-|-||||||||||||SessionManagerFactory::createInstance: 00.957
    -:0:-: TraceLog message 1246
    |d3abc036-3e0f-728a-7dba-e3b540d39fe6|2014 06 19 14:04:22:451|-0400|Error| |>>| | |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200|| ||||||||||||||||||||com.businessobjects.ras21.servercore.bridge.JavaBridgeMain||Could not initialize processing subsystem
    java.lang.ExceptionInInitializerError
            at com.businessobjects.dsl.framework.session.SessionContribution.register(SessionContribution.java:71)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.initializeExtensionPoint(SessionManagerFactory.java:377)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.createInstance(SessionManagerFactory.java:340)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.getInstance(SessionManagerFactory.java:205)
            at com.businessobjects.ras21.servercore.externalservicessubsystem.UserSecurityCalculator.<clinit>(UserSecurityCalculator.java:38)
            at com.businessobjects.ras21.servercore.externalservicessubsystem.SecurityCalculator.<init>(SecurityCalculator.java:89)
            at com.businessobjects.ras21.servercore.bridge.servant.SLUserSecurityServant.<init>(SLUserSecurityServant.java:125)
            at com.businessobjects.ras21.servercore.bridge.JavaBridgeMain.runServants(JavaBridgeMain.java:224)
            at com.businessobjects.ras21.servercore.bridge.JavaBridgeMain.runAdapter(JavaBridgeMain.java:56)
            at com.businessobjects.ras21.servercore.servercontainer.ProcChildMain.main(ProcChildMain.java:141)
    Caused by: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributions(OsgiPlatform.java:243)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.<clinit>(OsgiPlatform.java:109)
            ... 10 more
    Caused by: java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContribution(OsgiPlatform.java:646)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromProperty(OsgiPlatform.java:622)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromProperties(OsgiPlatform.java:580)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromPropertiesFile(OsgiPlatform.java:326)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsInternal(OsgiPlatform.java:281)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributions(OsgiPlatform.java:239)
            ... 11 more
    Caused by: java.lang.NoClassDefFoundError: sun/awt/SunToolkit : cannot initialize class because prior initialization attempt failed
            at sun.awt.AppContext$2.run(AppContext.java:237)
            at sun.awt.AppContext$2.run(AppContext.java:226)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.initMainAppContext(AppContext.java:226)
            at sun.awt.AppContext.access$200(AppContext.java:112)
            at sun.awt.AppContext$3.run(AppContext.java:294)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.getAppContext(AppContext.java:275)
            at sun.awt.AppContext$6.getContext(AppContext.java:822)
            at sun.misc.SharedSecrets.getJavaAWTAccess(SharedSecrets.java:144)
            at java.util.TimeZone.getDefaultInAppContext(TimeZone.java:635)
            at java.util.TimeZone.getDefaultRef(TimeZone.java:523)
            at java.util.TimeZone.getDefault(TimeZone.java:515)
            at java.text.SimpleDateFormat.initializeCalendar(SimpleDateFormat.java:598)
            at java.text.SimpleDateFormat.<init>(SimpleDateFormat.java:496)
            at org.eclipse.emf.ecore.impl.EFactoryImpl$SafeSimpleDateFormat.<init>(EFactoryImpl.java:712)
            at org.eclipse.emf.ecore.impl.EFactoryImpl.<clinit>(EFactoryImpl.java:730)
            at com.businessobjects.mds.universe.UniverseFactory.<clinit>(UniverseFactory.java:26)
            at com.businessobjects.mds.universe.impl.UniversePackageImpl.<init>(UniversePackageImpl.java:106)
            at com.businessobjects.mds.universe.impl.UniversePackageImpl.init(UniversePackageImpl.java:142)
            at com.businessobjects.mds.universe.UniversePackage.<clinit>(UniversePackage.java:62)
            at com.businessobjects.mds.services.internal.MdsModelContribution.register(MdsModelContribution.java:14)
            ... 21 more
    Caused by: java.lang.UnsatisfiedLinkError: Can't load library: /bobje/sap_bobj/enterprise_xi40/linux_x64/headless/libmawt.so
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1807)
            at java.lang.Runtime.load0(Runtime.java:770)
            at java.lang.System.load(System.java:1011)
            at java.lang.ClassLoader$NativeLibrary.load(Native Method)
            at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1922)
            at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1846)
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1825)
            at java.lang.Runtime.loadLibrary0(Runtime.java:823)
            at java.lang.System.loadLibrary(System.java:1036)
            at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.awt.Toolkit.loadLibraries(Toolkit.java:1605)
            at java.awt.Toolkit.<clinit>(Toolkit.java:1627)
            at sun.awt.AppContext$2.run(AppContext.java:237)
            at sun.awt.AppContext$2.run(AppContext.java:226)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.initMainAppContext(AppContext.java:226)
            at sun.awt.AppContext.access$200(AppContext.java:112)
            at sun.awt.AppContext$3.run(AppContext.java:294)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.getAppContext(AppContext.java:275)
            at com.sun.jmx.trace.Trace.out(Trace.java:180)
            at com.sun.jmx.trace.Trace.isSelected(Trace.java:88)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.isTraceOn(DefaultMBeanServerInterceptor.java:1830)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerDynamicMBean(DefaultMBeanServerInterceptor.java:929)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerObject(DefaultMBeanServerInterceptor.java:916)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.java:312)
            at com.sun.jmx.mbeanserver.JmxMBeanServer$2.run(JmxMBeanServer.java:1195)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.initialize(JmxMBeanServer.java:1193)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.<init>(JmxMBeanServer.java:225)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.<init>(JmxMBeanServer.java:170)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.newMBeanServer(JmxMBeanServer.java:1401)
            at javax.management.MBeanServerBuilder.newMBeanServer(MBeanServerBuilder.java:93)
            at javax.management.MBeanServerFactory.newMBeanServer(MBeanServerFactory.java:311)
            at javax.management.MBeanServerFactory.createMBeanServer(MBeanServerFactory.java:214)
            at javax.management.MBeanServerFactory.createMBeanServer(MBeanServerFactory.java:175)
            at sun.management.ManagementFactory.createPlatformMBeanServer(ManagementFactory.java:302)
            at java.lang.management.ManagementFactory.getPlatformMBeanServer(ManagementFactory.java:504)
            at com.sap.sup.wily.agent.service.PlatformMBeanPoller.launchPoller(PlatformMBeanPoller.java:73)
            at com.sap.sup.wily.agent.service.PlatformMBeanPoller.IAgentService_startService(PlatformMBeanPoller.java:65)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.startService(ServiceAdministrator.java:432)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.startServiceSafe(ServiceAdministrator.java:446)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.IExecutableItem_execute(ServiceAdministrator.java:310)
            at com.wily.util.task.AsynchExecutionQueue$WrapperItem.IExecutableItem_execute(AsynchExecutionQueue.java:414)
            at com.wily.util.task.AsynchExecutionQueue.doTask(AsynchExecutionQueue.java:205)
            at com.wily.util.task.ATask$CoreTask.run(ATask.java:132)
            at java.lang.Thread.run(Thread.java:743)
    -:0:-: TraceLog message 1247
    |7fad3c80-8dfb-1944-911f-4d98498f150a|2014 06 19 14:04:22:491|-0400| |Fatal|  |F| |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200|| ||||||||||||||||||||com.businessobjects.ras21.servercore.servercontainer.ProcChildMain||Caught Error at top level
    java.lang.ExceptionInInitializerError
            at com.businessobjects.dsl.framework.session.SessionContribution.register(SessionContribution.java:71)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.initializeExtensionPoint(SessionManagerFactory.java:377)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.createInstance(SessionManagerFactory.java:340)
            at com.businessobjects.dsl.framework.session.SessionManagerFactory.getInstance(SessionManagerFactory.java:205)
            at com.businessobjects.ras21.servercore.externalservicessubsystem.UserSecurityCalculator.<clinit>(UserSecurityCalculator.java:38)
            at com.businessobjects.ras21.servercore.externalservicessubsystem.SecurityCalculator.<init>(SecurityCalculator.java:89)
            at com.businessobjects.ras21.servercore.bridge.servant.SLUserSecurityServant.<init>(SLUserSecurityServant.java:125)
            at com.businessobjects.ras21.servercore.bridge.JavaBridgeMain.runServants(JavaBridgeMain.java:224)
            at com.businessobjects.ras21.servercore.bridge.JavaBridgeMain.runAdapter(JavaBridgeMain.java:56)
            at com.businessobjects.ras21.servercore.servercontainer.ProcChildMain.main(ProcChildMain.java:141)
    Caused by: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributions(OsgiPlatform.java:243)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.<clinit>(OsgiPlatform.java:109)
            ... 10 more
    Caused by: java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContribution(OsgiPlatform.java:646)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromProperty(OsgiPlatform.java:622)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromProperties(OsgiPlatform.java:580)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsFromPropertiesFile(OsgiPlatform.java:326)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributionsInternal(OsgiPlatform.java:281)
            at com.businessobjects.dsl.commons.platform.OsgiPlatform.addContributions(OsgiPlatform.java:239)
            ... 11 more
    Caused by: java.lang.NoClassDefFoundError: sun/awt/SunToolkit : cannot initialize class because prior initialization attempt failed
            at sun.awt.AppContext$2.run(AppContext.java:237)
            at sun.awt.AppContext$2.run(AppContext.java:226)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.initMainAppContext(AppContext.java:226)
            at sun.awt.AppContext.access$200(AppContext.java:112)
            at sun.awt.AppContext$3.run(AppContext.java:294)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.getAppContext(AppContext.java:275)
            at sun.awt.AppContext$6.getContext(AppContext.java:822)
            at sun.misc.SharedSecrets.getJavaAWTAccess(SharedSecrets.java:144)
            at java.util.TimeZone.getDefaultInAppContext(TimeZone.java:635)
            at java.util.TimeZone.getDefaultRef(TimeZone.java:523)
            at java.util.TimeZone.getDefault(TimeZone.java:515)
            at java.text.SimpleDateFormat.initializeCalendar(SimpleDateFormat.java:598)
            at java.text.SimpleDateFormat.<init>(SimpleDateFormat.java:496)
            at org.eclipse.emf.ecore.impl.EFactoryImpl$SafeSimpleDateFormat.<init>(EFactoryImpl.java:712)
            at org.eclipse.emf.ecore.impl.EFactoryImpl.<clinit>(EFactoryImpl.java:730)
            at com.businessobjects.mds.universe.UniverseFactory.<clinit>(UniverseFactory.java:26)
            at com.businessobjects.mds.universe.impl.UniversePackageImpl.<init>(UniversePackageImpl.java:106)
            at com.businessobjects.mds.universe.impl.UniversePackageImpl.init(UniversePackageImpl.java:142)
            at com.businessobjects.mds.universe.UniversePackage.<clinit>(UniversePackage.java:62)
            at com.businessobjects.mds.services.internal.MdsModelContribution.register(MdsModelContribution.java:14)
            ... 21 more
    Caused by: java.lang.UnsatisfiedLinkError: Can't load library: /bobje/sap_bobj/enterprise_xi40/linux_x64/headless/libmawt.so
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1807)
            at java.lang.Runtime.load0(Runtime.java:770)
            at java.lang.System.load(System.java:1011)
            at java.lang.ClassLoader$NativeLibrary.load(Native Method)
            at java.lang.ClassLoader.loadLibrary1(ClassLoader.java:1922)
            at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1846)
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1825)
            at java.lang.Runtime.loadLibrary0(Runtime.java:823)
            at java.lang.System.loadLibrary(System.java:1036)
            at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.awt.Toolkit.loadLibraries(Toolkit.java:1605)
            at java.awt.Toolkit.<clinit>(Toolkit.java:1627)
            at sun.awt.AppContext$2.run(AppContext.java:237)
            at sun.awt.AppContext$2.run(AppContext.java:226)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.initMainAppContext(AppContext.java:226)
            at sun.awt.AppContext.access$200(AppContext.java:112)
            at sun.awt.AppContext$3.run(AppContext.java:294)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.awt.AppContext.getAppContext(AppContext.java:275)
            at com.sun.jmx.trace.Trace.out(Trace.java:180)
            at com.sun.jmx.trace.Trace.isSelected(Trace.java:88)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.isTraceOn(DefaultMBeanServerInterceptor.java:1830)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerDynamicMBean(DefaultMBeanServerInterceptor.java:929)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerObject(DefaultMBeanServerInterceptor.java:916)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.java:312)
            at com.sun.jmx.mbeanserver.JmxMBeanServer$2.run(JmxMBeanServer.java:1195)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.initialize(JmxMBeanServer.java:1193)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.<init>(JmxMBeanServer.java:225)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.<init>(JmxMBeanServer.java:170)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.newMBeanServer(JmxMBeanServer.java:1401)
            at javax.management.MBeanServerBuilder.newMBeanServer(MBeanServerBuilder.java:93)
            at javax.management.MBeanServerFactory.newMBeanServer(MBeanServerFactory.java:311)
            at javax.management.MBeanServerFactory.createMBeanServer(MBeanServerFactory.java:214)
            at javax.management.MBeanServerFactory.createMBeanServer(MBeanServerFactory.java:175)
            at sun.management.ManagementFactory.createPlatformMBeanServer(ManagementFactory.java:302)
            at java.lang.management.ManagementFactory.getPlatformMBeanServer(ManagementFactory.java:504)
            at com.sap.sup.wily.agent.service.PlatformMBeanPoller.launchPoller(PlatformMBeanPoller.java:73)
            at com.sap.sup.wily.agent.service.PlatformMBeanPoller.IAgentService_startService(PlatformMBeanPoller.java:65)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.startService(ServiceAdministrator.java:432)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.startServiceSafe(ServiceAdministrator.java:446)
            at com.wily.introscope.agent.service.ServiceAdministrator$ServiceInitializer.IExecutableItem_execute(ServiceAdministrator.java:310)
            at com.wily.util.task.AsynchExecutionQueue$WrapperItem.IExecutableItem_execute(AsynchExecutionQueue.java:414)
            at com.wily.util.task.AsynchExecutionQueue.doTask(AsynchExecutionQueue.java:205)
            at com.wily.util.task.ATask$CoreTask.run(ATask.java:132)
            at java.lang.Thread.run(Thread.java:743)
    -:0:-: TraceLog message 1248
    |dd2a290d-c8ad-ebea-d1b5-3ebe783e598b|2014 06 19 14:04:22:491|-0400| |Fatal|  |F| |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200|| ||||||||||||||||||||com.businessobjects.ras21.servercore.servercontainer.ProcChildMain||BEGIN TRACING JVM PROPERTIES
    java.vendor = <SAP AG>
    sun.management.compiler = <HotSpot 64-Bit Tiered Compilers>
    os.name = <Linux>
    sun.boot.class.path = </bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/sapjvm-alt-rt.jar:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/resources.jar:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/rt.jar:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/sunrsasign.jar:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/jsse.jar:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/jce.jar:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/charsets.jar:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/jfr.jar:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/classes:/bobje/sap_bobj/enterprise_xi40/java/wily/Agent.jar>
    ooc.orb.oa.thread_pool = <64>
    java.vm.specification.vendor = <Sun Microsystems Inc.>
    businessobjects.server.friendlyname = <halsapad12.DashboardDesignCacheServer>
    businessobjects.logs.home = </bobje/sap_bobj/logging/>
    java.runtime.version = <6.1.055>
    com.sap.vm.version = <10>
    businessobjects.ns = <hal-sapa-d12.dc.fmcna.com:6400>
    com.wily.log4j.defaultInitOverride = <true>
    user.name = <cbi>
    user.language = <en>
    sun.boot.library.path = </bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/amd64>
    java.version = <1.6.0_51>
    user.timezone = <America/New_York>
    java.net.preferIPv4Stack = <false>
    sun.arch.data.model = <64>
    java.endorsed.dirs = </bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/endorsed>
    sun.cpu.isalist = <>
    sun.jnu.encoding = <UTF-8>
    file.encoding.pkg = <sun.io>
    file.separator = </>
    java.specification.name = <Java Platform API Specification>
    com.wily.introscope.agent.agentName = <xccache_halsapad12.DashboardDesignCacheServer_java>
    java.class.version = <50.0>
    user.country = <US>
    java.home = </bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre>
    com.sap.vm.compressedoops = <true>
    java.vm.info = <Aug 12 2013 00:30:55 - 61_REL - optU - linux amd64 - 6 - bas2:201693 (mixed mode)>
    os.version = <2.6.18-128.el5>
    path.separator = <:>
    businessobjects.enterprise.orb.threadmodel = <threaded>
    java.vm.version = <6.1.055 23.5-b02>
    com.sap.vm.type = <opt>
    introscope.enterprisemanager.serversockets.reuseaddr = <false>
    java.awt.printerjob = <sun.print.PSPrinterJob>
    sun.io.unicode.encoding = <UnicodeLittle>
    com.sap.vm.codeline = <61_REL>
    user.home = </sapmnt/CBP/cbi>
    java.specification.vendor = <Sun Microsystems Inc.>
    tracelog.logdir = </bobje/sap_bobj/logging/>
    java.library.path = </bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/amd64/server:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/amd64:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/../lib/amd64:/bobje/sap_bobj/enterprise_xi40/linux_x64/:/bobje/sap_bobj/enterprise_xi40/linux_x86/:/bobje/sap_bobj/enterprise_xi40/linux_x64/wcs/components/:/bobje/sap_bobj/enterprise_xi40/linux_x64/plugins//auth/secEnterprise:/bobje/sap_bobj/enterprise_xi40/linux_x64/crpe/:/bobje/sap_bobj/enterprise_xi40/linux_x86/crpe/:/bobje/sap_bobj/enterprise_xi40/linux_x86/crpe/mw/:/bobje/sap_bobj/enterprise_xi40/linux_x64/plugins//desktop/CrystalEnterprise.Report:/bobje/sap_bobj/enterprise_xi40/linux_x86/ras:/bobje/sap_bobj/mysql/lib:/bobje/sap_bobj/enterprise_xi40/dataAccess/connectionServer/drivers/lib64:/bobje/perl/lib/5.8.0/i386-linux-thread-multi/CORE:/bobje/sap_bobj/enterprise_xi40/linux_x64//sapjvm/jre/lib/amd64/server:/bobje/sap_bobj/enterprise_xi40/linux_x64//sapjvm/jre/lib/amd64:/bobje/sap_bobj/enterprise_xi40/linux_x86/crpe/mw/lib-i86_linux/X11:/bobje/sap_bobj/enterprise_xi40/linux_x86/crpe/mw//lib-linux:/bobje/sap_bobj/enterprise_xi40/linux_x86/crpe/mw//lib-linux_optimized:/bobje/oracle/CBI/db_home/lib:/home/db2cbi/sqllib/lib64:/home/db2cbi/sqllib/lib32:/bobje/sap_bobj/enterprise_xi40/linux_x86:/sapmnt/CBP/db2cbi/sqllib/lib64:/sapmnt/CBP/db2cbi/sqllib/lib32:/usr/X11R6/lib:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib>
    java.vendor.url = <http://www.sap.com/>
    businessobjects.enterprise.orb.thread_pool_size = <5>
    java.vm.vendor = <SAP AG>
    java.runtime.name = <Java(TM) SE Runtime Environment>
    java.class.path = <:/bobje/sap_bobj/enterprise_xi40/java/lib//XcelsiusServer.jar:/sapmnt/CBP/db2cbi/sqllib/java/db2jcc_license_cu.jar:/sapmnt/CBP/db2cbi/sqllib/java/db2java.zip:/sapmnt/CBP/db2cbi/sqllib/java/db2jcc.jar:.::/bobje/sap_bobj/enterprise_xi40//java/wily/Agent.jar>
    tracelog.jni = <1>
    bobj.enterprise.home = </bobje/sap_bobj/enterprise_xi40/>
    businessobjects.enterprise.orb.request_timeout = <3600000>
    java.vm.specification.name = <Java Virtual Machine Specification>
    java.vm.specification.version = <1.0>
    sun.cpu.endian = <little>
    sun.os.patch.level = <unknown>
    java.awt.headless = <true>
    java.io.tmpdir = </tmp>
    java.vendor.url.bug = <http://service.sap.com/support>
    businessobjects.enterprise.orb.client_timeout = <0>
    ooc.orb.oa.conc_model = <thread_pool>
    os.arch = <amd64>
    java.awt.graphicsenv = <sun.awt.X11GraphicsEnvironment>
    java.ext.dirs = </bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/ext-sap:/bobje/sap_bobj/enterprise_xi40/linux_x64/sapjvm/jre/lib/ext:/usr/java/packages/lib/ext>
    user.dir = </bobje/sap_bobj/enterprise_xi40/linux_x64>
    bobj.logging = <true>
    line.separator = <
    >
    java.vm.name = <SAP Java Server VM>
    file.encoding = <UTF-8>
    tracelog.process = <xccache_halsapad12.DashboardDesignCacheServer_java>
    com.sap.vm.profilingserver = <true>
    java.specification.version = <1.6>
    com.wily.introscope.agentProfile = </bobje/sap_bobj/enterprise_xi40//java/wily/halsapad12.DashboardDesignCacheServer.profile>
    END TRACING JVM PROPERTIES
    -:0:-: TraceLog message 1249
    |a79b935e-9c92-9957-35bf-2c937079beb8|2014 06 19 14:04:22:492|-0400| |Fatal|  |F| |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200|| ||||||||||||||||||||com.businessobjects.ras21.servercore.servercontainer.ProcChildMain||BEGIN TRACING COMMAND LINE
      -loggingPath
      /bobje/sap_bobj/logging/
      -cache
      -documentType
      CrystalEnterprise.XL.Query
      -nops
      -restart
      -fg
      -name
      halsapad12.DashboardDesignCacheServer
      -pidfile
      /bobje/sap_bobj/serverpids/halsapad12_halsapad12.DashboardDesignCacheServer.pid
      -ns
      hal-sapa-d12.dc.fmcna.com:6400
      -procParentIOR
      IOR:010000002500000049444c3a4a6176614272696467652f4941646170746572426f6f7473747261703a312e300000000001000000000000005a000000010101ca1a00000068616c2d736170612d6431322e64632e666d636e612e636f6d006cbd10000000000000001c26a353bb16050003000000010000000100000014000000011af5ca010001000000000000010100000000000200
      -libraryName
      XcelsiusServer
      -useSLUS
    END TRACING COMMAND LINE
    -:0:-: TraceLog message 1250
    |088b0565-be95-fe7f-e474-4e3c45773bbc|2014 06 19 14:04:22:492|-0400| |Fatal|  |F| |xccache_halsapad12.DashboardDesignCacheServer|16574|1098107200|| ||||||||||||||||||||com.businessobjects.ras21.servercore.servercontainer.ProcChildMain||11 threads are still alive in this JVM
    Thread 'Thread[main,5,main]' is still alive
    Thread 'Thread[Business Objects - Sessions Clean up,5,main]' is still alive
    Thread 'Thread[Thread-2,5,main]' is still alive
    Thread 'Thread[Configuration Watch Heartbeat Heartbeat,5,Agent]' is still alive
    Thread 'Thread[Remove Metric Data Watch Heartbeat Heartbeat,5,Agent]' is still alive
    Thread 'Thread[Agent Heartbeat,5,Agent]' is still alive
    Thread 'Thread[Agent Execution,5,Agent]' is still alive
    Thread 'Thread[Agent ServerConnection,5,Agent]' is still alive
    Thread 'Thread[UnknownHub Hub Transmit 1,5,Agent]' is still alive
    Thread 'Thread[UnknownHub Hub Receive 1,5,Agent]' is still alive
    Thread 'Thread[PO:client_main Mailman 1,5,Agent]' is still alive
    Regards
    Kannan K

    Kannan,
    the error in your logs like "NoClassDefFoundError" etc. point us towards issues with jar files. either they are missing or not the correct ones.
    A general practice in such situation is to
    stop all servers except CMS,IFRS,OFRS > repair the base installation
    OR
    If you have a working environment with the exact same patch, copy the 'lib' folder from "/bobje/sap_bobj/enterprise_xi40/java/" to the non-working server.
    PS: please attach the logs to the thread instead of pasting the content.
    -Nikhil Nair

  • New Mac Mini Server, two Hard drives, Can I install an older Mac OS on the second drive and switch start up disks to run PowerPc applications?

    New Mac Mini Server, has two Hard drives, could I install an older Mac OS on the second drive and switch start up disks to run PowerPc applications?

    I haven't purchased a Mac Mini at this time and I may not if I can't use it as a non server. I need to update my system I would be better off buying a new Mac with Snow Leopard the last app that will run Rosetta. The Mac Mini Server has a quad 2.0 processor and 4 GB RAM and two internal hard drives and should out perform my dual 1.25 G4. I can run PPC apps on my G4 but it is 8+ years old and seems to be getting noisy. I don't want to tie myself to another old machine. I want a machine that will work with Intel Apps I was hoping that the two hard drives would allow me to boot from the second with Snow Leopard and use Lion on the first drive to be able to keep up to date with all my other universal apps and Mac OS up grades. The application I use the most is my CanvasX app with drawing & vector effects, text & typography, sprite technology, painting, image editing, and multimedia tools are all in this one app but will not be updated to run Intel apps. I am frozen in time because my most valuable Application won't be updated and Apple has cut me off by not supporting PPC in Lion and onward; Apple used to backward support but I guess that they are no longer as user friendly and concerned with a happy user. I have always been a loyal Mac user and I will not migrate to Windows under any circumstance; I hate windows!
    Thanks for your prompt response,
    Dick Deaton

  • Implementing Oracle DCN with Coherence Cache in a weblogic 10 app server

    I m trying to implements a DCN ( Database change notification ) on oracle to notify a listener of an event of DB so I can update Coherence Cache.
    I followed the tutorial here and it is working fine using a sample program with a main method to execute the listener class and keep it running.
    My question is how would this notification and listener gets implemented on a production environment since my local test was only running a main method to keep the listener running? what technology to use to keep the listener always running on the background and receive the notification from the database )?
    would a [weblogic startup class|http://docs.oracle.com/cd/E13222_01/wls/docs81/ConsoleHelp/startup_shutdown.html] work for this purpose?
    We are using Weblogic 10 as our app server.

    That's a very simple question with (many) potentially complex answers. I think that first uou need to study information on TimesTen to understand what it is and what it does. Then you need to relate that to you current performance bottleneck (I assume you have analysed those). If your bottleneck is database access then maybe TimesTen can help you.
    Please bear in mind that TimesTen is not a 'transparent' drop in performance booster. To implement TimesTen and to realise significant performance improvement you will almost certainly need to make changes to both the application and the overall architecture. The cost/difficulty of doing that also needs to be factored in.
    Chris

  • New mac mini server won't start up

    Hi I've had the new Mac mini server for 2 day now and it was workinf fine untill I tried to restart it. When I turn it on I just get the apple logo and the gray processing wheel.
    I've have used disc utility to check the disc. But that did nothing.
    It is picking up the startup disc fine.
    Is there anything I can do or will I need to re-install.
    Any help would be appreciated.
    thanks

    Greetings Richard, I ran into a similar situation recently with my mini server. although I believe it to be a problem of my DNS settings getting hosed. I couldn’t log in no matter what log I used-even as the root user.
    I had a back up on the second drive of the mini. I did buy the USB drive when I bought the mini, so I was able to boot off the install disc. Then from the menu I choose the back up partion as the start up drive. After restarting, I was at least able to recover and copy my important files to the back up partition. I have not been able to work out the login issue yet. I’ll probably just do a reinstall on the corrupted drive.
    In any event, it maybe worth it for you to buy the USB drive and boot off of it.
    The verbose mode is for you to be able to login through the command line and trouble shoot from there.
    Also, in safe mode, any files that you may want to change permissions, you may need to change the owner and then change the permissions. This is done with the chown command and then chmod command. You’ll need to use the sudo command so you can become the root user to use the commands and make any changes.
    Hope this will at least help you get further in troubleshooting this issue.
    Bill B

  • Starting applications with interdependencies in coherence-cache

    Hello,
    is there a way to force CEP to wait for an application to have a state of RUNNING (or status of "Module is currently running" from the wlevsdeploy.jar) before it attempts to start the next application in the deployments.xml?
    there is a coherence-cache dependency between the two applications which trigger exceptions if the 2nd application is started before the 1st has been fully started and is a RUNNING state.
    thanks,
    -Andres

    Here is the exception, note the the core application is running just fine before and after the exception,
    thaks,
    -Andres
    <Mar 7, 2011 10:06:19 AM EST> <Notice> <Deployment> <BEA-2045000> <The application bundle "com.avocent.dcim.engine.es.core" was deployed successfully to file:/home/afolleco/Oracle/Middleware/user_projects/domains/mss-engine/defaultserver/applications/com.avocent.dcim.engine.es.core/com.avocent.dcim.engine.es.core.jar with version 1299510378795>
    <Mar 7, 2011 10:06:19 AM EST> <Warning> <org.springframework.osgi.extensions.annotation.ServiceReferenceDependencyBeanFactoryPostProcessor> <BEA-000000> <Could not load class [org.springframework.osgi.extensions.annotation.ServiceReferenceInjectionBeanPostProcessor] for [com.avocent.dcim.engine.es.core]>
    <Mar 7, 2011 10:06:19 AM EST> <Warning> <com.bea.wlevs.spring.support.ServiceDependencyBeanFactoryPostProcessor> <BEA-000000> <Could not load class [org.springframework.osgi.extensions.annotation.ServiceReferenceInjectionBeanPostProcessor] for [com.avocent.dcim.engine.es.core]>
    <Mar 7, 2011 10:06:20 AM EST> <Notice> <Spring> <BEA-2047000> <The application context for "com.avocent.dcim.engine.es.core" was started successfully>
    <Mar 7, 2011 10:06:20 AM EST> <Notice> <Deployment> <BEA-2045000> <The application bundle "com.avocent.dcim.engine.es.dpa" was deployed successfully to file:/home/afolleco/Oracle/Middleware/user_projects/domains/mss-engine/defaultserver/applications/com.avocent.dcim.engine.es.dpa/com.avocent.dcim.engine.es.dpa.jar with version 1299510380096>
    <Mar 7, 2011 10:06:20 AM EST> <Warning> <org.springframework.osgi.extensions.annotation.ServiceReferenceDependencyBeanFactoryPostProcessor> <BEA-000000> <Could not load class [org.springframework.osgi.extensions.annotation.ServiceReferenceInjectionBeanPostProcessor] for [com.avocent.dcim.engine.es.dpa]>
    <Mar 7, 2011 10:06:20 AM EST> <Warning> <com.bea.wlevs.spring.support.ServiceDependencyBeanFactoryPostProcessor> <BEA-000000> <Could not load class [org.springframework.osgi.extensions.annotation.ServiceReferenceInjectionBeanPostProcessor] for [com.avocent.dcim.engine.es.dpa]>
    <Mar 7, 2011 10:06:21 AM EST> <Error> <Deployment> <BEA-2045010> <The application context "com.avocent.dcim.engine.es.dpa" could not be started: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.osgi.service.exporter.support.OsgiServiceFactoryBean#0': Initialization of bean failed; nested exception is java.lang.IllegalStateException: Bundle "file:/home/afolleco/Oracle/Middleware/user_projects/domains/mss-engine/defaultserver/applications/com.avocent.dcim.engine.es.core/com.avocent.dcim.engine.es.core.jar" has been uninstalled
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.osgi.service.exporter.support.OsgiServiceFactoryBean#0': Initialization of bean failed; nested exception is java.lang.IllegalStateException: Bundle "file:/home/afolleco/Oracle/Middleware/user_projects/domains/mss-engine/defaultserver/applications/com.avocent.dcim.engine.es.core/com.avocent.dcim.engine.es.core.jar" has been uninstalled
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:480)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
         at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
         at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
         at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
         at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
         at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
         at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:423)
         at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
         at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.access$1600(AbstractDelegatedExecutionApplicationContext.java:69)
         at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext$4.run(AbstractDelegatedExecutionApplicationContext.java:355)
         at org.springframework.osgi.util.internal.PrivilegedUtils.executeWithCustomTCCL(PrivilegedUtils.java:85)
         at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.completeRefresh(AbstractDelegatedExecutionApplicationContext.java:320)
         at org.springframework.osgi.extender.internal.dependencies.startup.DependencyWaiterApplicationContextExecutor$CompleteRefreshTask.run(DependencyWaiterApplicationContextExecutor.java:136)
         at org.springframework.scheduling.commonj.DelegatingWork.run(DelegatingWork.java:62)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:196)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.lang.IllegalStateException: Bundle "file:/home/afolleco/Oracle/Middleware/user_projects/domains/mss-engine/defaultserver/applications/com.avocent.dcim.engine.es.core/com.avocent.dcim.engine.es.core.jar" has been uninstalled
         at org.eclipse.osgi.framework.internal.core.AbstractBundle.checkValid(AbstractBundle.java:1160)
         at org.eclipse.osgi.framework.internal.core.BundleHost.checkLoader(BundleHost.java:185)
         at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:227)
         at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:1193)
         at org.eclipse.osgi.internal.loader.buddy.GlobalPolicy.loadClass(GlobalPolicy.java:38)
         at org.eclipse.osgi.internal.loader.buddy.PolicyHandler.doBuddyClassLoading(PolicyHandler.java:135)
         at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:482)
         at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)
         at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:398)
         at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:121)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at org.springframework.util.ClassUtils.forName(ClassUtils.java:211)
         at org.springframework.util.ClassUtils.resolveClassName(ClassUtils.java:230)
         at org.springframework.beans.propertyeditors.ClassArrayEditor.setAsText(ClassArrayEditor.java:66)
         at org.springframework.beans.TypeConverterDelegate.doConvertTextValue(TypeConverterDelegate.java:382)
         at org.springframework.beans.TypeConverterDelegate.doConvertValue(TypeConverterDelegate.java:358)
         at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:173)
         at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:138)
         at org.springframework.beans.BeanWrapperImpl.convertForProperty(BeanWrapperImpl.java:386)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.convertForProperty(AbstractAutowireCapableBeanFactory.java:1289)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1250)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1011)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:472)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
         at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
         at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
         at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
         at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
         at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
         at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:423)
         at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
         at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.access$1600(AbstractDelegatedExecutionApplicationContext.java:69)
         at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext$4.run(AbstractDelegatedExecutionApplicationContext.java:355)
         at org.springframework.osgi.util.internal.PrivilegedUtils.executeWithCustomTCCL(PrivilegedUtils.java:85)
         at org.springframework.osgi.context.support.AbstractDelegatedExecutionApplicationContext.completeRefresh(AbstractDelegatedExecutionApplicationContext.java:320)
         at org.springframework.osgi.extender.internal.dependencies.startup.DependencyWaiterApplicationContextExecutor$CompleteRefreshTask.run(DependencyWaiterApplicationContextExecutor.java:136)
         at org.springframework.scheduling.commonj.DelegatingWork.run(DelegatingWork.java:62)
         at weblogic.work.commonj.CommonjWorkManagerImpl$WorkWithListener.run(CommonjWorkManagerImpl.java:196)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    <Mar 7, 2011 10:06:21 AM EST> <Notice> <Deployment> <BEA-2045001> <The application bundle "com.avocent.dcim.engine.es.dpa" was undeployed successfully>
    <Mar 7, 2011 10:06:22 AM EST> <Notice> <Deployment> <BEA-2045000> <The application bundle "com.avocent.dcim.engine.es.epp" was deployed successfully to file:/home/afolleco/Oracle/Middleware/user_projects/domains/mss-engine/defaultserver/applications/com.avocent.dcim.engine.es.epp/com.avocent.dcim.engine.es.epp.jar with version 1299510380960>
    <Mar 7, 2011 10:06:24 AM EST> <Notice> <Deployment> <BEA-2045000> <The application bundle "com.avocent.dcim.engine.es.dispatch" was deployed successfully to file:/home/afolleco/Oracle/Middleware/user_projects/domains/mss-engine/defaultserver/applications/com.avocent.dcim.engine.es.dispatch/com.avocent.dcim.engine.es.dispatch.jar with version 1299510382986>
    <Mar 7, 2011 10:06:25 AM EST> <Notice> <Deployment> <BEA-2045000> <The application bundle "com.avocent.dcim.engine.es.ipmi" was deployed successfully to file:/home/afolleco/Oracle/Middleware/user_projects/domains/mss-engine/defaultserver/applications/com.avocent.dcim.engine.es.ipmi/com.avocent.dcim.engine.es.ipmi.jar with version 1299510384994>
    <Mar 7, 2011 10:06:25 AM EST> <Notice> <Spring> <BEA-2047000> <The application context for "com.avocent.dcim.engine.es.ipmi" was started successfully>

Maybe you are looking for

  • How to print Field name with value of a Class object?

    hi, In C#, I need to print a class field or property name with value without using reflection or string.join method. For eg. protected void Button1_Click(object sender, EventArgs e) List<EmployeeInfo> obj = new List<EmployeeInfo>(); obj.Add(new Emplo

  • Battery explosion, magsafe issues.

    Hello, Firstly, I would like to say that the quality of the magsafe adapters is terrible. I bought my second after my first went 'pop'. This cost me £60, and within a few months the cord has become loose, exposing bare wiring. I understand this is st

  • How to increase RFC lookup calls

    Hi gurus, we are using RFC Lookup functionality in graphical mapping. We tried to send 60.000 messages every hour. But it takes ca. 30 minutes in SAP PI mapping environment. I checked the communication monitoring  see that every seconds send RFC rece

  • How to make iphone show up in windows explorer?

    i know with my ipod theres a option to make the ipod a device to store data too but i cant seem to find the option on the iphone, is there a way for it to show up in windows explorer

  • List A Constraint For a Given Attribute In A Table - DESCRIBE?

    Hello, Given a real simple table that has a CONSTRAINT on one of the attributes, I'm trying to find out he NAME of the constraint so that I can alter it. When I perform the DESCRIBE command for the table of interest, the following output occurs: DESC