JMS transport warning when start server

When I start a WebLogic 9 server instance with one application deployed, I get the following warning message 5-6 times before the server changes its state to RUNNING:
<WSEE>Warning: JMS queue 'weblogic.wsee.DefaultQueue' is not found, as a result, Web Service async responses via jms transport is not supported. If the target service uses JMS transport, the responses will not be able to come back.<JmsQueueListener.connect:227>
Although the server instance still appears to start fine, these messages clog up the console - since I don't intend to use JMS transport with this server, is there any way to get rid of these messages?
Thanks,
David

Hai
I am using weblogic9.2. I too got the same problem in my machine. I have solved this problem by changing the configuration in the config.xml file.
Go to
<WEBLOGIC HOME>\user_projects\domains\<USER_DOMIN>\config\config.xml
Open the config.xml and check the following
<app-deployment>
<name>webservicesJwsSimpleEar</name>
<target>AdminServer</target>
<module-type>ejb</module-type>
<source-path>C:\bea\user_projects\applications\base_domain/server/examples/build/webservicesJwsSimpleEar</source-path>
<security-dd-model>DDOnly</security-dd-model>
</app-deployment>
if it is there comment this tag and save the config.xml file. Make sure that the server is not running while doing the changes. Now Start the server again.
Comment out as like follows
"<!--" <app-deployment>
<name>webservicesJwsSimpleEar</name>
<target>AdminServer</target>
<module-type>ejb</module-type>
<source-path>C:\bea\user_projects\applications\base_domain/server/examples/build/webservicesJwsSimpleEar</source-path>
<security-dd-model>DDOnly</security-dd-model>
</app-deployment> "-->"
Its working for me try this
Regards
Ramesh
Edited by ramesh.s at 04/04/2007 2:58 AM

Similar Messages

  • Error when starting server from NetWeaver Studio

    I get the following error when i start the server from NetWeaver studio. Any reason why this error pops up.
    Problem Occurred:
    Startting Server - SAP Server E<24> (Time of error.....)
    Reason :
    JsfOpenAdmin failed: object not found.
    However I can start and stop the server from the management console.
    thanks,
    Sahir
    Edited by: Sahir Pathan on Jul 14, 2008 5:30 PM

    Hello Sahir,
    Can you post some other error logs ?
    Regards,
    Siddhesh

  • "ThreadPool has stuck threads" - Warning while starting server soa 11.1.1.3

    Hi,
    When we are trying to restart the server its taking lot of time (nearly 2 hrs) and admin server status is showing as "Warning". when we check Monitoring -> Health for admin server we can see as "Thread Pool as stuck threads".
    When clicked on "threadpool", can see "ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" and current request is for "weblogic.kernel.WorkManagerWrapper$1@6ce46ce4" thread.
    Any solution for what to do.
    Thanks,
    RR

    Further Updates on this :
    I further debugged and found out few more things. This might help.
    In Weblogic Admin console Home > Summary of Deployments >oracle-bam(11.1.1)
    MDB application oracle-bam is NOT connected to messaging system with below error.
    EJBs
    MessageDispatcherBean - Error java.lang.IllegalArgumentException: Getting Deployment configuration...
    connectionFactoryJNDIName - Red Cross with warning
    destinationJNDIName - Red Cross with warning
    resourceAdapterJNDIName - Red Cross with warning
    Modules
    Also please check out another similar thread and please update.
    BAMAdapter Issue : java.rmi.ConnectException: Destination unreachable;
    Thanks,
    Sagar

  • Loading Server_Stub When Starting Server

    Is it possible to have a Remote Server Class ***Stub.class, that does not reside in the local classpath but rather the codebase or any http server?  I would like to call: (java -D.... ServerImpl args) and before I export myself within ServerImpl, I use a URLConnection or something to get ServerImplStub from a remote location and load into the local JVM so the Stub is found when I start the Remote Server.
    So you know, I do not use rmiregistry, I start my server like this: (simple example)
    import java.rmi.server.ObjID;
    import java.rmi.RemoteException;
    import sun.rmi.transport.LiveRef;
    import sun.rmi.server.UnicastServerRef;
    public class BigDogImpl extends UnicastRemoteRef implements BigDog
         public static void main(String[] args) throws Exception
              // do some stuf none related here
             new BigDogImpl();
         public BigDogImpl() throws Exception
              super(new LiveRef(new ObjID(999), 1099));
              // right here our maybe in main, load the BigDigImpl_Stub via http into local jvm??
              // the idea is to have loaded the stub file from a remote location and made it available to JVM so this line works
              exportObject(this, null);
              while(true)
                   try{ Thread.currentThread().sleep(Long.MAX_VALUE); }
                   catch(Exception e)[}
         // BigDog interface definitions here
    // The client would get a RemoteRef like this:
    // all clients export pieces of themselves, so they define the same codebase as server
    // becuase of this, I can use RMIClassLoader.getClassAnnotation(Class remoteClass) for codebase
    Class stub = RMIClassLoader.loadClass(RMIClassLoader.getClassAnnotation(clientClass), "BigDogImpl_Stub");
    Constructor stubConstructor = stub.getConstructor(new Class[]{RemoteRef.class});
    LiveRef liveRef = new LiveRef(new ObjID(999), new TCPEndpoint("host", 1099), false);
    RemoteRef[] remoteRef = {(RemoteRef)(new UnicastRef(liveRef))};
    BigDog bigDog = (BigDog)stubConstructor.newInstance(remoteRef);
    bigDog.bigBark();By the way, the above forbidden code has worked since jdk1.2 so I have been lucky the API has not changed. If it does, I dont have to change much! I mean, the above code is what runs when implementing a public API RemoteServer and Client. I use it becuase it removes a point of failure, RMIREGISTRY. No matter how stable it may or may not be, it is still something extra to ensure is working properly.

    I have figured this out by overridding a method within UnicastServerRef called setSkeleton(). This is the method which is responsible for creating the RemoteStub object utilizing default class loader. So naturally the one I need to adjust.
    public RemoteStub setSkeleton(Remote remote) throws RemoteException
         try
              URLClassLoader loader = new URLClassLoader(new URL[]{CODEBASE)});
              Class c = loader.loadClass(remote.getClass().getName() + "_Stub");
              Constructor constructor = c.getConstructor(new Class[]{RemoteRef.class});
              return (RemoteStub)constructor.newInstance(new Object[]{getClientRef()});
         catch(Exception e)
              throw new RemoteException("", e);
    }My implementation is a combination of UnicastServerRef's setSkeleton and RemoteProxy.getStub(). setKeleton calls RemoteProxy.getStub() which is where my StubNotFoundException was generated. So All i did was bypass this process by overriding setSkeleton().
    // UnicastServerRef.setSkeleton() returns this
    return RemoteProxy.getStub(.....);
    So now I only need to maintain stub files in the codebase. No remote server needs them locally.
    If anyone knows how this can be done with a custom classloader and public API, I'm all ears.

  • Error in logs when starting server

    Hi,
    when i am trying to start my app server on sunone. I am getting the following errors in the logs.
    CORE1116: Sun ONE Application Server 7.0.0_01
    SEVERE: CORE1227: NSS initialization failed: SEC_ERROR_BAD_DATABASE: Problem using certificate or key database: Certificate database: /apps/sunone/sun-appserver7/var/domains/domain1/nicks-8033/config/cert7.db.
    Thus any one knows why this error comes. I have installed a SSL certificate on this server. Can it be that this certificate has not been installed properly.
    Nikhil

    Ok, I finally got it figured out.
    I needed the original (to that HTTP Server ) modplsql.dll.
    There was no PATH issue.
    Once I got the oracle_apache.conf calling plsql.conf and marvel.conf, using the correct DADs, I was all set. I post my solutions to save others some grief.
    The original Service Temporarily Unavailable message (Mozilla) was due to the fact that the HTMLDB_PUBLIC_USER account was locked after my upgrade.
    Along the way, I ran into an access Forbidden error, which was caused by the incorrect password in the DAD.
    Two simple things - unlock the HTMLDB_PUBLIC_USER acount, and of course make sure the DADs are correct.
    And as soon as I can I will be contacting Anton to combine all into one HTTP Server -thanks!

  • Error  when starting server -urgent

    Hi friends
    When I try to start the weblogic server I am getting thre following error message
    at the console. Everything was working fine last week.
    I create the .ear file from websphere studio and move to the applications directory
    under weblogic.
    The error says failed on recompiling JSP's , I tried to turn off that option but
    after I start the server it comes back again
    Please advise
    -INF\lib\design_pro51224.jar;C:\bea\user_projects\backorderDomain\.\boServer\.wl
    notdelete\_appsdir_backorder_ear_backorderWeb.war_1579863\jarfiles\WEB-INF\lib\e
    tools51225.jar;C:\bea\user_projects\D
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Win32Process.java:61)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:546)
    at java.lang.Runtime.exec(Runtime.java:472)
    at java.lang.Runtime.exec(Runtime.java:438)
    at weblogic.utils.Executable.exec(Executable.java:208)
    at weblogic.utils.Executable.exec(Executable.java:133)
    at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvo
    ker.java:545)
    at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:
    354)
    at weblogic.servlet.jsp.Precompiler.compileOne(Precompiler.java:205)
    at weblogic.servlet.jsp.Precompiler.compile(Precompiler.java:55)
    at weblogic.servlet.internal.WebAppServletContext.precompileJSPs(WebAppS
    ervletContext.java:4133)
    at weblogic.servlet.internal.WebAppServletContext.precompileJSPs(WebAppS
    ervletContext.java:4126)
    at weblogic.servlet.internal.WebAppServletContext.prepareFromDescriptors
    (WebAppServletContext.java:1932)
    at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletCont
    ext.java:1065)
    at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletCo
    ntext.java:1001)
    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:467)
    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:318)
    at weblogic.j2ee.J2EEApplicationContainer.prepareWebModule(J2EEApplicati
    onContainer.java:1476)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContain
    er.java:652)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContain
    er.java:552)
    at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(Sla
    veDeployer.java:1056)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDep
    loyer.java:724)
    at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHan
    dler.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    >
    <Jul 21, 2003 2:47:03 PM EDT> <Error> <Deployer> <149201> <The Slave Deployer
    fa
    iled to complete the deployment task with id 1 for the application appsdirback
    order_ear.
    weblogic.management.ApplicationException: Prepare failed. Task Id = 0
    Module Name: backorderWeb.war, Error: Could not load backorderWeb.war: weblogic.
    utils.NestedException: appsdirbackorder_ear:backorderWeb.war Failure while Pre
    compiling JSPs: java.io.IOException: Compiler failed executable.exec(java.lang.S
    tring[e:\opt\weblogic\7.0\jdk131_02\bin\javac, -classpath, "C:\bea\jdk131_03\jre
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I figured it out
    problem with the javac classpath for JSP
    "DN" <[email protected]> wrote:
    >
    Hi friends
    When I try to start the weblogic server I am getting thre following
    error message
    at the console. Everything was working fine last week.
    I create the .ear file from websphere studio and move to the applications
    directory
    under weblogic.
    The error says failed on recompiling JSP's , I tried to turn off that
    option but
    after I start the server it comes back again
    Please advise
    -INF\lib\design_pro51224.jar;C:\bea\user_projects\backorderDomain\.\boServer\.wl
    notdelete\_appsdir_backorder_ear_backorderWeb.war_1579863\jarfiles\WEB-INF\lib\e
    tools51225.jar;C:\bea\user_projects\D
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Win32Process.java:61)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:546)
    at java.lang.Runtime.exec(Runtime.java:472)
    at java.lang.Runtime.exec(Runtime.java:438)
    at weblogic.utils.Executable.exec(Executable.java:208)
    at weblogic.utils.Executable.exec(Executable.java:133)
    at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvo
    ker.java:545)
    at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:
    354)
    at weblogic.servlet.jsp.Precompiler.compileOne(Precompiler.java:205)
    at weblogic.servlet.jsp.Precompiler.compile(Precompiler.java:55)
    at weblogic.servlet.internal.WebAppServletContext.precompileJSPs(WebAppS
    ervletContext.java:4133)
    at weblogic.servlet.internal.WebAppServletContext.precompileJSPs(WebAppS
    ervletContext.java:4126)
    at weblogic.servlet.internal.WebAppServletContext.prepareFromDescriptors
    (WebAppServletContext.java:1932)
    at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletCont
    ext.java:1065)
    at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletCo
    ntext.java:1001)
    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:467)
    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:318)
    at weblogic.j2ee.J2EEApplicationContainer.prepareWebModule(J2EEApplicati
    onContainer.java:1476)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContain
    er.java:652)
    at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContain
    er.java:552)
    at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(Sla
    veDeployer.java:1056)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDep
    loyer.java:724)
    at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHan
    dler.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    >
    <Jul 21, 2003 2:47:03 PM EDT> <Error> <Deployer> <149201> <The Slave
    Deployer
    fa
    iled to complete the deployment task with id 1 for the application appsdirback
    order_ear.
    weblogic.management.ApplicationException: Prepare failed. Task Id = 0
    Module Name: backorderWeb.war, Error: Could not load backorderWeb.war:
    weblogic.
    utils.NestedException: appsdirbackorder_ear:backorderWeb.war Failure
    while Pre
    compiling JSPs: java.io.IOException: Compiler failed executable.exec(java.lang.S
    tring[e:\opt\weblogic\7.0\jdk131_02\bin\javac, -classpath, "C:\bea\jdk131_03\jre

  • J2EE PetStore Application -- RDBMSException when starting server

    Folks,
    I'm trying to install Sun's J2EE PetStore application using the instructions at: http://developer.java.sun.com/developer/technicalArticles/Programming/deployathon2/BEAreadme.html#dlapp
    When I attempt to start the WebLogic server using the "startPetStore.cmd" file, I receive the exception below. Has anyone got any helpful advice to offer?
    Thanks,
    -=Helen=-
    Thu Sep 21 12:28:47 EDT 2000:<I> <WebLogicServer> Loaded License : C:/weblogic/license/WebLogicLicense.xml
    Thu Sep 21 12:28:47 EDT 2000:<I> <WebLogicServer> Server loading from weblogic.class.path. EJB redeployment enabled.
    Unable to initialize server: com.bea.estore.rdbmsrealm.RDBMSException: realm initialization failed, action 'DriverManager.getConnection', - with nested exception:
    [SQL Exception: Failed to start database 'petStoreDB', see the next exception for details.]
    fatal initialization exception
    com.bea.estore.rdbmsrealm.RDBMSException: realm initialization failed, action 'DriverManager.getConnection', - with nested exception:
    [SQL Exception: Failed to start database 'petStoreDB', see the next exception for details.]
    at com.bea.estore.rdbmsrealm.RDBMSDelegate.<init>(RDBMSDelegate.java:169)
    at com.bea.estore.rdbmsrealm.RDBMSDelegate$DFactory.newInstance(RDBMSDelegate.java:912)
    at weblogic.utils.reuse.Pool.getInstance(Pool.java:57)
    at com.bea.estore.rdbmsrealm.RDBMSRealm.getDelegate(RDBMSRealm.java:115)
    at com.bea.estore.rdbmsrealm.RDBMSRealm.getPermission(RDBMSRealm.java:515)
    at weblogic.security.acl.CachingRealm.getPermission(CachingRealm.java:1698)
    at weblogic.security.acl.CachingRealm.setupAcls(CachingRealm.java:757)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:706)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:564)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1747)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1084)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)

    I had the same problem. I ran this as a batch file to update the petStoreDB and it worked thereafter.
    java -classpath c:\weblogic\eval\cloudscape\lib\cloudscape.jar;C:\jdk1.2.2;c:\weblogic\weblogic510sp3.jar;c:\weblogic\classes;c:\weblogic\lib\weblogicaux.jar;c:\weblogic\license;c:\weblogic\myserver\clientclasses; utils.Schema jdbc:cloudscape:petStoreDB;create=true COM.cloudscape.core.JDBCDriver -verbose c:\weblogic\petstore\WLSrc\db\petStore.ddl
    Horance Chou <[email protected]> wrote:
    I got the same problem before, and it's fixed by update new Schema.
    use utils.Schema to update the petStoreDB with <petstore>\WLSrc\db\petstore.ddl
    with Regrads.
    Horance
    Helen Seabold wrote:
    Folks,
    I'm trying to install Sun's J2EE PetStore application using the instructions at: http://developer.java.sun.com/developer/technicalArticles/Programming/deployathon2/BEAreadme.html#dlapp
    When I attempt to start the WebLogic server using the "startPetStore.cmd" file, I receive the exception below. Has anyone got any helpful advice to offer?
    Thanks,
    -=Helen=-
    Thu Sep 21 12:28:47 EDT 2000:<I> <WebLogicServer> Loaded License : C:/weblogic/license/WebLogicLicense.xml
    Thu Sep 21 12:28:47 EDT 2000:<I> <WebLogicServer> Server loading from weblogic.class.path. EJB redeployment enabled.
    Unable to initialize server: com.bea.estore.rdbmsrealm.RDBMSException: realm initialization failed, action 'DriverManager.getConnection', - with nested exception:
    [SQL Exception: Failed to start database 'petStoreDB', see the next exception for details.]
    fatal initialization exception
    com.bea.estore.rdbmsrealm.RDBMSException: realm initialization failed, action 'DriverManager.getConnection', - with nested exception:
    [SQL Exception: Failed to start database 'petStoreDB', see the next exception for details.]
    at com.bea.estore.rdbmsrealm.RDBMSDelegate.<init>(RDBMSDelegate.java:169)
    at com.bea.estore.rdbmsrealm.RDBMSDelegate$DFactory.newInstance(RDBMSDelegate.java:912)
    at weblogic.utils.reuse.Pool.getInstance(Pool.java:57)
    at com.bea.estore.rdbmsrealm.RDBMSRealm.getDelegate(RDBMSRealm.java:115)
    at com.bea.estore.rdbmsrealm.RDBMSRealm.getPermission(RDBMSRealm.java:515)
    at weblogic.security.acl.CachingRealm.getPermission(CachingRealm.java:1698)
    at weblogic.security.acl.CachingRealm.setupAcls(CachingRealm.java:757)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:706)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:564)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1747)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1084)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)

  • Gdk-WARNING when starting gVim

    I'm using awesome window manager and gVim, both are default packages from Arch Linux repos. When I start gVim, I get this funky error message, gVim pushes the termina aside (when awesome is in tiling mode) and disappears. The error message is:
    (gvim:4662): Gdk-WARNING **: Native Windows wider or taller than 65535 pixels are not supported
    (gvim:4662): Gdk-WARNING **: Native Windows wider or taller than 65535 pixels are not supported
    (gvim:4662): Gdk-WARNING **: Native Windows wider or taller than 65535 pixels are not supported
    The program 'gvim' received an X Window System error.
    This probably reflects a bug in the program.
    The error was 'BadAlloc (insufficient resources for operation)'.
    (Details: serial 300 error_code 11 request_code 53 minor_code 0)
    (Note to programmers: normally, X errors are reported asynchronously;
    that is, you will receive the error a while after causing it.
    To debug your program, run it with the --sync command line
    option to change this behavior. You can then get a meaningful
    backtrace from your debugger if you break on the gdk_x_error() function.
    I've googled around a bit, but there is nothing similar. There was just one post about some other piece of software that generates the same GDK warnings, but the only conclusion was that it's not screen-resolution-related. Can anyone point me in the right direction?

    It seems like an ibus problem. Use ibus-git in AUR instead and the warning would disappear.

  • Error When Start Weblogic Server

    I build a web application under weblogic, before I package all the project
              into a war file, it runs correctly under weblogic. But after I package it
              into a war file, when I start weblogic , it said that "Error to load
              myapplication".
              I checked my application, and found the error was caused by one line in the
              web.xml. Because I need to do some initialization when start server. I want
              one servlet to be loaded at the time when weblogic server start. There is a
              line in the web.xml like this
              " <load-on-startup>1</load-on-startup> "
              The problem is caused by this line.
              If I delete this line or just remove the number "1", the weblogic can start
              without error. But my initialization work can not be done.
              Could anyone tell me why and how to solve this problem.
              Thanks
              Jerry Chang
              

    I believe this is the error you get when you try to start up a JVM with the commandline option '-native'.
    Remove this flag from your startup script and retry.
    By the way, it may be that you have the environment variable 'JAVA_OPTIONS' set to '-native' in which case:
    (first confirm this is the case)
    $ echo $JAVA_OPTIONS
    -native
    (Then edit the startup script if you get the result above)
    add in a line:
    # To remove '-native' flag
    unset JAVA_OPTIONS
    and retry.
    I have to confess I don't know what the '-native' flag is actually supposed to do, but my JVM also reports back that this is unsupported.

  • JMS transport - weblogic changes soap:address location="jms:.. to http

    Hi,
    Please help me to configure web service to use only jms transport.
    I try to create web service that uses JMS transport.
    I started from WSDL where I placed two elements:
    <soap:binding style="document"
                   transport="http://www.openuri.org/2002/04/soap/jms" />
    and
    <soap:address location="jms://host:7041/contextPathName/serviceUriName?URI=queueName" />
    Then in web service implementation I placed following annotation:
    @WLJmsTransport(contextPath = "contextPathName", serviceUri = "serviceUriName", portName = "portName", queue = "queueName", connectionFactory = "connectionFactoryName")
    Deployment is successful but when I look at generated WSDL (Admin console) I see that weblogic has changed <soap:address location="jms:.. to <soap:address location="http....
    And when I look at monitoring I see that port is using JMS transport.
    When I try to test my service using Admin console Test client I see that the queue is not used (Admin console/monitoring/Messages total is still 0) and service uses (I suppose) http transport.

    Hi,
    Please change "http://www.openuri.org/2002/04/soap/jms" to http://www.openuri.org/2002/04/soap/jms/ for soap1.1 or http://www.openuri.org/2002/04/soap12/jms/ for soap1.2.
    There must be some mismatch between edoc and implementation.
    -LJ

  • Siebel 8.1.1 JMS transport and Oracle SOA 10.1.3.4 intregartion using AIA

    Hi
    I am trying to integrate Siebel 8.1.1. and Oracle SOA 10.1.3.4 using JMS transport. When I use method CheckJNDIContext of Business Service - EAI JMS transport through simulator I get the following message and dont see any instance open/close in SOA process. And there is no entries under "The InitialContext has the following entries" as in the logs. There should be values
    Error from the failed instance-
    enabling SLL
    Created JNDI InitialContext with
    java.naming.factory.initial = com.evermind.server.rmi.RMIInitialContextFactory
    java.naming.provider.url = opmn:ormi://hostname:6003:oc4j_soa/default
    java.naming.security.principal =
    java.naming.security.credentials =
    java.naming.security.protocol = ssl
    The InitialContext has the following entries:
    SUCCESSFUL TEST
    -- Message from successful instance which has all entries in InitialContest---
    enabling SLL
    Created JNDI InitialContext with
    java.naming.factory.initial = com.evermind.server.rmi.RMIInitialContextFactory
    java.naming.provider.url = opmn:ormi://hostname:6003:oc4j_soa/default
    java.naming.security.principal =
    java.naming.security.credentials =
    java.naming.security.protocol = ssl
    The InitialContext has the following entries:
    jmsrouter_ejb_AdminMgrBean (AdminMgrBean_RemoteHomeProxy_1nca7p1)
    ejb (javax.naming.Context)
    loc (javax.naming.Context)
    jdbc (javax.naming.Context)
    OracleASjms (javax.naming.Context)
    scheduler (javax.naming.Context)
    eis (javax.naming.Context)
    SUCCESSFUL TEST
    Please help/suggest to resolve the issue.
    Thanks

    I am officially a donut - I went back to check and I hadn't updated the siebel-data-adapter.properties for the siebel-web-determination application. DOH!
    All working now - excellent! :)

  • Error in starting server

    Hi,
    While starting a weblogic server I am getting the following error: I am using weblogic 9.1
    <Feb 13, 2007 1:47:31 PM EST> <Error> <HTTP> <BEA-101359> <The servlet weblogic.
    servlet.AsyncInitServlet init method failed while it was run in the background.
    The exception was: java.lang.ClassNotFoundException: com.bea.netuix.servlets.man
    ager.SingleFileServlet.
    java.lang.ClassNotFoundException: com.bea.netuix.servlets.manager.SingleFileServ
    let
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(Generic
    ClassLoader.java:222)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClass
    Loader.java:195)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAw
    areClassLoader.java:54)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)

    JP,
    Could you post the stack trace?
    JP wrote:
    I am getting error when starting server on linux saying JNDI not initializing JTA Exception. Please help me

  • How to avoid JMS validation when starting weblogic server

    Hi All,
    When starting up WebLogic server, it will validate JMS destinations one by one for deployed applications.
    If I don't connect the VPN, then these JMS destinations are not reachable, and WebLogic Server will spend a lot of time to try connecting to these JMS destinations.
    Thus it will take a lot of time to startup the WebLogic Server.
    How can I disable JMS validation when starting weblogic server?
    Thanks and Regards!

    Hi Daniel,
    By blank do you mean that the screen is black? Is it gray? Is it blue? The word "blank" is vague when trying to determine and isolate startup issues.

  • Apache Trinidad: Warning messages when starting WebLogic Server 10.3

    Hi,
    I'm trying to work with Trinidad in WLS / WLW 10.3. I'm using the JSF 1.1 Sun RI.
    When starting WLS the log print this warnings (I'd like to get rid of)
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ValidatorRule]{faces-config/validator} Merge(javax.faces.DoubleRange)>
    <20-02-2009 12:05:40 PM CLST> <Warning> <org.apache.commons.digester.Digester> <BEA-000000> <[ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)>
    Does anybody knows how to resolve this or why this happens?
    Thanks in advance,
    Andrés

    I think I saw these warnings before.
    Best is to ping the RI folks on their mailing list.

  • When restarting server after a crash, Messaging bridges are not starting

    Hi,
    We have Messaging bridge configured with Exactly-Once QOS to read messages from IBM Websphere MQ to Weblogic distributed Queue. We are using Weblogic 10gR3.
    1. We killed the weblogic server which was reading message from source destination(IBM MQ). We did this to check whether any message is lost when a server crashes.
    2. Then we restarted the weblogic application server and checked the weblogic messaging bridge status.
    3. The messaging bridge was not started properly and the following Exception was thrown.
    ####<Apr 22, 2010 4:09:11 PM BST> <Error> <MessagingBridge> <machineA> <desb03-ms11> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <BEA1-056A9014D88E2BE368B7> <> <12312323333> <BEA-200015> <An error occurred in bridge "BRIDGE" during the transfer of messages (javax.resource.ResourceException: Failed to setup the Resource Adapter Connection for enlistment in the transaction, Pool = 'eis/jms/WLSConnectionFactoryJNDIXA', javax.transaction.SystemException: start() failed on resource 'eis/jms/WLSConnectionFactoryJNDIXA': XAER_RMFAIL : Resource manager is unavailable
    javax.transaction.xa.XAException: Internal error: XAResource 'eis/jms/WLSConnectionFactoryJNDIXA' is unavailable
    at weblogic.transaction.internal.XAResourceDescriptor.checkResource(XAResourceDescriptor.java:941)
    at weblogic.transaction.internal.XAResourceDescriptor.startResourceUse(XAResourceDescriptor.java:630)
    at weblogic.transaction.internal.XAServerResourceInfo.start(XAServerResourceInfo.java:1182)
    at weblogic.transaction.internal.XAServerResourceInfo.xaStart(XAServerResourceInfo.java:1116)
    at weblogic.transaction.internal.XAServerResourceInfo.enlist(XAServerResourceInfo.java:275)
    at weblogic.transaction.internal.ServerTransactionImpl.enlistResource(ServerTransactionImpl.java:511)
    at weblogic.transaction.internal.ServerTransactionImpl.enlistResource(ServerTransactionImpl.java:438)
    at weblogic.connector.transaction.outbound.XATxConnectionHandler.enListResource(XATxConnectionHandler.java:118)
    at weblogic.connector.outbound.ConnectionWrapper.invoke(ConnectionWrapper.java:218)
    at $Proxy87.receive(Unknown Source)
    at weblogic.jms.bridge.internal.MessagingBridge.processMessages(MessagingBridge.java:1427)
    at weblogic.jms.bridge.internal.MessagingBridge.beginForwarding(MessagingBridge.java:1002)
    at weblogic.jms.bridge.internal.MessagingBridge.run(MessagingBridge.java:1079)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    .).>
    ####<Apr 22, 2010 4:09:11 PM BST> <Warning> <MessagingBridge> <machineA> <desb03-ms11> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271948951881> <BEA-200026> <Bridge "BRIDGE" encountered some problems in one of its adapters or underlying systems. It stopped transferring messages and will try to reconnect to the adapters shortly. (The exception caught was weblogic.jms.bridge.internal.MessagingBridgeException.)>
    ####<Apr 22, 2010 4:09:12 PM BST> <Info> <MessagingBridge> <machineA> <desb03-ms11> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271948952726> <BEA-200020> <Bridge "BRIDGE" is stopped.>
    Please give your suggestions to fix this issue.
    Thanks!
    Edited by: user11340353 on 28-Apr-2010 06:34

    Hi,
    *The server was started in warning mode and the JTA was declared unhealthy. I saw 2 transaction alive for more than 2000 seconds which is uncommon.
    *The resource adaptor was started properly.
    *We are using file store. But will it make a difference?
    Thanks!

Maybe you are looking for

  • Lack of customer care from bt

    BT go on about their excellent caring service-what a joke. ON 5TH SEPTEMBER we reported a fault with our phone only to be told there was no fault on the line it must be our equipment.We purchased a new phone still no signal or internet.Phoned bt agai

  • How do I make a media placeholder in numbers for iPad/iCloud

    How do I make a media placeholder in numbers for the iPad/iCloud also can I format the placeholder reduce the pixels of the imported image.

  • Pnp  selection screen 000 how to put default values

    Hello everybody, my question today is about PNP selection screen 000: How can i put default values in the fields w/o  using variant. or can i restrict the numbers of values returned by " get pernr" with conditions not on selection screens. thank you

  • Scroll bar does not appear in some PDF files. How can I enable it?

    Scroll bar does not appear in some PDF files. How can I enable it?

  • Office 2001 for Mac

    New user, so many questions..... But to start, Bought a used ibook, after trying open office and not liking it much,m thought I would try to install a copy of office 2001 for mac that I got from a friend. Tried to install and it says I need to run OS