Coherence*Web on GlassFish Server Issues

Hi!
We are using Coherence 3.7.1.8 in our application in GlassFish 3.1.2 both as application cache and for storing session data (Coherence*Web) so it can be shared between multiple EARs and App server instances. Session data sharing between EARs in the same container works fine, but when we try to share session data between application server instances the server stops responding and has to be restarted. The only thing we get on the log is this exception:
#|SEVERE|oracle-glassfish3.1.2|com.tangosol.coherence.servlet.ParallelReapTask|_ThreadID=169;_ThreadName=Thread-2;|An exception was thrown while reaping a session.
com.tangosol.coherence.servlet.commonj.WorkException: Work Failed.
  at com.tangosol.coherence.servlet.commonj.impl.WorkItemImpl.run(WorkItemImpl.java:167)
  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
  at java.lang.Thread.run(Thread.java:722)
Caused by: java.lang.ClassCastException: com.tangosol.coherence.servlet.SplittableHolder cannot be cast to com.tangosol.coherence.servlet.AttributeHolder
  at com.tangosol.coherence.servlet.AbstractHttpSessionModel.readAttributes(AbstractHttpSessionModel.java:1815)
  at com.tangosol.coherence.servlet.AbstractHttpSessionModel.readExternal(AbstractHttpSessionModel.java:1735)
  at com.tangosol.util.ExternalizableHelper.readExternalizableLite(ExternalizableHelper.java:2042)
  at com.tangosol.util.ExternalizableHelper.readObjectInternal(ExternalizableHelper.java:2346)
  at com.tangosol.util.ExternalizableHelper.deserializeInternal(ExternalizableHelper.java:2747)
  at com.tangosol.util.ExternalizableHelper.fromBinary(ExternalizableHelper.java:263)
  at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ConverterFromBinary.convert(PartitionedCache.CDB:4)
  at com.tangosol.util.ConverterCollections$ConverterMap.get(ConverterCollections.java:1656)
  at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ViewMap.get(PartitionedCache.CDB:1)
  at com.tangosol.coherence.component.util.SafeNamedCache.get(SafeNamedCache.CDB:1)
  at com.tangosol.net.cache.CachingMap.get(CachingMap.java:491)
  at com.tangosol.coherence.servlet.DefaultCacheDelegator.getModel(DefaultCacheDelegator.java:122)
  at com.tangosol.coherence.servlet.AbstractHttpSessionCollection.getModel(AbstractHttpSessionCollection.java:2288)
  at com.tangosol.coherence.servlet.AbstractReapTask.checkAndInvalidate(AbstractReapTask.java:140)
  at com.tangosol.coherence.servlet.ParallelReapTask$ReapWork.run(ParallelReapTask.java:89)
  at com.tangosol.coherence.servlet.commonj.impl.WorkItemImpl.run(WorkItemImpl.java:164)
  ... 3 more
We tried to restrict the shared session data by implementing a custom SessionDistributionController, but according to the documentation, this feature requires coherence-sticky-sessions optimization to be enabled and this last one requires coherence-session-member-locking to be enabled. This led us to the following error:
#|SEVERE|oracle-glassfish3.1.2|org.apache.catalina.connector.CoyoteAdapter|_ThreadID=202;_ThreadName=Thread-2;|PWC3989: An exception or error occurred in the container during the request processing
java.lang.IllegalStateException: attempt to exit session VhSnfqkcwAza when it was not owned
    at com.tangosol.coherence.servlet.AbstractHttpSessionCollection.exit(AbstractHttpSessionCollection.java:799)
    at com.tangosol.coherence.servlet.AbstractHttpSessionCollection.exit(AbstractHttpSessionCollection.java:696)
    at com.tangosol.coherence.servlet.glassfish31.CoherenceWebSessionManager.exit(CoherenceWebSessionManager.java:536)
    at com.tangosol.coherence.servlet.glassfish31.CoherenceWebSession.unlockForeground(CoherenceWebSession.java:451)
    at org.apache.catalina.connector.Request.unlockSession(Request.java:4222)
    at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:342)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)
    at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)
    at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
    at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:860)
    at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:757)
    at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1056)
    at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:229)
    at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
    at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
    at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
    at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
    at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
    at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
    at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
    at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
    at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
    at java.lang.Thread.run(Thread.java:722)
We want to know if we are missing something in our configuration. We are using com.tangosol.coherence.servlet.AbstractHttpSessionCollection$GlobalScopeController. The session-cache-config.xml file has only this item added:
        <replicated-scheme>
            <scheme-name>default-replicated</scheme-name>
            <service-name>ReplicatedCache</service-name>
            <backing-map-scheme>
                <class-scheme>
                    <scheme-ref>default-backing-map</scheme-ref>
                </class-scheme>
            </backing-map-scheme>
        </replicated-scheme>
        <class-scheme>
            <scheme-name>default-backing-map</scheme-name>
            <class-name>com.tangosol.util.SafeHashMap</class-name>
        </class-scheme>
Any help or light would be greatly appreciated. Thanks in advance.

Depending on the version of WebLogic (which unfortunately I cannot remember off of the top of my head), you don't have to use the installer, because WebLogic has added built-in Coherence*Web support. Have you checked the WebLogic documentation for using Coherence*Web?
Peace,
Cameron Purdy | Oracle Coherence
http://coherence.oracle.com/

Similar Messages

  • How to use coherence-web with a struts form bean

    We are trying to switch to Glassfish 3.1 but when we switch the persistence-type from "replicated" to "coherence-web" our struts applications start failing.  The first time we try the application the page loads.  But all calls from then on end in error.  The form bean is called FbCustomer.  Any help is greatly appreciated!!  Here is the error....
    WARNING: StandardWrapperValve[action]: PWC1406: Servlet.service() for servlet action threw exception(Wrapped) java.io.IOException: readObject failed: java.lang.ClassNotFoundException: rav.einvoice.web.forms.FbCustomer
        at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:270)
        at java.io.ObjectInputStream.resolveClass(ObjectInputStream.java:623)
        at com.tangosol.io.ResolvingObjectInputStream.resolveClass(ResolvingObjectInputStream.java:66)
        at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610)
        at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515)
        at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769)
        at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348)
        at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370)
        at com.tangosol.util.ExternalizableHelper.readSerializable(ExternalizableHelper.java:2217)
        at com.tangosol.util.ExternalizableHelper.readObjectInternal(ExternalizableHelper.java:2348)
        at com.tangosol.util.ExternalizableHelper.deserializeInternal(ExternalizableHelper.java:2746)
        at com.tangosol.util.ExternalizableHelper.fromBinary(ExternalizableHelper.java:262)
        at com.tangosol.coherence.servlet.OptimizedHolder.deserializeValue(OptimizedHolder.java:233)
        at com.tangosol.coherence.servlet.OptimizedHolder.getValue(OptimizedHolder.java:64)
        at com.tangosol.coherence.servlet.SplittableHolder.getValue(SplittableHolder.java:56)
        at com.tangosol.coherence.servlet.AbstractHttpSessionModel.getAttribute(AbstractHttpSessionModel.java:130)
        at com.tangosol.coherence.servlet.api23.HttpSessionImpl.getAttribute(HttpSessionImpl.java:81)
        at com.tangosol.coherence.servlet.glassfish31.CoherenceWebSession.getAttribute(CoherenceWebSession.java:461)
        at com.tangosol.coherence.servlet.glassfish31.CoherenceWebSessionFacade.getAttribute(CoherenceWebSessionFacade.java:87)
        at org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:777)
        at org.apache.struts.action.RequestProcessor.processActionForm(RequestProcessor.java:364)
        at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:253)
        at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
        at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:770)
        at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1554)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:280)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
        at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)
        at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)
        at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
        at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:864)
        at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:761)
        at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1050)
        at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:231)
        at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
        at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
        at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
        at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
        at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
        at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
        at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
        at java.lang.Thread.run(Thread.java:724)ClassLoader: java.net.URLClassLoader@695f18fe
        at com.tangosol.util.ExternalizableHelper.fromBinary(ExternalizableHelper.java:266)
        at com.tangosol.coherence.servlet.OptimizedHolder.deserializeValue(OptimizedHolder.java:233)
        at com.tangosol.coherence.servlet.OptimizedHolder.getValue(OptimizedHolder.java:64)
        at com.tangosol.coherence.servlet.SplittableHolder.getValue(SplittableHolder.java:56)
        at com.tangosol.coherence.servlet.AbstractHttpSessionModel.getAttribute(AbstractHttpSessionModel.java:130)
        at com.tangosol.coherence.servlet.api23.HttpSessionImpl.getAttribute(HttpSessionImpl.java:81)
        at com.tangosol.coherence.servlet.glassfish31.CoherenceWebSession.getAttribute(CoherenceWebSession.java:461)
        at com.tangosol.coherence.servlet.glassfish31.CoherenceWebSessionFacade.getAttribute(CoherenceWebSessionFacade.java:87)
        at org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:777)
        at org.apache.struts.action.RequestProcessor.processActionForm(RequestProcessor.java:364)
        at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:253)
        at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
        at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:770)
        at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1554)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:280)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
        at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)
        at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)
        at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
        at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:864)
        at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:761)
        at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1050)
        at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:231)
        at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
        at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
        at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
        at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
        at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
        at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
        at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
        at java.lang.Thread.run(Thread.java:724)Caused by: java.io.IOException: readObject failed: java.lang.ClassNotFoundException: rav.einvoice.web.forms.FbCustomer
        at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:270)
        at java.io.ObjectInputStream.resolveClass(ObjectInputStream.java:623)
        at com.tangosol.io.ResolvingObjectInputStream.resolveClass(ResolvingObjectInputStream.java:66)
        at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610)
        at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515)
        at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769)
        at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348)
        at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370)
        at com.tangosol.util.ExternalizableHelper.readSerializable(ExternalizableHelper.java:2217)
        at com.tangosol.util.ExternalizableHelper.readObjectInternal(ExternalizableHelper.java:2348)
        at com.tangosol.util.ExternalizableHelper.deserializeInternal(ExternalizableHelper.java:2746)
        at com.tangosol.util.ExternalizableHelper.fromBinary(ExternalizableHelper.java:262)
        at com.tangosol.coherence.servlet.OptimizedHolder.deserializeValue(OptimizedHolder.java:233)
        at com.tangosol.coherence.servlet.OptimizedHolder.getValue(OptimizedHolder.java:64)
        at com.tangosol.coherence.servlet.SplittableHolder.getValue(SplittableHolder.java:56)
        at com.tangosol.coherence.servlet.AbstractHttpSessionModel.getAttribute(AbstractHttpSessionModel.java:130)
        at com.tangosol.coherence.servlet.api23.HttpSessionImpl.getAttribute(HttpSessionImpl.java:81)
        at com.tangosol.coherence.servlet.glassfish31.CoherenceWebSession.getAttribute(CoherenceWebSession.java:461)
        at com.tangosol.coherence.servlet.glassfish31.CoherenceWebSessionFacade.getAttribute(CoherenceWebSessionFacade.java:87)
        at org.apache.struts.util.RequestUtils.createActionForm(RequestUtils.java:777)
        at org.apache.struts.action.RequestProcessor.processActionForm(RequestProcessor.java:364)
        at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:253)
        at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
        at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:770)
        at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1554)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:280)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
        at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)
        at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)
        at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
        at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:864)
        at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:761)
        at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1050)
        at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:231)
        at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
        at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
        at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
        at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
        at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
        at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
        at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
        at java.lang.Thread.run(Thread.java:724)ClassLoader: java.net.URLClassLoader@695f18fe
        at com.tangosol.util.ExternalizableHelper.readSerializable(ExternalizableHelper.java:2225)
        at com.tangosol.util.ExternalizableHelper.readObjectInternal(ExternalizableHelper.java:2348)
        at com.tangosol.util.ExternalizableHelper.deserializeInternal(ExternalizableHelper.java:2746)
        at com.tangosol.util.ExternalizableHelper.fromBinary(ExternalizableHelper.java:262)    ... 38 more

    Could you share with is the entire stacktrace?
    It seems that your domain classes are not being founded by the classloader, and this could be a consequence of a lot of things, but in general, it is a classloader issue. Your classloader is broken by some reason. Check if dependencies are well solved, and check if there are some NoClassDefFoundErrors in the stacktrace. Sometimes when the classpath is wrong, the entire classloader brokes generating strange behaviors like this.
    Also review the steps necessary to deploy Coherence*Web on GlassFish: http://docs.oracle.com/middleware/1212/coherence/COHCW/glassfish.htm#COHCW357
    Remember for example that, different from WebLogic 12.1.2, you need to deploy coherence.jar and coherence-web.jar at your package deployment.
    Cheers,
    Ricardo Ferreira

  • Coherence*Web - SPI or Instrumentation - which better ?

    Hi,
    We were trying to deploy "Coherence*Web and Coherence Cache Cluster" to our web application.
    And we comparing which of the above methods of using Coherence*Web is better?
    I tried searching oracle blogs, wiki and forums.
    After some search, this is what i found here:
    http://coherence.oracle.com/display/COH35UG/Coherence*Web+Session+Management+Module
    In Coherence 3.5, Coherence*Web integrates with WebLogic Server and WebLogic Portal 10.3 and 9.2 MP1 using the native WebLogic session management SPI.
    The result of this tighter integration with WebLogic is :
    1. simplified installation and
    2. deployment that no longer requires application instrumentation (via the WebInstaller).
    Can anybody point out some reference or lead ?
    Thanks,
    Amol

    I found these references which tell me SPI is better performance due to native integration between Coherence and Weblogic
    References
    1. http://www.oracle.com/us/corporate/press/021490     
         Oracle Coherence 3.5 provides native integration with Oracle WebLogic Server and Oracle WebLogic Portal, dramatically boosting the performance and scalability of applications deployed on these products.
    2. http://coherence.oracle.com/display/COH35UG/Coherence*Web+and+WebLogic+Server
         The Weblogic Server Coherence*Web SPI consists of the coherence-web-spi.war file, located in the
         coherence\lib directory in the Coherence distribution.
    3. http://download.oracle.com/docs/cd/E14571_01/web.1111/e16517/activecachxample.htm#sthref140
         Coherence provides a deployable shared library, coherence-web-spi.war, that contains a native plug-in to WebLogic Server's HTTP Session Management interface.

  • Issue in creating a connection to the target GlassFish Server .

    Hi ,
    I am facing issue Creating a connection to the target GlassFish Server.
    I am using jdevelepor version 11.1.1.4.0. Here i am trying to create an application server connection.
    But in the Application navigator i couldnt able to lcate the (In the Application Server Navigator, right-click Application Servers and choose New Application Server Connection) new aplication server connection.
    In the componet palette there is IDE connection inside it the appliction server is present.When i right click on it i am able to locate the New Application Server Connection.
    But i am not able to get the the below mentioned steps,
    In the New Gallery, expand General, select Connections and then Application Server Connection, and click OK.
    In the Resource Palette, choose New > New Connections > Application Server.
    In the Create AppServer Connection dialog, on the Usage page, select Standalone Server.
    On the Name and Type page, enter a connection name.
    In the Connection Type dropdown list, choose:
    GlassFish 3.1 to create a connection to the GlassFish Server
    Click Next.
    Could you please help me on this issue.
    Thanks & regards
    Binsy

    Hi,
    So i don't need to configure this manually as per the steps.
    Then why i am getting the error when trying to deploy an EAr to glassfish?
    Steps which i followed to Deploy the EAr,
    1)I have created a ear file in JDEV.
    2)in glassfish admin console, deployed the ear by choosing the file from the deploy location.
    I am geting eror ..
    For one application i am getting
    Error occurred during deployment: Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.adf.mbean.share.connection.ADFConnectionLifeCycleCallBack.
    For another application getting the error,
    Interceptor binding contains an interceptor class name = oracle.jbo.server.svc.ServiceContextInterceptor that is not defined as an interceptor.
    Could you please help me...

  • Windows 8 , glassfish 3 installation of mobile server issues ?

    Hello every body , i have orcals 10g express installed on windows 8 , i have installed too glassfish 3.1.2.2 ,
    i have followed instruction to install the mobile server and the MDK too, but it seems that the mobile server wasn't added to glassfish as application ( domain is working )
    i have followed this tutorial
    http://www.youtube.com/watch?v=kXoVLgbY5bk
    also in the documentation didn't find what's the link to put in the browser to start the mobile server
    other issue : if my orcale uses 8080 port also glassfish server uses 8080 , that would cause problem , when glassfish started can open apex page
    thanks for your help , i was searching for another detailed tutrial but didn't find

    Mobile Server 10.3.x is not supported on Windows 8.
    thanks
    mike

  • Oracle Coherence*Web and BlazeDS: Multiple FlexSessions created for the same HttpSession

    Hi all,
    I have searched this forum and found a lot of good information from Alex Glosband and others about the infamous "Detected duplicate HTTP - based FlexSessions, generally due to the remote host disabling session cookies. Session coolkies must be enable to manage the client connection correctly." message.
    It seems, however, none of the cases are identical to ours. This is ours:
    - Resin 3.1.9
    - Oracle Coherence 3.7.1 with Coherence*Web (session replication)
    With this setup we get the "Detected duplicate HTTP..." message on the first attempt to use BlazeDS and on every subsequent call.  The same client and server code works fine in a local sessions setup.  With Coherence 3.3 (currently our production environment) it seems to occur less frequently, but still as frequent as it is a major issue for us.  It fails even with a single node using in-process distributed caching in our test setup (as well as with multi node out of process caching in our staging environment, for Coherence knowledgeable the resin app server runs with tangosol.coherence.session.localstorage=true in the first case and false in the second).
    Both the listener and message broker are mapped as "Coherence aware" in web.xml[1] so that they should use clustered sessions.
    We have been digging a bit and we found out that if we commented out lines 427 and 434 of flex.messaging.endpoints.BaseHTTPEndpoint from version 4.0.0.14931 it seems to mask the bug.  We added some logging in the setupFlexClient method and it seems that we get more or less a new FlexSession for each and every call - but they have the same cookie and thus underlying HttpSession. I.e. the list returned from flexClient.getFlexSessions() keeps growing. Thus we are not so keen on going to production with that memory leak and the above mentioned ugly hack of commenting out the detection of duplicates.
    We use request scope for the remote object, but could in theory use any scope as we do not really have any state on the object itself, it is all HttpSession state and return values that are key (logon is performed prior to doing the first blaze call, in pure forms and ajax, and it is not a timing issue in that regard we are seeing).
    Hope someone can shed some light on what can be happening. Is there any "reference testing"[2] or something when the FlexSessions are created that makes them being created as new? Where are they created?  We do not know the inner workings of the BlazeDS source, we just watched the call trace of the unwanted invalidation and found that to be line 427 of flex.messaging.endpoints.BaseHTTPEndpoint.
    Can we disable FlexSessions?  Since the flex and plain html parts of the app share the sessions, we always use FlexContext.getHttpRequest().getSession() anyway, never storing any state directly in the FlexSession or on the remote object. Or maybe there is a config option to help us with this detection (or creation) of multiple FlexSessions?
    Cheers and TIA,
    -S-
    [1] - For instance, this i the message broker servlet def:
    <servlet>
    <servlet-name>MessageBrokerServlet</servlet-name>
      <display-name>MessageBrokerServlet</display-name>
    <servlet-class>com.tangosol.coherence.servlet.api22.ServletWrapper</servlet-class>       
    <init-param>
    <param-name>coherence-servlet-class</param-name>
    <param-value>flex.messaging.MessageBrokerServlet</param-value>
    </init-param>       
    <init-param>
    <param-name>services.configuration.file</param-name>
    <param-value>/WEB-INF/flex/services-config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    [2] - As you undertstand this is speculation based on pure air, but it could be that in Coherence there was a serialization/deserialization happening somehow that would break such a test?

    Just a quick update, it seems things are running in a stable fashion (and without visible memory leaks, just keeping the latest FlexSession) with these changes in BaseHTTPEndpoint:
         * Overrides to guard against duplicate HTTP-based sessions for the same FlexClient which will occur if the remote host has disabled session
         * cookies.
         * @see AbstractEndpoint#setupFlexClient(String)
        @Override
        public FlexClient setupFlexClient(String id) {
            log.debug("setupFlexClient start id " + id);
            FlexClient flexClient = super.setupFlexClient(id);
            // Scan for duplicate HTTP-sessions and if found, invalidate them and throw a MessageException.
            // A request attribute is used to deal with batched AMF messages that arrive in a single request by trigger multiple passes through this
            // method.
            boolean duplicateSessionDetected = (FlexContext.getHttpRequest().getAttribute(REQUEST_ATTR_DUPLICATE_SESSION_FLAG) != null);
            if (!duplicateSessionDetected) {
                List<FlexSession> sessions = flexClient.getFlexSessions();
                log.debug("Client has " + sessions.size() + " sessions.");
                int n = sessions.size();
                if (n > 1) {
                    int count = 0;
                    for (int i = 0; i < n; i++) {
                        if (sessions.get(i) instanceof HttpFlexSession)
                            count++;
                        if (count > 1) {
                            FlexContext.getHttpRequest().setAttribute(REQUEST_ATTR_DUPLICATE_SESSION_FLAG, Boolean.TRUE);
                            duplicateSessionDetected = true;
                            break;
            // If more than one was found, remote host isn't using session cookies. Kill all duplicate sessions and return an error.
            // Simplest to just re-scan the list given that it will be very short, but use an iterator for concurrent modification.
            int i = 0;
            if (duplicateSessionDetected) {
                List<FlexSession> sessions = flexClient.getFlexSessions();
                log.debug("Detected sessions from client: " + sessions);
                for (FlexSession session : sessions) {
                    if (session instanceof HttpFlexSession && i < sessions.size()) {
    //                    log.debug("----> sessionId: " + session.getId());
    //                    Enumeration e1 = session.getAttributeNames();
    //                    while (e1.hasMoreElements()) {
    //                        Object key = e1.nextElement();
    //                        log.debug("--------->" + key + "--------->" + session.getAttribute((String) key));
    //                    session.invalidate();
                        flexClient.sessionDestroyed(session);
                    i++;
                // Return an error to the client.
    //            DuplicateSessionException e = new DuplicateSessionException();
    //            e.setMessage(ERR_MSG_DUPLICATE_SESSIONS_DETECTED);
    //            throw e;
            return flexClient;
    It is not exactly beautiful (to say the least), but if it does the trick I might just be pragmatic enough to go with it... NB: I am of course not proposing this as a patch to this file or anything, it is just an ugly hack for our specific case, but maybe the information can help the BlazeDS team find the root cause making it incompatible with Coherence*Web.
    Will give it a test run on our staging servers.

  • ADFS 3.0 - Web Application Proxy configuration Issue

    Hi All,
    We are in the process of implementing ADFS 3.0 published to the internet for o365 Federation purposes.
    The setup consists of the following
    - 2 x windows 2012 R2 running ADFS 3.0 ( only one server presently installed and configured though)
    - 2 x Windows 2012 R2 Running Web Application Proxy (  only one server presently installed and configured though ).
    There is an F5 Big-IP load-balancer for both internal and external interfaces and it has been configured after a lot of issues with the SNI part on the F5.
    So, in short the setup is now a single server hosting ADFS 3.0 using SQL and a single WAP server, however the traffic to these servers are still going through the LB.
    Now the issue is that i cannot complete the installation/configuration of the Web Application Proxy server. There is  a firewall in between our DMZ and the internal network. I can reach the internal services via the following url and telnet on port 443
    to the federation service as well. (ports for 443 and 80) are opened to internal network on the load balancer ip . I can reach https://fs.domain.com/adfs/ls/idpinitiatedsignon.aspx and federationmetadata/2007-06/federationmetadata.xml location as well
    from the Web APplication proxy server without any issues or certificate prompts at all.
    When i do the configuration for WAP, i use the same account which was used as a service account for the ADFS service internally. If i use a local admin account, it errors out with another message stating the connection was closed.
    The certificate on the internal server along with its private key was exported and has been imported on the WAP server . This is not internal CA, instead we are using DIGICERT SSL with SAN Names for enterprise registration and work folders. Hence the CA Chain
    issue is ruled out and also this is not a wild card certificate.
    When the wizard starts configuring, it does establish the trust with the federation service which is shown up in the event viewer with  EventID 391 within 15 seconds i get another event id 422 which states that it cannot retrieve the proxy configuration
    and eventid 276 on the Federation server which states the authentication failure. this continues until the servers stops to try configuring the wizard. 
    I have read all the available threads on the 3.0 WAP installation /configuraiton problem and tried all the steps possible but i am still stuck with this issue.
    There is one more part that i noticed on the ADFS server, that the self signed services for the token-encrypting and token decrypting are self-signed certificates. Also, in the certificates it was showing up as not trusted. and i installed them to the TRUSTED
    ROOT CERTIFICATION STORE after wich i cannot see any private key showing up when viewing the certificate which means i cannot get the MANAGE PRIVATE keys option when right clicking on the cert to assign read permissions for the ADFS service account.
    Should i assign the same SSL sertificate (SAN based for enterpriseregistration & Workfolders) to the token-encrypting and token-decrypting services in ADFS console or should i leave them as self signed ? I did read that self-signed is not recommended for
    production environment ? If not the same certificate what are the requirements for the certificate ?
    I am not sure what I am missing in the configuration that is causing this issue. The WAP servers are not part of the domain and have also ensured the time synchronization between the domain machine as well.
    The service name is fs.domain.com on both the internal and external DNS ( we have domain.com as a zone in DNS internally as well ). I am able to Authenticate inside and from the WAP server when accessing the link.
    Could it be a Load Balancer Configuration ? [i will try eliminating this from the configuration]
    Let me know if there are any options that i can try to resolve this and get the configuration working.
    Cheers,

    Does the load balancer pass the certificate session through to the ADFS server or are you offloading SSL. SSL offload does not work with WAP/ADFS integration (at least at the time of writing it does not).
    Can you try through the load balancer with SSL pass through turned off please.
    Also as ADFS 3.0 (Server 2012 R2) uses Server Name Indication (SNI) then any health checks that run on the load balancer must support this, so if they do not then you need to use TCP 443 checks for a listening port, as doing a standard HTTPS check will fail,
    and if the load balancer fails its checks whilst you are configuring ADFS that might be a reason why it has gone offline for you (error 442 is to do with failure to swap client certificates between WAP and ADFS).
    Finally, check the June update to Server 2012 R2 (http://support.microsoft.com/kb/2964735) as that has fixed some certificate issues with multiple servers for WAP and ADFS when you don't have the
    2012 R2 AD schema in place.
    Brian Reid
    Exchange MVP and Exchange and  Office 365 Certified Master
    www.c7solutions.com
    Brian Reid C7 Solutions Ltd (www.c7solutions.com)

  • Error while creating sites on entire site collection - the file you are attempting to save or retrieved has been blocked from this web site by server administrator

    Hi,
    I am trying to create a new sub site. Everytime I try to create the site I get this error:
    the file you are attempting to save or retrieved has been blocked from this web site by server administrator
    This applies to almost all site templates except the "blank site" template. I am logged in as System Administrator.

    Issue resolved!
    Don't know how but somehow, xml was added to the Blocked file types. Removing the entry did the trick.

  • Unable to start  GlassFish server V3.01 on Windows 7 64 bit

    Hello All,
    I am receiving the below error message when trying to start the glassfish server.
    I have windows firewall turned on + microsoft security essentials (no other firewall is running).
    I have done some research in forums and checked the following things as per suggestions:
    1. checked that localhost 127.0.0.1 is present in hosts file
    2. windows firewall is configured to allow java and glassfish processes
    3. glassfish domain.xml is configured for the 64-bit jvm .
    Please, can anybody help to resolve the issue?
    [#|2011-02-16T22:55:52.443+0000|SEVERE|glassfish3.0.1|grizzly|
    ThreadID=18;Thre
    adName=Thread-16;|doSelect IOException
    java.io.IOException: Unable to establish loopback connection
    at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:106)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.nio.ch.PipeImpl.<init>(PipeImpl.java:122)
    at
    sun.nio.ch.SelectorProviderImpl.openPipe(SelectorProviderImpl.java:27
    at java.nio.channels.Pipe.open(Pipe.java:133)
    at
    sun.nio.ch.WindowsSelectorImpl.<init>(WindowsSelectorImpl.java:104)
    at
    sun.nio.ch.WindowsSelectorProvider.openSelector(WindowsSelectorProvid
    er.java:26)
    at java.nio.channels.Selector.open(Selector.java:209)
    at com.sun.grizzly.util.Utils.openSelector(Utils.java:100)
    at
    com.sun.grizzly.TCPSelectorHandler.initSelector(TCPSelectorHandler.ja
    va:399)
    at
    com.sun.grizzly.TCPSelectorHandler.preSelect(TCPSelectorHandler.java:
    379)
    at
    com.sun.grizzly.SelectorHandlerRunner.doSelect(SelectorHandlerRunner.
    java:183)
    at
    com.sun.grizzly.SelectorHandlerRunner.run(SelectorHandlerRunner.java:
    130)
    at java.util.concurrent.ThreadPoolExecutor
    $Worker.runTask(ThreadPoolExec
    utor.java:886)
    at java.util.concurrent.ThreadPoolExecutor
    $Worker.run(ThreadPoolExecutor
    .java:908)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.net.ConnectException: Connection refused: connect
    at sun.nio.ch.Net.connect(Native Method)
    at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:
    500)
    at java.nio.channels.SocketChannel.open(SocketChannel.java:
    146)
    at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:78)
    ... 15 more
    |#]

    Hi all,
    Found the exact root cause:
    Old installation of Avast firewall.
    on my laptop I used Avast internet security and then removed it sometime ago. But some avast entries in registry were still left and also there was a windows service for Avast.
    I found this out because I have a win 7 32-bit netbook where I was got same exception (Unable to establish loopback connection) yesterday when i tried to start glassfish.
    So i deleted all avast registry entries and removed the avast service, then I could start the Glassfish server successfully.
    So no surprise why it worked on my new Win 7 installation on original laptop as it was a clean format n reinstall.
    Prash

  • HP Connected server issues

    My printer has been working well *. since I purchased it earlier this year. until about a week ago when I upgraded to the next level Instant Ink plan. Since then when I try to print the display on the printer shows a rotating circle with the word Printing. This remains for around 2 minutes, without printing anything, and then I get a message on the display that tells me that "The printer cannot connect to HP Connected". At the same time I get a pop up on my PC that "warns me" that the printer cannot connect to HP Connected and that this may cause my printer to stop printing. The terrible message concludes with the meaningless "OK" statement, having urged me to follow the printer's on screen display to make the connection.  When I try to follow the instructions on the printer it merely confirms that the printer is connected. I usually cancel out of the setup and then, as if by magic, whatever I tried to print suddenly starts printing.  So, my questions are?
    1) Is this a common or at least know problem?
    2) Is it caused by my having changed Instant Ink plans and if so what has HP done to cause this?
    3) I have not knowingly changed anything on my system other than the HP Instank Ink plan so why does the printer no longer connect to the HP Connected server to update that system with details of my print usage?
    4) Is there a fix/workaround that will prevent me from having to manually coax my printer to work again?
    I have already used the HP Updates function and have reset/restarted both the wireless router and my PC.
    * I do occasionally get messages saying that the scan function isn't available because it's lost connectivity but this seems to rectify itself without having to do anything else.

    Hello GaryG888,
    Welcome to the HP Support Forums!
    Thank you for the very informative post. With that great info I think I know what has happened. Over the weekend (24th, 25th & 26th) there had been Web Service server issues. As of right now, here is the fix and or workaround: Re: How do I correct the date on my HP Envy 4500?
    Please follow up and let me know if this helps you.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • J2ee in 620 Web AS  Dialog server is not coming up

    Hi all,
    We have installed new 620 WEB AS  dialog server  in same host as CI ,  Installtion completed successfully i am not able to see the ports and j2ee in SMICM.. it showing as True for J2ee configured  but ports are not there and J2ee operational is False..
    I have checked the sapinst    for prots file and able to see them ..
    I am giving the dev_disp & dev_w17 trace files info below/
    Please suggest  .....
    Thanks,
    Subhash.G
    Dev_disp.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    trc file: "dev_disp", trc level: 1, release: "640"
    Wed Jan  6 17:59:41 2010
    kernel runs with dp version 131(ext=102) (@(#) DPLIB-INT-VERSION-131)
    length of sys_adm_ext is 312 bytes
    sysno      07
    sid        UWX
    systemid   370 (SUN on SPARC CPU with Solaris 2.2)
    relno      6400
    patchlevel 0
    patchno    139
    intno      20020600
    make:      single threaded, ASCII, 64 bit
    pid        19525
    ***LOG Q00=> DpSapEnvInit, DPStart (07 19525) [dpxxdisp.c   1098]
         shared lib "dw_xml.so" version 139 successfully loaded
         shared lib "dw_xtc.so" version 139 successfully loaded
         shared lib "dw_stl.so" version 139 successfully loaded
         shared lib "dw_gui.so" version 139 successfully loaded
         shared lib "dw_mdm.so" version 139 successfully loaded
    MtxInit: -2 0 0
    DpSysAdmExtInit: ABAP is active
    DpIPCInit2: start server >uxgfdv11_UWX_07                         <
    DpShMCreate: sizeof(wp_adm)          15408     (856)
    DpShMCreate: sizeof(tm_adm)          77455488     (15488)
    DpShMCreate: sizeof(wp_ca_adm)          444400     (88)
    DpShMCreate: sizeof(appc_ca_adm)     444400     (88)
    DpShMCreate: sizeof(comm_adm)          1728000     (432)
    DpShMCreate: sizeof(vmc_adm)          0     (504)
    DpShMCreate: sizeof(wall_adm)          (560040/862312/80/104)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: ffffffff6f800000, size: 81516600)
    DpShMCreate: allocated sys_adm at ffffffff6f800000
    DpShMCreate: allocated wp_adm at ffffffff6f8018d8
    DpShMCreate: allocated tm_adm_list at ffffffff6f805508
    DpShMCreate: allocated tm_adm at ffffffff6f805530
    DpShMCreate: allocated wp_ca_adm at ffffffff741e35b0
    DpShMCreate: allocated appc_ca_adm at ffffffff7424fda0
    DpShMCreate: allocated comm_adm_list at ffffffff742bc590
    DpShMCreate: allocated comm_adm at ffffffff742bc5a8
    DpShMCreate: allocated vmc_adm_list at ffffffff744623a8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at ffffffff744623d0
    DpShMCreate: allocated wall_adm at ffffffff744623d8
    Wed Jan  6 17:59:42 2010
    MBUF state OFF
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    Using implementation std
    EsIUnamFileMapInit: ES base = 0xfffffffd58c00000
    EsStdInit: Extended Memory 8192 MB allocated
    <ES> 2047 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 19529
      argv[0] = /usr/sap/UWX/D07/j2ee/cluster/dispatcher/go
      argv[1] = go
      argv[2] = -DCONNECT_PORT=47851
      argv[3] = -DLISTEN_PORT=47852
      argv[4] = -DSAPSYSTEM=07
      argv[5] = -DSAPSYSTEMNAME=UWX
      argv[6] = -DSAPMYNAME=uxgfdv11_UWX_07
      argv[7] = -DSAPPROFILE=/usr/sap/UWX/SYS/profile/UWX_D07_uxgfdv11
      argv[8] = -DFRFC_FALLBACK=ON
      argv[9] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE dispatcher node
    DpJ2eeStart: j2ee state = STARTED
    Wed Jan  6 17:59:49 2010
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( uxgfuwx) [dpxxdisp.c   9977]
    DpStartStopMsg: send start message (myname is >uxgfdv11_UWX_07                         <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    DpJ2eeLogin: j2ee state = CONNECTED
    Release check o.K.
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1025]
    MBUF state ACTIVE
    Wed Jan  6 17:59:50 2010
    DpModState: change server state from STARTING to ACTIVE
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Dev_w17
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    rc file: "dev_w17", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M
    M sysno      07
    M sid        UWX
    M systemid   370 (SUN on SPARC CPU with Solaris 2.2)
    M relno      6400
    M patchlevel 0
    M patchno    139
    M intno      20020600
    M make:      single threaded, ASCII, 64 bit
    M pid        19613
    M

    M Wed Jan  6 17:59:49 2010
    M  ***LOG Q01=> tskh_init, WPStart (Workproc17 1 19613) [thxxhead.c   1146]
    M  calling db_connect ...
    C  Got ORACLE_HOME=/oracle/UWX/102_64 from environment
    C  got NLS_LANG='AMERICAN_AMERICA.WE8DEC' from environment
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPUWD's password
    C  Connecting as /@UWX on connection 0 (nls_hdl 0) ... (dbsl 640 221106)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1  104f33560  104f3c540  104f3bed8
    C  Attaching to DB Server UWX (con_hdl=0,svchp=104f3be08,svrhp=104f3e2e8)
    C  Starting user session (con_hdl=0,svchp=104f3be08,srvhp=104f3e2e8,usrhp=104f47d80)
    C  Now '/@UWX' is connected (con_hdl 0, nls_hdl 0).
    C  Got SAPUWD's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Close user session (con_hdl=0,svchp=104f3be08,usrhp=104f47d80)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPUWD/<pwd>@UWX on connection 0 (nls_hdl 0) ... (dbsl 640 221106)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1  104f33560  104f3c540  104f3bed8
    C  Starting user session (con_hdl=0,svchp=104f3be08,srvhp=104f3e2e8,usrhp=104f47d80)
    C  Now 'SAPUWD/<pwd>@UWX' is connected (con_hdl 0, nls_hdl 0).
    C  Database NLS settings: AMERICAN_AMERICA.WE8DEC
    C  DB instance UWX is running on uxgfdv11 with ORACLE version 10.2.0.4.0 since JAN 06, 2010, 14:59:54
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20100106 175949 uxgfdv11       
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif
    I  MtxInit: 17 0 0
    M  SHM_PRES_BUF               (addr: fffffffd50c00000, size: 45000000)
    M  SHM_ROLL_AREA          (addr: fffffffd48800000, size: 134217728)
    M  SHM_PAGING_AREA          (addr: fffffffd40400000, size: 134217728)
    M  SHM_ROLL_ADM               (addr: ffffffff77b42000, size: 2672386)
    M  SHM_PAGING_ADM          (addr: ffffffff6f600000, size: 656416)
    I  Profile configuration error detected, use temporary corrected setup
    I  Shared Pool 40: ipc/shm_psize_40 = 642000000 (too small)
    I  Shared Pool 40: (smaller than min requirement 685904088)
    I  Shared Pool 40: (estimated size assumed 690000000)
    M  ThCreateNoBuffer          allocated 352144 bytes for 1000 entries at fffffffd17004000
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 7440 bytes (50 server) at ffffffff6f500000
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 17 initializing ....
    X  Using implementation std
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 17, WP_CNT = 18, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: fffffffd0a800100, size: 200000000, end: fffffffd166bc300)
    B  dbtbxbuf: Buffer TABLP (addr: fffffffd09400100, size: 20480000, end: fffffffd0a788100)
    B  dbexpbuf: Buffer EIBUF (addr: fffffffcff400108, size: 163840000, end: fffffffd09040108)
    B  dbexpbuf: Buffer ESM   (addr: fffffffcfec00108, size: 4194304, end: fffffffcff000108)
    B  dbexpbuf: Buffer CUA   (addr: fffffffd3a652108, size: 5120000, end: fffffffd3ab34108)
    B  dbexpbuf: Buffer OTR   (addr: fffffffcfe400108, size: 4194304, end: fffffffcfe800108)
    M  rdisp/reinitialize_code_page -> 0
    M  icm/accept_remote_trace_level -> 0
    M  rdisp/no_hooks_for_sqlbreak -> 0
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.

    S Wed Jan  6 17:59:50 2010
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 1053234a0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at fffffffd3ab38060
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at fffffffd3ab386d8
    S    using messages for server info
    S  size of spec char cache entry: 165024 bytes (timeout 100 sec)
    S  size of open spool request entry: 1184 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Fragment Size too small: 73 MB, reducing # of fragments
    A  System page size: 8kb, total admin_size: 11328kb, dir_size: 11272kb.
    A  Attached to PXA (address fffffffcebc00000, size 300000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=fffffffd5911e000 leng=20938752 end=fffffffd5a516000)
    A  >> Shm MMADM area (addr=fffffffd5933e9c0 leng=144960 end=fffffffd59362000)
    A  >> Shm MMDAT area (addr=fffffffd59364000 leng=18554880 end=fffffffd5a516000)
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 1
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC abap/SIGCHILD_default not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    A  Hotpackage version: 54
    M  ThrCreateShObjects          allocated 18772 bytes at ffffffff5ae00000
    N  SsfSapSecin: putenv(SECUDIR=/usr/sap/UWX/D07/sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is /usr/sap/UWX/SYS/exe/run/libsapcrypto.so .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    W  =================================================
    W  === ipl_Init() called
    W    ITSP Running against db release 620!
    W    ITSP Disable Kernel Web GUI functionality
    W  === ipl_Init() returns 2, ITSPE_DISABLED: Service is disabled (sapparam)
    W  =================================================
    B  dbtran INFO (init_connection '<DEFAULT>' [ORACLE:640.00]):
    B   max_blocking_factor =   5,  max_in_blocking_factor      =   5,
    B   min_blocking_factor =   5,  min_in_blocking_factor      =   5,
    B   prefer_union_all    =   0,  prefer_union_for_select_all =   0,
    B   prefer_fix_blocking =   0,  prefer_in_itab_opt          =   1,
    B   convert AVG         =   0,  alias table FUPD            =   0,
    B   escape_as_literal   =   1,  opt GE LE to BETWEEN        =   0,
    B   select *            =0x0f,  character encoding          =SBCS / <none>:-,
    B   use_hints           = abap->1, dbif->0x1, upto->2147483647, rule_in->0,
    B                         rule_fae->0, concat_fae->0, concat_fae_or->0
    S  using action cache size 20 (prof=20)
    S  creating spool memory service RSPO-ACTIONS at fffffffd3ab3d5e8
    S  catch mode for rspo_rperf disabled

    L Wed Jan  6 18:01:09 2010
    L  Auto-Deletion of spool requests: Disabled, note 498668

    L Wed Jan  6 18:07:09 2010
    L  Auto-Deletion of spool requests: Disabled, note 498668

    L Wed Jan  6 18:13:09 2010
    L  Auto-Deletion of spool requests: Disabled, note 498668

    L Wed Jan  6 18:18:10 2010
    L  Auto-Deletion of spool requests: Disabled, note 498668

    L Wed Jan  6 18:24:10 2010
    L  Auto-Deletion of spool requests: Disabled, note 498668

    L Wed Jan  6 18:30:10 2010
    L  Auto-Deletion of spool requests: Disabled, note 498668

    L Wed Jan  6 18:36:10 2010
    L  Auto-Deletion of spool requests: Disabled, note 498668

    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    Dear Subhash,
    If your Ci is running then http://hostname:port should give you a start page, but if you login to perticular new instane with http://new host:new port and if this is returning some error then we can categorize as we have problem in new instance.
    Can you please paste .out logs from your work dir for new instance.
    and chek the memory settings according to following notes:
    Note 696410 - Java VM settings for EP6 on J2EE 6.20
    729178 - Java VM setting for applications running on J2EE Engine 6.20
    634689 - Central Note for Memory Issues, SAP J2EE Engine 6.20
    And specify your system configuration as well ..
    Regards
    Shailesh

  • SharePoint - Web Part - SQL Server Reporting Services Report Viewer Error.

    Hi,
    I was just having a bit of a fiddle with the differen't web-parts available to add on our local SharePoint site, and as one of my tasks is to have a report automatically open when the page is opened i thought i would try to add the web-part 'SQL Server Reporting
    Services Report Viewer' just to see the outcome.
    Now, I don't much care about viewing the report at this time, but imediately after trying to add the web part i am being displayed with an error and no matter how much i navigate away from the page or close the browser the particular link to the page i was
    trying to insert the web-part into now displays an error.
    The error simply says 'An unexpsected error has occured' with various 'Correlation ID:' each time.
    Now i have a link to other parts or subsites of that SharePoint site and they work just fine, it's just when i try to click on the page where i wanted to put the web-part in it
    still comes up with an error. This page just so happens to be the home page so it really does need to be fixed.
    Please help!?
    Many Thanks,
    Plain_Clueless

    Hi again,
    Sorry for the bother, We have now fixed the issue for the time being.. all that was needed was a simple '?contents=1' at the end of the url which takes you to a menu where you can delete the
    necessary web-part that was causing the trouble.
    As for actually implementing the report onto SharePoint.. in future i will make Dev pages instead.. and it seems i may need to contact the admin side of building so they configure 'SQL Reporting 
    Services Report Viewer' properly.
    Thanks a lot though!
    - A little less Plain_Clueless
    Plain_Clueless

  • Error when starting Glassfish Server. Password Required at localhost

    Has anyone ever seen this kind of error? This is shown when i'm trying to deploy the Glassfish Server App
    You can see Screenshots here:
    [Password Required|http://imageshack.us/photo/my-images/684/j2eeglassfish.jpg/]
    [Wrong User name and password|http://imageshack.us/photo/my-images/5/j2eeglassfish2.jpg/]
    If I type user: admin and nothing for password it works (glassfish server starts), but the server-log continues to show me this:
    Information: User [admin] host 127.0.0.1 does not have access for administration or you have typed user name and password incorrect
    If I use Anonymous Connection for Admin Command (in the Overview of Glassfish Server) The problem is not shown. Why that??

    Stop the existing IS & AS as root or kill the (ois_server,aaa_server) process manually since the pid, pid_watchdog process are catch hold by root user. Logon as normal oracle user and issue the command start_ois_sever_nptl.

  • The Document Conversions Launcher Service status on a SharePoint Server 2013 Web front-end server displays "Starting" but does not start or stop

    I have this strange error showing up from my second Web Front End Server, "The Document Conversions Load Balancer service is stuck in starting, The status showing up "Error Starting". When I lunch the start, it runs then went back to
    the same status "Error Starting" for the "Document Conversions Load Balancer Service". How can I get of rid this issue?

    Hi Mannyabdon,
    Based on your description, I recommend to check the things below:
    1.  Run the PowerShell command below to check the status of the Secure Store Service:
    Get-SPServiceInstance |Where {$_.typename -like "Document Conversions Load Balancer Service"}
    If it is not showing online, please stop the service first and then start it to see if the issue still occurs (the
    <ServiceGUID> can be obtained obtained from the command above).
    Stop the service:
    Stop-SPServiceInstance -Identity <ServiceGUID>
    Start the service:
    Start-SPServiceInstance -Identity <ServiceGUID>
    2.  Check the ULS log for detailed error message.
    For SharePoint 2013, by default, ULS log is at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Thanks,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to implement for coherence*web to remove an attribute of a specific sessionid?

    Hi,
    Customer using coherence*web 3.6 wants to remove an attribute in NamedCache with a specific jsessionid.
    If it is possible, please let me know how to implement it.
    Thanks in advance,
    YH

    Hi sangee,
    you could get what you want to do by using a Java Server Page instead of both a HTML page and a Servlet.
    I should code something like this:
    <%Strung color="yourColor"%>
    <html><head><title></title></head>
    <body bgcolor="<%=color%>
    </body>
    </html>

Maybe you are looking for

  • Can't print wirelessly via time capsule on a windows 7 computer

    I have an epson rx580 printer that when attached to my time capsule, I can print wirelessly with no problem on my Imac however I can't get my Sony / windows 7 laptop to print properly via the time capsule... I have installed bonjour on the laptop and

  • Windows 2008 Server R2 64 bit what version of server applications?

    Hi, I'm new here please let me know what version of the OAS [Oracle Applikation Server] is required for the server running Windows 2008 Server R2 64 bit? Server wants to use the forms. I will be grateful for links to the version. I greet.

  • PSE 7 v 11

    In PSE 7, I could hilite and open several jpegs at once in the work area to compare or move part of one into another, etc., but I can't seem to do that with PSE 11.  Can I actually still do that? Thanks for your help.

  • Javax.faces.FacesException: Missing Class: Can't load class

    Hi, I want to implement in process wizard using JSF. I have created a button panel which have "Back", "Next","Finish","Cancel" and "Help" button and also have create a process indicator which indicate the current page by highlighting. Both Buttonbar

  • Lost link to my .mac site

    I have had my domain name www.boxoflight.org automatically sending viewers to the .mac site I publish using iWeb. Two days ago, people trying to access my site got a 'can't find that site' page. The person who manages my domain name said that the add