JMS queue hes been binding during server startup but  not looking up

Hi,
I have created a queue connection factory as jms/AlertACF and destination resources as jms/AlertQueue with properties
key : imqDestinationName
value : AlertQueue
and
Physical destination as AlertQueue.
I have applied all the changes to the server instance and restrated the server instance. In the log file the startup message like
[08/Aug/2006:11:58:05] INFO ( 5768): JMS5015: Install JMS resources ...
[08/Aug/2006:11:58:06] INFO ( 5768): JMS5002: Binding [< JMS Destination: jms/AlertQueue, javax.jms.Queue, [ imqDestinationName=AlertQueue ] >]
[08/Aug/2006:11:58:06] INFO ( 5768): JMS5002: Binding [< JMS Connection Factory: jms/AlertACF, javax.jms.QueueConnectionFactory, No properties >]along with few other messages about ejb's uploaded successfully...
Now, when I run my test case to test the JMS service, i am getting
[08/Aug/2006:12:03:39] INFO ( 5768): CORE3282: stdout: javax.naming.NameNotFoundException: jms/AlertQueue.........
can anybody help me out in this.......
Thank you very much
Regards,
Mike

Hi,
I have created a queue connection factory as jms/AlertACF and destination resources as jms/AlertQueue with properties
key : imqDestinationName
value : AlertQueue
and
Physical destination as AlertQueue.
I have applied all the changes to the server instance and restrated the server instance. In the log file the startup message like
[08/Aug/2006:11:58:05] INFO ( 5768): JMS5015: Install JMS resources ...
[08/Aug/2006:11:58:06] INFO ( 5768): JMS5002: Binding [< JMS Destination: jms/AlertQueue, javax.jms.Queue, [ imqDestinationName=AlertQueue ] >]
[08/Aug/2006:11:58:06] INFO ( 5768): JMS5002: Binding [< JMS Connection Factory: jms/AlertACF, javax.jms.QueueConnectionFactory, No properties >]along with few other messages about ejb's uploaded successfully...
Now, when I run my test case to test the JMS service, i am getting
[08/Aug/2006:12:03:39] INFO ( 5768): CORE3282: stdout: javax.naming.NameNotFoundException: jms/AlertQueue.........
can anybody help me out in this.......
Thank you very much
Regards,
Mike

Similar Messages

  • Trying to create test project, and get NPE during server startup

    Hi
    I am trying to create simple test project using JSF RI (usually use myfaces), but I am getting a couple of NPE's during server startup.
    I am using :
    jetty (maven plugin)
    jsf 1.2_03
    facelets 1.1.12
    I am probably missing something simple, but I just can't figure it out.
    My web.xml:
    <?xml version = '1.0' encoding = 'ISO-8859-1'?>
    <web-app  xmlns="http://java.sun.com/xml/ns/j2ee"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
              version="2.4">
         <context-param>
              <param-name>facelets.REFRESH_PERIOD</param-name>
              <param-value>2</param-value>
         </context-param>
         <context-param>
            <param-name>facelets.LIBRARIES</param-name>
            <param-value>
                /WEB-INF/tomahawk.taglib.xml
            </param-value>
        </context-param>
         <context-param>
              <param-name>facelets.DEVELOPMENT</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
             <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
             <param-value>client</param-value>
             <!--param-value>server</param-value-->
           </context-param>
         <context-param>
              <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
              <param-value>.xhtml</param-value>
         </context-param>
         <context-param>
              <param-name>javax.faces.CONFIG_FILES</param-name>
              <!-- /WEB-INF/faces-config.xml loaded by default -->
            <param-value>
                   /WEB-INF/faces-config.xml,/WEB-INF/faces-beans.xml,/WEB-INF/faces-nav.xml
              </param-value>
         </context-param>
         <!-- JSF 1.2 RI specifc -->
         <!-- Listener implementation to handle web application lifecycle events -->
         <listener>
              <listener-class>
                   com.sun.faces.application.WebappLifecycleListener
              </listener-class>
         </listener>
         <listener>
              <listener-class>
                   com.sun.faces.config.ConfigureListener
              </listener-class>
         </listener>
         <context-param>
              <description>
                Set this flag to true if you want the JavaServer Faces
                Reference Implementation to validate the XML in your
                faces-config.xml resources against the DTD.  Default
                value is false.
            </description>
              <param-name>com.sun.faces.validateXml</param-name>
            <param-value>false</param-value>
        </context-param>
        <context-param>
             <description>
                Set this flag to true if you want the JavaServer Faces
                Reference Implementation to verify that all of the application
                objects you have configured (components, converters,
                renderers, and validators) can be successfully created.
                Default value is false.
            </description>
            <param-name>com.sun.faces.verifyObjects</param-name>
            <param-value>true</param-value>
        </context-param>
         <!-- Faces Servlet -->
         <servlet>
              <servlet-name>faces</servlet-name>
              <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <!-- Faces Servlet Mappings -->
         <servlet-mapping>
              <servlet-name>faces</servlet-name>
              <url-pattern>*.jsf</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
         </welcome-file-list>
    </web-app>My faces-config.xml :
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
                                  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
         <application>
               <!-- view-handler>
                    org.rcfaces.core.internal.facelets.FaceletViewHandler
             </view-handler-->
              <view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
              <locale-config>
                   <default-locale>en</default-locale>
              </locale-config>
         </application>
    </faces-config>My Stack traces :
    INFO: Initializing Sun's JavaServer Faces implementation (1.2_03-b09-FCS) for context '/test'
    2007-01-23 15:41:57.351::WARN:  failed ContextHandler@964130{/test,file:/C:/code/tests/rcfacesTest/src/main/webapp/}
    java.lang.NullPointerException
            at com.sun.faces.application.ApplicationAssociate.getInstance(ApplicationAssociate.java:171)
            at com.sun.faces.application.WebappLifecycleListener.handleAttributeEvent(WebappLifecycleListener.java:221)
            at com.sun.faces.application.WebappLifecycleListener.attributeReplaced(WebappLifecycleListener.java:211)
            at org.mortbay.jetty.handler.ContextHandler$Context.setAttribute(ContextHandler.java:1317)
            at com.sun.faces.config.ConfigureListener$ApplicationMap.put(ConfigureListener.java:1885)
            at com.sun.faces.renderkit.RenderKitUtils.loadSunJsfJs(RenderKitUtils.java:1076)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:468)
            at org.mortbay.jetty.handler.ContextHandler.startContext(ContextHandler.java:450)
            at org.mortbay.jetty.servlet.Context.startContext(Context.java:124)
            at org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1136)
            at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:420)
            at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:467)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156)
            at org.mortbay.jetty.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:120)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:119)
            at org.mortbay.jetty.Server.doStart(Server.java:221)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.plugin.Jetty6PluginServer.start(Jetty6PluginServer.java:134)
            at org.mortbay.jetty.plugin.AbstractJettyMojo.startJetty(AbstractJettyMojo.java:327)
            at org.mortbay.jetty.plugin.AbstractJettyMojo.execute(AbstractJettyMojo.java:272)
            at org.mortbay.jetty.plugin.AbstractJettyRunMojo.execute(AbstractJettyRunMojo.java:177)
            at org.mortbay.jetty.plugin.Jetty6RunMojo.execute(Jetty6RunMojo.java:183)
            at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:412)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:534)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:488)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:458)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:306)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:273)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:140)
            at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
            at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
            at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
            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:585)
            at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
            at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
            at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
            at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
    2007-01-23 15:41:57.367::WARN:  failed ContextHandlerCollection@91b9b0
    java.lang.NullPointerException
            at com.sun.faces.application.ApplicationAssociate.getInstance(ApplicationAssociate.java:171)
            at com.sun.faces.application.WebappLifecycleListener.handleAttributeEvent(WebappLifecycleListener.java:221)
            at com.sun.faces.application.WebappLifecycleListener.attributeReplaced(WebappLifecycleListener.java:211)
            at org.mortbay.jetty.handler.ContextHandler$Context.setAttribute(ContextHandler.java:1317)
            at com.sun.faces.config.ConfigureListener$ApplicationMap.put(ConfigureListener.java:1885)
            at com.sun.faces.renderkit.RenderKitUtils.loadSunJsfJs(RenderKitUtils.java:1076)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:468)
            at org.mortbay.jetty.handler.ContextHandler.startContext(ContextHandler.java:450)
            at org.mortbay.jetty.servlet.Context.startContext(Context.java:124)
            at org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1136)
            at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:420)
            at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:467)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156)
            at org.mortbay.jetty.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:120)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:119)
            at org.mortbay.jetty.Server.doStart(Server.java:221)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.plugin.Jetty6PluginServer.start(Jetty6PluginServer.java:134)
            at org.mortbay.jetty.plugin.AbstractJettyMojo.startJetty(AbstractJettyMojo.java:327)
            at org.mortbay.jetty.plugin.AbstractJettyMojo.execute(AbstractJettyMojo.java:272)
            at org.mortbay.jetty.plugin.AbstractJettyRunMojo.execute(AbstractJettyRunMojo.java:177)
            at org.mortbay.jetty.plugin.Jetty6RunMojo.execute(Jetty6RunMojo.java:183)
            at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:412)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:534)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:488)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:458)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:306)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:273)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:140)
            at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
            at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
            at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
            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:585)
            at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
            at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
            at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
            at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
    2007-01-23 15:41:57.367::WARN:  failed HandlerCollection@1360c93
    java.lang.NullPointerException
            at com.sun.faces.application.ApplicationAssociate.getInstance(ApplicationAssociate.java:171)
            at com.sun.faces.application.WebappLifecycleListener.handleAttributeEvent(WebappLifecycleListener.java:221)
            at com.sun.faces.application.WebappLifecycleListener.attributeReplaced(WebappLifecycleListener.java:211)
            at org.mortbay.jetty.handler.ContextHandler$Context.setAttribute(ContextHandler.java:1317)
            at com.sun.faces.config.ConfigureListener$ApplicationMap.put(ConfigureListener.java:1885)
            at com.sun.faces.renderkit.RenderKitUtils.loadSunJsfJs(RenderKitUtils.java:1076)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:468)
            at org.mortbay.jetty.handler.ContextHandler.startContext(ContextHandler.java:450)
            at org.mortbay.jetty.servlet.Context.startContext(Context.java:124)
            at org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1136)
            at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:420)
            at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:467)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156)
            at org.mortbay.jetty.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:120)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:119)
            at org.mortbay.jetty.Server.doStart(Server.java:221)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.plugin.Jetty6PluginServer.start(Jetty6PluginServer.java:134)
            at org.mortbay.jetty.plugin.AbstractJettyMojo.startJetty(AbstractJettyMojo.java:327)
            at org.mortbay.jetty.plugin.AbstractJettyMojo.execute(AbstractJettyMojo.java:272)
            at org.mortbay.jetty.plugin.AbstractJettyRunMojo.execute(AbstractJettyRunMojo.java:177)
            at org.mortbay.jetty.plugin.Jetty6RunMojo.execute(Jetty6RunMojo.java:183)
            at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:412)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:534)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:488)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:458)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:306)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:273)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:140)
            at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
            at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
            at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
            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:585)
            at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
            at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
            at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
            at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
    2007-01-23 15:41:57.523::INFO:  Started SelectChannelConnector @ 0.0.0.0:8080
    2007-01-23 15:41:57.523::WARN:  failed Server@188f506
    java.lang.NullPointerException
            at com.sun.faces.application.ApplicationAssociate.getInstance(ApplicationAssociate.java:171)
            at com.sun.faces.application.WebappLifecycleListener.handleAttributeEvent(WebappLifecycleListener.java:221)
            at com.sun.faces.application.WebappLifecycleListener.attributeReplaced(WebappLifecycleListener.java:211)
            at org.mortbay.jetty.handler.ContextHandler$Context.setAttribute(ContextHandler.java:1317)
            at com.sun.faces.config.ConfigureListener$ApplicationMap.put(ConfigureListener.java:1885)
            at com.sun.faces.renderkit.RenderKitUtils.loadSunJsfJs(RenderKitUtils.java:1076)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:468)
            at org.mortbay.jetty.handler.ContextHandler.startContext(ContextHandler.java:450)
            at org.mortbay.jetty.servlet.Context.startContext(Context.java:124)
            at org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1136)
            at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:420)
            at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:467)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156)
            at org.mortbay.jetty.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:120)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:156)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapper.java:119)
            at org.mortbay.jetty.Server.doStart(Server.java:221)
            at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:39)
            at org.mortbay.jetty.plugin.Jetty6PluginServer.start(Jetty6PluginServer.java:134)
            at org.mortbay.jetty.plugin.AbstractJettyMojo.startJetty(AbstractJettyMojo.java:327)
            at org.mortbay.jetty.plugin.AbstractJettyMojo.execute(AbstractJettyMojo.java:272)
            at org.mortbay.jetty.plugin.AbstractJettyRunMojo.execute(AbstractJettyRunMojo.java:177)
            at org.mortbay.jetty.plugin.Jetty6RunMojo.execute(Jetty6RunMojo.java:183)
            at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:412)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:534)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:488)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:458)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:306)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:273)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:140)
            at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
            at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
            at org.apache.maven.cli.MavenCli.main(MavenCli.java:256)
            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:585)
            at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
            at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
            at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
            at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
    [INFO] Jetty server exiting.Thanks,
    Mike

    This has been fixed in the RI head. Hopefully we'll be able to get a 1.2_04 out shortly.
    Please download a nightly from the RI project site and give that a shot.

  • Task Updates By Team Members In Project Server 2013 but not reflects in MSP 100% completed

    Hi,
    My problem is related to Project Server & Project Professional 2013
    My scenario is like that Project Manager publish the project plan, and respective team member get their task. And Team Member is updated the task,then send to  the Project Manager for approval. Project Manager is approved the task. But, while opening my
    project in MSP 2013, it is not synced means, in msp it is not showing task 100% completed.
    Please solve this problem, I am waiting for your response.
    Thanks
    Saikat 
    Consultant

    Hi Guillaume,
    I have tried your procedure, but not get any solution.
    Yes, two errors are showing while opening in MSP like:
    1) The following job type failed to complete, Job Type -Load. Could not load project. Please try after sometime.
    <detail><ServerExecutionFault xmlns="http://Microsoft.Office.Project.Interfaces/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Actor i:nil="true"/><LastError>1032</LastError><Message/><Source/><StackTrace/><TargetSite
    i:nil="true"/><ExceptionDetails><errinfo xmlns=""><general><class name="ProjectHasWriteLock"><error id="1030" name="ProjectHasWriteLock" uid="c9095c9e-cfbc-e411-940a-000c299e9fb7"/></class><class
    name="ProjectHasNoReadLock"><error id="1032" name="ProjectHasNoReadLock" uid="ca095c9e-cfbc-e411-940a-000c299e9fb7"/></class></general></errinfo></ExceptionDetails></ServerExecutionFault></detail>
    2) Second error are showing in Queue like "Skipped for Optimization" and "Failed But Not Blocking Corelation"
    Please give me the ultimate solution to solve this.
    Thanks and Regards
    Saikat
    Consultant.

  • I have enabled both the traces 1204 and 1222 in sql server 2008 but not able to capture deadlocks

    In Application error:
    2014-09-06 12:04:10,140 ERROR [org.apache.catalina.core.ContainerBase] Servlet.service() for servlet DoMethod threw exception
    javax.servlet.ServletException: java.lang.Exception: [ErrorCode] 0010 [ServerError] [DM_SESSION_E_DEADLOCK]error:  "Operation failed due to DBMS Deadlock error." 
    And
    I have enabled both the traces 1204 and 1222 in sql server 2008 but still I am not getting any deadlock in sql server logs.
    Thanks

    Thanks Shanky may be u believe or not but right now I am in a migration of 4 lakh documents in documentum on Production site.
    and the process from documentum is halting due to this error but I am not able to get any deadlock in the sql server while the deadlock error is coming in documentum:
    [ Date ] 2014-09-06 17:54:48,192 [ Priority ] INFO [ Text 3 ] [STDOUT] 17:54:48,192 ERROR [http-0.0.0.0-9080-3] com.bureauveritas.documentum.commons.method.SystemSessionMethod - ERROR 100: problem occured when connecting repository! DfServiceException::
    THREAD: http-0.0.0.0-9080-3; MSG: [DM_SESSION_E_DEADLOCK]error: "Operation failed due to DBMS Deadlock error."; ERRORCODE: 100; NEXT: null at com.documentum.fc.client.impl.connection.docbase.netwise.NetwiseDocbaseRpcClient.checkForDeadlock(NetwiseDocbaseRpcClient.java:276)
    at com.documentum.fc.client.impl.connection.docbase.netwise.NetwiseDocbaseRpcClient.applyForObject(NetwiseDocbaseRpcClient.java:647) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection$8.evaluate(DocbaseConnection.java:1292) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.evaluateRpc(DocbaseConnection.java:1055)
    at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.applyForObject(DocbaseConnection.java:1284) at com.documentum.fc.client.impl.docbase.DocbaseApi.authenticateUser(DocbaseApi.java:1701) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.authenticate(DocbaseConnection.java:418)
    at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.open(DocbaseConnection.java:128) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.<init>(DocbaseConnection.java:97) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnection.<init>(DocbaseConnection.java:60)
    at com.documentum.fc.client.impl.connection.docbase.DocbaseConnectionFactory.newDocbaseConnection(DocbaseConnectionFactory.java:26) at com.documentum.fc.client.impl.connection.docbase.DocbaseConnectionManager.getDocbaseConnection(DocbaseConnectionManager.java:83)
    at com.documentum.fc.client.impl.session.SessionFactory.newSession(SessionFactory.java:29) at com.documentum.fc.client.impl.session.PrincipalAwareSessionFactory.newSession(PrincipalAwareSessionFactory.java:35) at com.documentum.fc.client.impl.session.PooledSessionFactory.newSession(PooledSessionFactory.java:47)
    at com.documentum.fc.client.impl.session.SessionManager.getSessionFromFactory(SessionManager.java:111) at com.documentum.fc.client.impl.session.SessionManager.newSession(SessionManager.java:64) at com.documentum.fc.client.impl.session.SessionManager.getSession(SessionManager.java:168)
    at com.bureauveritas.documentum.commons.method.SystemSessionMethod.execute(Unknown Source) at com.documentum.mthdservlet.DfMethodRunner.runIt(Unknown Source) at com.documentum.mthdservlet.AMethodRunner.runAndReturnStatus(Unknown Source) at com.documentum.mthdservlet.DoMethod.invokeMethod(Unknown
    Source) at com.documentum.mthdservlet.DoMethod.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182) at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104) at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) at java.lang.Thread.run(Thread.java:619) (Log Path:SID CER > vmsfrndc01docpp > JMS_Log > server ,Host: vmsfrndc01docpp ,Apps: [SID CER, SID IVS])</init></init>
    Thanks

  • ICal Server running but not Running

    I'm trying to get iCal server working. It looks as if it is running from within ServerAdmin but when I try to log in to iCal from Safari I keep getting the error Unable to Access calendar, because the calendar server is not running. Any help would be great.
    Brad

    Our Ical server have stop working after 10.5.8 update.
    Show these log:
    Jun 8 21:35:30 xserve01 com.apple.launchd[1] (org.calendarserver.calendarserver): Throttling respawn: Will start in 10 seconds

  • BEA-000631 Unknown resource - during server startup

    Hi,
    Can anybody throw any light on the following message I get every time weblogic
    server starts:
    <Warning> <Common> <BEA-000631> <Unknown resource "weblogic.jdbc.common.internal.ConnectionEnv@1461b5b"
    being released to pool "fijiPool". Printing out current pool contents.>
    I am using weblogic server 8.1sp2 and BEA's Oracle Driver (Type 4 XA) via a datasource
    with 'Supports Local Transaction' set to true. The database is Oracle 9.2.
    thanks
    Martin

    Steven,
    1. Could you post configuration of the connection pool (an extract from config.xml)?
    2. Also, is it possible that a connection is stored in web session directly
    or as a field in some other object stored in a web session or a stateful
    session bean? Or just as a field?
    Regards,
    Slava Imeshev
    "Steven Ostrowski" <[email protected]> wrote in message news:[email protected]...
    I just tried graceful-shutdown again which completed successfully.
    However, I still get the same error that I showed below. So, it's not as
    simple as saying it's due to force-shutdown.
    Steven Ostrowski wrote:
    This happened once after a graceful shutdown as well.
    The reason I use force-shutdown more often is because almost every time
    I do graceful shutdown, the shutdown hangs and never completes (even if
    I turn on ignore sessions).
    Joe Weinstein wrote:
    Steven Ostrowski wrote:
    I think this would be difficult to prepare a nice example for you.
    However, here is some more debug info which shows the connection pool
    contents. I get this every time. I use force shutdown of my server
    most often.That may be a hint. I'll guess that this occurs only during/after
    force-shutdown, correct? If so, it can be safely ignored unless there
    are any other more problematic symptoms. Let me know...
    Joe
    ####<Apr 1, 2004 1:52:53 PM EST> <Info> <HTTP> <MACHINE> <demoServer>
    <main> <<WLS Kernel>> <> <BEA-101133> <Initializing Web server
    demoServer.>
    ####<Apr 1, 2004 1:52:54 PM EST> <Warning> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000631> <Unknown
    resource "weblogic.jdbc.common.internal.ConnectionEnv@1594ba3" being
    released to pool "Oracle My Connection Pool". Printing out current
    pool contents.>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> < >
    RP(Oracle My Connection Pool):dumpPool (10)>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (15) currCapacity = 1>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (20) dumping avlList #entries
    = 1>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (30) avlList[0] =
    weblogic.common.resourcepool.PooledResourceWrapper@ae2d66>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (55) dumping unavlList
    #entries = 0>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (90) dumping resvList #entries
    = 0>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> < <
    RP:(Oracle My Connection Pool):dumpPool (130)>
    ####<Apr 1, 2004 1:52:54 PM EST> <Warning> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000631> <Unknown
    resource "weblogic.jdbc.common.internal.ConnectionEnv@1594ba3" being
    released to pool "Oracle My Connection Pool". Printing out current
    pool contents.>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> < >
    RP(Oracle My Connection Pool):dumpPool (10)>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (15) currCapacity = 1>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (20) dumping avlList #entries
    = 1>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (30) avlList[0] =
    weblogic.common.resourcepool.PooledResourceWrapper@ae2d66>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (55) dumping unavlList
    #entries = 0>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> <
    RP(Oracle My Connection Pool):dumpPool (90) dumping resvList #entries
    = 0>
    ####<Apr 1, 2004 1:52:54 PM EST> <Debug> <Common> <MACHINE>
    <demoServer> <ExecuteThread: '12' for queue:
    'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-000610> < <
    RP:(Oracle My Connection Pool):dumpPool (130)>
    Joe Weinstein wrote:
    Steven Ostrowski wrote:
    I'm having this same issue now with BEA's Oracle Driver. Anyone
    figure this out?Hi. This is odd. How often does this occur? Can you repeat it easily?
    Thanks,
    Joe
    I'll certainly help get this cleared up if you can duplicate it and
    wil run a diagnostic patch...
    Martin wrote:
    Yes, I read the error description but was not absolutely sure of
    it's meaning.
    Does it mean that a forced server shutdown could cause this message?
    thanks
    Martin
    "bob" <[email protected]> wrote:
    Have you seen this URL?
    http://e-docs.bea.com/wls/docs81/messages/Common.html#BEA-000631
    "Martin" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    Can anybody throw any light on the following message I get every
    timeweblogic
    server starts:
    <Warning> <Common> <BEA-000631> <Unknown resource"weblogic.jdbc.common.internal.ConnectionEnv@1461b5b"
    being released to pool "fijiPool". Printing out current pool
    contents.>
    I am using weblogic server 8.1sp2 and BEA's Oracle Driver (Type
    4 XA)via
    a datasource
    with 'Supports Local Transaction' set to true. The database is
    Oracle9.2.
    thanks
    Martin

  • Help required in changing the default page during server startup

    I am using JSF 1.1 and BEA Workshop Studio 3.3 on WebLogic 9.2. When ever I start or restart my server, by default the application opens up in Internet Explorer with url http://localhost:7001/. I appreciate if someone can let me know if it is possible to change the url to open up my home page.
    To be precise I would like to open http://localhost:7001/pages/home.jsf instead of http://localhost:7001/ when the server starts or restarts. Any help is highly appreciated.
    Thanks.
    ~SirG

    Set the context root to "/" in application server's configuration and define a welcome-file in webapplication's web.xml.

  • Managed server startup script not reading login info from boot.properties

    To encrypt the username and password in weblogic admin server, I used a boot.properties file and setting some properties like StoreBootIdentity=true. This works as expected.
    Now, I have a weblogic managed server within the same folder i.e.
    under /bea/user_projects/domains/mydomain
    To get the similar behaviour on this managed server, I created a boot1.properties file and set the following in the startup script
    java -Djava.compiler=NONE -ms200m -mx200m $HOTSPOT_OPTIONS -classpath $CLASSPATH -Dweblogic.Domain=mydomain -Dweblogic.Name=$SERVER_NAME -Dweblogic.management.server=$ADMIN_URL -Djava.security.policy==$WL_HOME/server/lib/weblogic.policy -DRCP_PROPS=/data/css/adixit/samsung/scc612/server/cfg/RCP.props -Dlog4j.configuration=log4j.xml -Dweblogic.system.BootIdentityFile=/bea/user_projects/domains/mydomain/boot1.properties -Dweblogic.RootDirectory=/bea/user_projects/domains/mydomain weblogic.Server
    When I run the script I get the following :-
    <Jan 24, 2005 3:41:44 PM GMT+05:30> <Info> <Security> <BEA-090065> <Getting boot identity from user.>
    Enter username to boot WebLogic server:
    Why is it not able to pick the username and password from the boot1.properties file ? Any clues ? What settings can I change to make it work ?
    Thanks in advance.

    Being that you posted this problem a few months ago, I am assuming you found the cause of your problem. I too experienced this same symptom (boot.properties not being read) when trying to start a managed server on a different server than the admin JVM. I found the resolution in the following documentation:
    http://e-docs.bea.com/wls/docs81/ConsoleHelp/startstop.html#BootIdentityFiles
    Basically, you have to copy the SerializedSystemIni.dat from the server that the admin JVM is on to the secondary server where the managed JVM is going to run. I was able to do as the link says (add the boot.properties file with plain text passwords and have it encrypted). Hope this helps you or someone else down the road.

  • Problem with NAT? can get to web server internally but not externally

    We are trying to setup our helpdesk software website so external users
    can access it. However, we have been unsuccessful. We don't have any
    issues accessing it internally from our 10.1.1.X LAN
    We have had our ISP setup a public DNS "A" record of
    customerservice.amerinet-gpo.com which resolves to 198.88.234.40 and that
    appears to be working.
    Next we added a NAT to our Firewall to take 198.88.234.40 traffic and put
    it to the local IP of 10.1.1.23 which is our local address for the
    webserver running the helpdesk software.
    We also made sure that BM filters are allowing traffic on ports 80 and
    443 to the local IP as well.
    We have 4 other webservers (on a separate servers than our helpdesk
    software website) that are exposed to the outside in this same manner and
    all work fine.
    The helpdesk website is on Windows 2003 server SP1 running IIS 6.0. Our
    firewall server is NetWare 6 SP5 and BM 3.7 SP3.
    I have tried to just telnet to the public IP of 198.88.234.40 on port 80
    and it times out. I can't understand why, and have checked my entries on
    BM and even deleted and re did them 3 times to make sure I didn't make a
    mistake. I even have another web server on that block NAT'd the same way
    and it works (198.88.234.36), if you telnet to it on port 80 it goes
    right away.
    What else can I try? Any insight would be greatly appreciated!
    Thanks,
    SCOTT

    > > ok, the easiest way to calculate valid addresses is to use an IP
    subnet
    > > calculator. The one I like the most is the free utility by Wildpackets
    > >
    http://www.wildpackets.com/products/...tcalc/overview
    > >
    > > Anyway, with a 255.255.255.248 network mask the valid IP addresses
    > > associated to the primary address of your BM server are in the range:
    > > 198.88.234.33-198.88.234.38
    > > therefore .40 isn't included. Actually .40 is the subnet identifier
    of
    > a
    > > separate subnet. The addresses from .33 to .38 are the ones you can
    use.
    > >
    > > --
    > > Cat
    > > NSC Volunteer Sysop
    >
    > I was mistaken, the subnet for that block is 255.255.255.240 so I was
    > told by our ISP that our range was is 198.88.234.32 to 198.88.234.47
    or
    > 14 usable IPs since first and last are unusable.
    >
    > We have 3 different IP blocks from our ISP, the above 198.88.234.32 one
    > with the 255.255.255.240 subnet, then a 199.217.136.184 with
    > 255.255.255.248 subnet and finally a 198.88.233.1 with a
    255.255.255.248
    > subnet.
    >
    > So I think we should be able to use the 198.88.234.40 address.
    >
    > SCOTT
    >
    I was really hoping that we had the wrong sub net in BM for the
    198.88.234.32 block! When I read your post last night, I thought that's
    gotta be it...sadly I checked and it does have it as 255.255.255.240 when
    I look in inetcfg under bindings. I even checked our Cisco router as
    well to make sure it had the sub net correct since this is the first time
    I've tried to use an IP above 198.88.234.36. The router looked fine as
    well. Is there anyplace else that this could be wrong, maybe a config
    file on BM or something?
    Thx,
    SCOTT V.

  • Jco Connection works on Single server mode, but not over network?

    Hello,
    Error - com.sap.dictionary.runtime.DdException: 'XXXXXX' not properly defined! Unable to create Metadata connection for Dictionary Provider. Either the logical System Name 'XXXXXX' has not been properly defined in the System Landscape Directory, or you are not using a MsgServerDestination (AppServerDestinations are not permitted for Metadata connections
    This is the error at one of the remote machines. The JCo Connection works on the J2EE host system (while testing and pinging under the Single Server mode.)
    I believe this error will be rectified if I upgrade to SPS7, but we have certain other considerations that restrict us from doing that.
    Could someone please point out the exact location thats responsible for this if possible and maybe I could just upgrade that part and clear this?
    Thanks

    Hi,
    you should consider three  things if your java instance is on network.
    1. SLD ( check if java instance is listed on SLD and test the connection from portal to SLD.
    2. You need an entry in the services files of both the Java and ABAP servers as such:
    sapms<SID>  3600/tcp
    Remember to always have a blank line at the bottom of the services file!
    3. try to add the certificate in portal.
    if you can provide with the exact error message it would be easy to help.
    Kind regards,
    vamsi.

  • Blinking question mark folder icon on startup (but not always!)

    I recently obtained a new hard drive (Western Digital 80gb) and installed the Mac OS on a 500 mhz Cube; the DVD drive was not recognized but I removed the jumper on the drive pins rendering the disc a master and finally, the DVD drive was found so that I could perform the OS install. The problem is that if I start up the Cube after a long period of time having been OFF (e.g., 5 hours) there is the blinking question mark folder (Mac OS logo alternates with question mark). After 3-4 minutes, the startup disc is finally located. Now, if I do a cold restart a few minutes later, there is NO problem on startup. My startup issue always occurs after a longer period of time with the Cube having been OFF. There is a new battery installed, permissions are fixed, the drive checks out without problems with disc utility. What could be the problem?

    Probably your PRAM battery is gone. This stores information such as your preferred startup disk. I know you said you put in a new battery but have you actually tested it? The computer being off for several hours really, really sounds like a bad battery. Also check the terminals both on the battery and in the machine aren't corroded and it is seated correctly.
    [Texas Mac Man's PRAM, battery, PMU tutorial|http://www.geocities.com/texas_macman/pram.html]
    [Apple's PRAM reset directions|http://docs.info.apple.com/article.html?artnum=2238]
    If you have a digital multimeter you can check the condition of your present battery. It should read at least 3.2V if it is the 3.6V half-AA battery type. Ideally this should be measured while the battery is under load; added recommendation from Hans777:
    I have recently found out that an exhausted battery will still indicate >3.6 V with a high internal resistance VM.
    Checking incircuit: powercord disconnected press PMU reset button for >about 5 sec before measuring.
    Checking outside: load the battery with a 1500 Ohm resistor when measuring.
    [Resetting Cuda/PMU on Power Mac G5, Power Mac G4, Power Macintosh G3|http://docs.info.apple.com/article.html?artnum=86760]
    Message was edited by: Limnos

  • Reports work in Crystal Server XI, but not in XI Rel 2.

    Hello All. <br><br>
    We have recently migrated Crystal Reports Server from 11.0 to 11.5 (Release 2).
    While most of the reports work okay, there are some that generate an error message when we try to run them from Infoview or the Central Management Console.  They work okay on the old server, and in Developer XI:-
    <br><br>
    CrystalReportViewer<br>
    Cannot determine the queries necessary to get data for this report. Failed to retrieve data from the database. Error in File C:\WINDOWS\TEMP\{D7C16401-7B2A-4A95-AAAF-B6C16BEE11A8}.rpt: Failed to retrieve data from the database.
    ERROR: Cannot determine the queries necessary to get data for this report. Failed to retrieve data from the database. Error in File C:\WINDOWS\TEMP\{D7C16401-7B2A-4A95-AAAF-B6C16BEE11A8}.rpt: Failed to retrieve data from the database.
    <br><br>
    I've compared some of the reports, and the only difference I can see between them is, the number of Oracle SQL statements which are used.  All the reports I've checked, that don't work; have five SQL statements.  Also, when I chopped out a few fields that are used by the lookups, the report worked (this removes one the SQL statements).
    <br><br>
    Are there any changes that I need to make to web.config, machine.config or the Oracle driver settings?
    <br><br>
    I've tried searching the forums, but cannot find the same sort of problem.  (Originally, a lot of the reports were not working, but after checking the forums, I was able to change a timeout in web.config, so that was very helpful, thanks).
    <br><br>
    Thanks for looking.  I'd be really grateful for any help.
    <br><br>
    Report doesn't work<br>
    SELECT "STMAOS_Course"."ACAD_PERIOD", "STMAOS_Course"."AOS_CODE", "STMAOS_Course"."AOS_PERIOD", "STMAOS_Course"."STAGE_IND", "STCSTATD"."FULL_DESC", "STCSTATD"."AOS_TYPE", "STMAOS_Course"."STAGE_CODE", "STMAOS_Course"."ATTEND_MODE", "STCSTATD"."DEPT_CODE", "STACREDT"."APL_CREDITS", "STCSTATD"."AOS_CODE", "STMAOS_Course"."STUDENT_ID"
    FROM   ("QLSDBA"."STMAOS" "STMAOS_Course" LEFT OUTER JOIN "QLSDBA"."STACREDT" "STACREDT" ON ((("STMAOS_Course"."ACAD_PERIOD"="STACREDT"."ACAD_PERIOD") AND ("STMAOS_Course"."AOS_CODE"="STACREDT"."AOS_CODE")) AND ("STMAOS_Course"."AOS_PERIOD"="STACREDT"."AOS_PERIOD")) AND ("STMAOS_Course"."STUDENT_ID"="STACREDT"."STUDENT_ID")) INNER JOIN "QLSDBA"."STCSTATD" "STCSTATD" ON "STMAOS_Course"."AOS_CODE"="STCSTATD"."AOS_CODE"
    WHERE  "STMAOS_Course"."ACAD_PERIOD"='09/10' AND "STMAOS_Course"."STAGE_IND"='E' AND "STCSTATD"."AOS_TYPE"='C' AND ("STMAOS_Course"."STAGE_CODE"='E1RF' OR "STMAOS_Course"."STAGE_CODE"='EXAM' OR "STMAOS_Course"."STAGE_CODE"='FULL' OR "STMAOS_Course"."STAGE_CODE"='FULL2' OR "STMAOS_Course"."STAGE_CODE"='FULL3' OR "STMAOS_Course"."STAGE_CODE"='FULLE' OR "STMAOS_Course"."STAGE_CODE"='FULLR' OR "STMAOS_Course"."STAGE_CODE"='PROV') AND "STMAOS_Course"."ATTEND_MODE"='02' AND "STCSTATD"."DEPT_CODE"='A'
    ORDER BY "STMAOS_Course"."ACAD_PERIOD", "STMAOS_Course"."AOS_CODE", "STMAOS_Course"."AOS_PERIOD"
    <br><br>
    select * from qlsdba.STSCMC10
    where mapping_id = '22007042'
    <br><br>SELECT "STMBIOGR"."STUDENT_ID", "STMBIOGR"."FORENAME", "STMBIOGR"."SURNAME", "STFSTFEE"."TOTAL_FEE", "STMENDET"."DDL_FIELD2", "STMENDET"."AOS_PERIOD", "STMENDET"."AOS_CODE", "STMENDET"."ACAD_PERIOD", "STMENDET"."STUDENT_ID"
    FROM   "QLSDBA"."STMBIOGR" "STMBIOGR" CROSS JOIN ("QLSDBA"."STMENDET" "STMENDET" LEFT OUTER JOIN "QLSDBA"."STFSTFEE" "STFSTFEE" ON ((("STMENDET"."ACAD_PERIOD"="STFSTFEE"."ACAD_PERIOD") AND ("STMENDET"."STUDENT_ID"="STFSTFEE"."STUDENT_ID")) AND ("STMENDET"."AOS_CODE"="STFSTFEE"."AOS_CODE")) AND ("STMENDET"."AOS_PERIOD"="STFSTFEE"."AOS_PERIOD"))
    ORDER BY "STMBIOGR"."STUDENT_ID"
    <br><br>
    select * from QLDBA.CMPGENCD
    where mod_id = 'SAS'
    and category_id = 'DDL_FIELD2'
    <br><br>
    SELECT "STCSTDET"."COLL_SGEN2", "STCSTDET"."AOS_CODE"
    FROM   "QLSDBA"."STCSTDET" "STCSTDET"
    WHERE  "STCSTDET"."COLL_SGEN2"='U'
    <br><br><br>
    Report Works okay<br>
    SELECT "STMAOS_Module"."AOS_CODE", "STMAOS_Course"."ACAD_PERIOD", "STMAOS_Course"."AOS_CODE", "STMAOS_Course"."AOS_PERIOD", "STMAOS_Course"."STAGE_IND", "STCSTATD"."FULL_DESC", "STCSTATD"."DEPT_CODE", "STCSTATD"."AOS_TYPE", "STMAOS_Module"."STAGE_CODE", "STMAOS_Course"."STAGE_CODE", "STMAOS_Course"."ATTEND_MODE", "STACREDT"."APL_CREDITS", "STMAOS_Module"."STUDENT_ID", "STMAOS_Module"."ACAD_PERIOD", "STMAOS_Module"."AOS_PERIOD", "STCSTATD"."AOS_CODE"
    FROM   (("QLSDBA"."STMAOS" "STMAOS_Course" LEFT OUTER JOIN "QLSDBA"."STACREDT" "STACREDT" ON ((("STMAOS_Course"."ACAD_PERIOD"="STACREDT"."ACAD_PERIOD") AND ("STMAOS_Course"."AOS_CODE"="STACREDT"."AOS_CODE")) AND ("STMAOS_Course"."AOS_PERIOD"="STACREDT"."AOS_PERIOD")) AND ("STMAOS_Course"."STUDENT_ID"="STACREDT"."STUDENT_ID")) INNER JOIN "QLSDBA"."STMAOS" "STMAOS_Module" ON ((("STMAOS_Course"."STUDENT_ID"="STMAOS_Module"."STUDENT_ID") AND ("STMAOS_Course"."ACAD_PERIOD"="STMAOS_Module"."ACAD_PERIOD")) AND ("STMAOS_Course"."AOS_CODE"="STMAOS_Module"."RAOSCD_LINK")) AND ("STMAOS_Course"."AOS_PERIOD"="STMAOS_Module"."RPROCD_LINK")) INNER JOIN "QLSDBA"."STCSTATD" "STCSTATD" ON "STMAOS_Course"."AOS_CODE"="STCSTATD"."AOS_CODE"
    WHERE  "STMAOS_Course"."ACAD_PERIOD"='09/10' AND "STMAOS_Course"."STAGE_IND"='E' AND "STCSTATD"."AOS_TYPE"='C' AND ("STMAOS_Module"."STAGE_CODE"='E1RF' OR "STMAOS_Module"."STAGE_CODE"='EXAM' OR "STMAOS_Module"."STAGE_CODE"='FULL' OR "STMAOS_Module"."STAGE_CODE"='FULL2' OR "STMAOS_Module"."STAGE_CODE"='FULL3' OR "STMAOS_Module"."STAGE_CODE"='FULLE' OR "STMAOS_Module"."STAGE_CODE"='FULLR' OR "STMAOS_Module"."STAGE_CODE"='PEND' OR "STMAOS_Module"."STAGE_CODE"='PROV' OR "STMAOS_Module"."STAGE_CODE"='RECS') AND ("STMAOS_Course"."STAGE_CODE"='E1RF' OR "STMAOS_Course"."STAGE_CODE"='EXAM' OR "STMAOS_Course"."STAGE_CODE"='FULL' OR "STMAOS_Course"."STAGE_CODE"='FULL2' OR "STMAOS_Course"."STAGE_CODE"='FULL3' OR "STMAOS_Course"."STAGE_CODE"='FULLE' OR "STMAOS_Course"."STAGE_CODE"='FULLR' OR "STMAOS_Course"."STAGE_CODE"='PROV') AND "STCSTATD"."DEPT_CODE"='A' AND "STMAOS_Course"."ATTEND_MODE"<>'01'
    ORDER BY "STMAOS_Course"."ACAD_PERIOD", "STMAOS_Course"."AOS_CODE", "STMAOS_Course"."AOS_PERIOD"
    <br><br>
    select * from qlsdba.STSCMC10
    where mapping_id = '22007042'
    <br><br> SELECT "STMBIOGR"."STUDENT_ID", "STMBIOGR"."FORENAME", "STMBIOGR"."SURNAME", "STCASDET"."CREDIT_NUM", "STCSESSD"."AOS_TYPE", "STCSTDET"."COLL_SGEN2", "STRDEPRT"."DESCRIPTION", "STCSTDET"."AOS_CODE", "STRDEPRT"."DEPT_CODE", "STCASDET"."AOS_PERIOD", "STCASDET"."AOS_CODE", "STCASDET"."ACAD_PERIOD", "STCSESSD"."AOS_PERIOD", "STCSESSD"."ACAD_PERIOD", "STCSESSD"."AOS_CODE"
    FROM   ((("QLSDBA"."STCSTDET" "STCSTDET" CROSS JOIN "QLSDBA"."STRDEPRT" "STRDEPRT") CROSS JOIN "QLSDBA"."STCASDET" "STCASDET") CROSS JOIN "QLSDBA"."STCSESSD" "STCSESSD") CROSS JOIN "QLSDBA"."STMBIOGR" "STMBIOGR"
    WHERE  "STCSESSD"."AOS_TYPE"='M' AND "STCSTDET"."COLL_SGEN2"='U'
    ORDER BY "STMBIOGR"."STUDENT_ID"
    <br><br>

    Post Author: Argan
    CA Forum: .NET
    Honestly I have never used the server explorer for anything, so I am not sure what is needed for that to work.
    You need to install the Enterprise SDK on your dev box.
    Do a custom server install on your dev machine, unchecking everything except for the .NET SDK and Help files.

  • SQL Query Works in MS SQL Server 2008 but not when using Database Toolkit

    I have this SQL query:
    DECLARE @DataTypeTable TABLE (
    Name varchar(128),
    TypeID INT)
    --Add comma delimeted data type names to temp table
    INSERT INTO @DataTypeTable (Name)
    SELECT * FROM WhatWeShouldDoRead.func_Split(@DataTypeTrimmed,',')
    SELECT Name FROM @DataTypeTable
    Which takes a comma delimited string and returns the string as a table.  It works correctly in Microsoft SQL Server Management Studio.  When I run this as a stored procedure  I get back nothing.  There are no errors, SQL or otherwise.  I've verified that I am connected to the correct database and that the stored procedure is loaded by changing the no error string that is reported from this stored procedure (that code is not shown in the above example).  Has anyone seen this problem before, or have any experiance with SQL/Labview interfaces to tell me what I'm doing wrong?
    Thanks in advance. 
    Solved!
    Go to Solution.

    After doing some more research it appears that the database toolkit cannot interface with any table results from any type of temp table.  It may have to do with the fact that MS SQL 2008 stores temp tables in a seperate database (tempdb) and not the database you are currently connected to.  See this link for a good artical on temp tables:
    http://databases.aspfaq.com/database/should-i-use-a-temp-table-or-a-table-variable.html
    If possible,  I'd like a someone to prove me wrong, but for now will have to settle for exporting the contents of a temp table through a string.

  • How do i get emails to automatically delete in server account, but not in Thunderbird account?

    I have looked at the published replies but cannot find the box to instruct the server not to 'leave message on server'.

    With IMAP being server based email you will need to move your messages into a local folder on your computer before deleting them from the server. With IMAP you are just viewing the folders on the server remotely. If you delete anything that is not in a local folder it removes it completely.
    The option mentioned by Pamela is only available with a POP account.

  • COM License bridge :addons works fine on server side but not on client side

    hi,
    i'm using the com license bridge to fetch license information for my addon. When i start my addon on the server where the license bridge was installed and registered everything works fine.
    But when i start my addon at client side the following error occurs:
    System.Runtime.InteropServices.COMException(0x80040154): Retrieving
    the COM class factory for component wiht CLSID
    {80D2BE0E-15FF-4793-A4DE-0C053B19D0A} failed due to the following
    error: 80040154
    at WindowsApplication1.CLicense..ctor()
    Can anybody help me?
    thanks
    Markus

    Hi,
    The following is written in the COM License Bridge documentation in SDN (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/508623e3-425c-2910-38be-cbe56e65930c):
    "Please note that the COM License Bridge will only work on the system where the actual License Service is running."
    Regards
    Trinidad.

Maybe you are looking for