Strange unmarshalling exception when starting RMI server

I've run into a strange problem when running my RMI server. It worked fine yesterday, though I made a few changes since then, none of those changes should cause this to happen, as far as I know.
Here's the exception:
java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: pub.interfaces.ClientIface
at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:385)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:240)
at sun.rmi.transport.Transport$1.run(Transport.java:153)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
at java.lang.Thread.run(Thread.java:595)
at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:343)
at sun.rmi.registry.RegistryImpl_Stub.rebind(Unknown Source)
at java.rmi.Naming.rebind(Naming.java:160)
at priv.server.TCMaster.<init>(TCMaster.java:97)
at priv.server.TCMaster.main(TCMaster.java:71)
Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: pub.interfaces.ClientIface
at sun.rmi.registry.RegistryImpl_Skel.dispatch(Unknown Source)
at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:375)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:240)
at sun.rmi.transport.Transport$1.run(Transport.java:153)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.lang.ClassNotFoundException: pub.interfaces.ClientIface
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:242)
at sun.rmi.server.LoaderHandler.loadProxyInterfaces(LoaderHandler.java:707)
at sun.rmi.server.LoaderHandler.loadProxyClass(LoaderHandler.java:651)
at sun.rmi.server.LoaderHandler.loadProxyClass(LoaderHandler.java:588)
at java.rmi.server.RMIClassLoader$2.loadProxyClass(RMIClassLoader.java:628)
at java.rmi.server.RMIClassLoader.loadProxyClass(RMIClassLoader.java:294)
at sun.rmi.server.MarshalInputStream.resolveProxyClass(MarshalInputStream.java:238)
at java.io.ObjectInputStream.readProxyDesc(ObjectInputStream.java:1494)
at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1457)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1693)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
... 9 more
pub.interfaces.ClientIface is in the SAME directory as the RMI server class! What could be causing this?
NOTE: I'm running this on Redhat Linux 9, jdk 1.5.0_04.

Usually an unmarshalling exception is caused by the classes not matching up on the server & client end. The classes are there I think, because otherwise it would have thrown a classnotfound exception instead. Can you try actually copying and pasting the classes either from the server to the client or vice versa? I've had weird issues where sometimes the compiler compiles the same class differently in different locations, so your safest bet is to make sure the client & server classes (that you're passing as arguments & returning from the server) are identical.
Good luck!

Similar Messages

  • Urgent Help Required For Starting RMI server from servlet.

    I am currently working on rmi project.
    I want to send request to remote machine(Web host) where my application is from desktop client .For that we are using RMI.
    I am writing servlet and inside it i am binding object to registry for rmi server.
    which will be deployed on remote server.
    code ....
    Registry reg;
    reg=LocateRegistry.createRegistry(1099);
    Server server=new Server("server");//class whose remote object to be accessed
    //extends unicast remote object.Implement ServerInt interface which extends Remote.
    reg.bind("server",server);
    When i am trying to access this object i am getting following exception.
    javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalExcepti
    on: error unmarshalling return; nested exception is:
            java.lang.ClassNotFoundException: ServerModule.ServerInt]
    at com.sun.jndi.rmi.registry.RegistryContext.lookup(Unknown Source)
    at com.sun.jndi.toolkit.url.GenericURLContext.lookup(Unknown Source)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at RequstReplication.main(RequstReplication.java:27)
    Caused by: java.rmi.UnmarshalException: error unmarshalling return; nested excep
    tion is:
    java.lang.ClassNotFoundException: ServerModule.ServerInt
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    ... 4 more
    Caused by: java.lang.ClassNotFoundException: ServerModule.ServerInt
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyInterfaces(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyClass(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyClass(Unknown Source)
    at java.rmi.server.RMIClassLoader$2.loadProxyClass(Unknown Source)
    at java.rmi.server.RMIClassLoader.loadProxyClass(Unknown Source)
    at sun.rmi.server.MarshalInputStream.resolveProxyClass(Unknown Source)
    at java.io.ObjectInputStream.readProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    ... 5 more
    I can access naming enumeration of registry and object bound to it.
    by following program.I shows corect objects.
    Context namingContext=new InitialContext();
    NamingEnumeration<NameClassPair> e=namingContext.list("rmi:");
    while(e.hasMore())
    System.out.println(e.next().getName());
    While when i start RMI server from simple java program i can access these objects from registry.
    I am not getting what is problem problem.Is there any other way to send request?
    Plese give quick response.

    I am currently working on rmi project.
    I want to send request to remote machine(Web host) where my application is from desktop client .For that we are using RMI.
    I am writing servlet and inside it i am binding object to registry for rmi server.
    which will be deployed on remote server.
    code ....
    Registry reg;
    reg=LocateRegistry.createRegistry(1099);
    Server server=new Server("server");//class whose remote object to be accessed
    //extends unicast remote object.Implement ServerInt interface which extends Remote.
    reg.bind("server",server);
    When i am trying to access this object i am getting following exception.
    javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalExcepti
    on: error unmarshalling return; nested exception is:
            java.lang.ClassNotFoundException: ServerModule.ServerInt]
    at com.sun.jndi.rmi.registry.RegistryContext.lookup(Unknown Source)
    at com.sun.jndi.toolkit.url.GenericURLContext.lookup(Unknown Source)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at RequstReplication.main(RequstReplication.java:27)
    Caused by: java.rmi.UnmarshalException: error unmarshalling return; nested excep
    tion is:
    java.lang.ClassNotFoundException: ServerModule.ServerInt
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    ... 4 more
    Caused by: java.lang.ClassNotFoundException: ServerModule.ServerInt
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyInterfaces(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyClass(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyClass(Unknown Source)
    at java.rmi.server.RMIClassLoader$2.loadProxyClass(Unknown Source)
    at java.rmi.server.RMIClassLoader.loadProxyClass(Unknown Source)
    at sun.rmi.server.MarshalInputStream.resolveProxyClass(Unknown Source)
    at java.io.ObjectInputStream.readProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    ... 5 more
    I can access naming enumeration of registry and object bound to it.
    by following program.I shows corect objects.
    Context namingContext=new InitialContext();
    NamingEnumeration<NameClassPair> e=namingContext.list("rmi:");
    while(e.hasMore())
    System.out.println(e.next().getName());
    While when i start RMI server from simple java program i can access these objects from registry.
    I am not getting what is problem problem.Is there any other way to send request?
    Plese give quick response.

  • Exception in starting managed server

    I am using WLS6.0 and have the exception when starting a newly created managed server.
    The admin server console prompted the attached exception messages. It seems compliant
    about security?
    If someone know what's wrong, please share with me.
    Thanks in advance!
    <Feb 8, 2001 12:01:21 PM CST> <Critical> <Log Management> <Unable to contact managed
    server - unitTest, at 202.45.228.90:8003. Domain logfile will not contain m
    essages from this server.
    java.lang.IllegalArgumentException: Invalid user name or password
    at weblogic.management.logging.DomainLogHandler.getMBeanHome(DomainLogHandler.java:281)
    at weblogic.management.logging.DomainLogHandler.subscribeToServer(DomainLogHandler.java:243)
    at weblogic.management.logging.DomainLogHandler.registerToMe(DomainLogHandler.java:183)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(RemoteMBeanServerImpl_WLSkel.java:382)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.java:103)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:17)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >

    Yes, I started both admin and managed server with 'system' user with password typed
    in password.ini file.
    I used the default NT script startWeblogic.cmd and startManagedWeblogic.cmd to start
    them.
    Command prompt 1: startWeblogic.cmd
    Command prompt 2: startManagedWeblogic.cmd newServer http://localhost:7001
    The exception message goes to admin server's console while no error message goes
    to the managed server's console.
    "Sanjeev Chopra" <[email protected]> wrote:
    Are you starting both managed and admin server with as the 'system' user
    Is the system password password provided to both servers same ?
    Please post your startup commands for both the servers.
    kf cheung <[email protected]> wrote in message
    news:[email protected]...
    I am using WLS6.0 and have the exception when starting a newly createdmanaged server.
    The admin server console prompted the attached exception messages. Itseems compliant
    about security?
    If someone know what's wrong, please share with me.
    Thanks in advance!
    <Feb 8, 2001 12:01:21 PM CST> <Critical> <Log Management> <Unable tocontact managed
    server - unitTest, at 202.45.228.90:8003. Domain logfile will not containm
    essages from this server.
    java.lang.IllegalArgumentException: Invalid user name or password
    atweblogic.management.logging.DomainLogHandler.getMBeanHome(DomainLogHandler.j
    ava:281)
    atweblogic.management.logging.DomainLogHandler.subscribeToServer(DomainLogHand
    ler.java:243)
    atweblogic.management.logging.DomainLogHandler.registerToMe(DomainLogHandler.j
    ava:183)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    ..java:559)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    atweblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(RemoteMBean
    ServerImpl_WLSkel.java:382)
    atweblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    atweblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    atweblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:103)
    atweblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    7)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >

  • Error when starting managed server

    Hi,
    I have a setup with a admin-server and a managed server. Everything
    worked fine, until one day, an exception started occurring in the logs
    when starting the managed server.
    The setup is:
    - WLS6.1SP2
    - Solaris 8, SPARC
    The exception is:
    javax.naming.NameNotFoundException: Unable to resolve
    weblogic.transaction.resources.atserver1. Resolved:
    'weblogic.transaction.resources'
    Unresolved:'atserver1' ; remaining name ''
    I've taken a look in the admin-servers JNDI-tree, and it is correct,
    it only has "weblogic.transaction.resources", and is missing the
    unresolved "atserver1" part.
    Why is it suddenly referencing this, and what can/should I do about
    it.
    The server seems to be running even with this exception.
    Full stack trace at managed server log:
    <10-06-2002 10:05:54 CEST> <Info> <Dispatcher> <Exception thrown by
    rmi server: 'weblogic.rmi.cluster.ReplicaAwareServerRef@9 - jvmid: '81
    52308822087678327S:192.168.26.196:[7551,7551,7552,7552,7551,7552,-1]:atdomain:atserver1',
    oid: '9', implementation: 'weblogic.jndi.interna
    l.RootNamingNode@6fb3d6''
    javax.naming.NameNotFoundException: Unable to resolve
    weblogic.transaction.resources.atserver1. Resolved:
    'weblogic.transaction.resources'
    Unresolved:'atserver1' ; remaining name ''
    at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:887)
    at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:219)
    at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:129)
    at weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:558)
    at weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:562)
    at weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:562)
    at weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:562)
    at weblogic.jndi.internal.RootNamingNode_WLSkel.invoke(Unknown
    Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:298)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:267)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:166)
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:92)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:112)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:262)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:229)
    at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
    at $Proxy6.list(Unknown Source)
    at weblogic.jndi.internal.WLContextImpl.list(WLContextImpl.java:153)
    at weblogic.transaction.internal.ServerCoordinatorDescriptor.refreshServer(ServerCoordinatorDescriptor.java:1008)
    at weblogic.transaction.internal.ServerCoordinatorDescriptor.access$1(ServerCoordinatorDescriptor.java:944)
    at weblogic.transaction.internal.ServerCoordinatorDescriptor$2.execute(ServerCoordinatorDescriptor.java:936)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Full server stack trace in admin server log:
    <10-06-2002 10:05:54 CEST> <Info> <Dispatcher> <Exception thrown by
    rmi server: 'weblogic.rmi.internal.BasicServerRef@10b - jvmid: '-60698
    70668923812357S:192.168.26.196:[7441,7441,7442,7442,7441,7442,-1]:atdomain:atadmin',
    oid: '267', implementation: 'weblogic.management.inte
    rnal.AdminMBeanHomeImpl@46cc9c''
    javax.management.InstanceNotFoundException:
    atdomain:Location=atserver1,Name=atserver1,Type=ServerRuntime
    at weblogic.management.internal.AdminMBeanHomeImpl.getMBean(AdminMBeanHomeImpl.java:116)
    at weblogic.management.internal.AdminMBeanHomeImpl_WLSkel.invoke(Unknown
    Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:298)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:267)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Any help appreciated!
    Regards, Per

    Hi Per
    I have problems in creating managed server in the default mydomain .Do i need
    to configure a new machine if the managed server and admin server are going to be
    in the same machine.
    I created a new machine that has the following parameters
    listen address :localhost
    Listen port :7001
    As the next step i created a server with the machine name pointing to new one, when
    i tried to start this as a managed server it gives an Error
    The WebLogic Server did not start up properly.
    Exception raised: weblogic.management.configuration.ConfigurationException: java
    .security.acl.NotOwnerException - with nested exception:
    [java.lang.IllegalAccessError: java.security.acl.NotOwnerException]
    java.lang.IllegalAccessError: java.security.acl.NotOwnerException
    at weblogic.security.acl.Realm.getRealm(Realm.java:91)
    at weblogic.security.acl.Realm.getRealm(Realm.java:36)
    at weblogic.security.acl.Realm.authenticate(Realm.java:183)
    at weblogic.security.acl.Realm.getAuthenticatedName(Realm.java:233)
    at weblogic.security.acl.internal.Security.authenticate(Security.java:12
    5)
    could you please help me on creating a managed server
    thanks in advance
    karthik
    [email protected] (Per Olesen) wrote:
    Hi,
    I have a setup with a admin-server and a managed server. Everything
    worked fine, until one day, an exception started occurring in the logs
    when starting the managed server.
    The setup is:
    - WLS6.1SP2
    - Solaris 8, SPARC
    The exception is:
    javax.naming.NameNotFoundException: Unable to resolve
    weblogic.transaction.resources.atserver1. Resolved:
    'weblogic.transaction.resources'
    Unresolved:'atserver1' ; remaining name ''
    I've taken a look in the admin-servers JNDI-tree, and it is correct,
    it only has "weblogic.transaction.resources", and is missing the
    unresolved "atserver1" part.
    Why is it suddenly referencing this, and what can/should I do about
    it.
    The server seems to be running even with this exception.
    Full stack trace at managed server log:
    <10-06-2002 10:05:54 CEST> <Info> <Dispatcher> <Exception thrown by
    rmi server: 'weblogic.rmi.cluster.ReplicaAwareServerRef@9 - jvmid: '81
    52308822087678327S:192.168.26.196:[7551,7551,7552,7552,7551,7552,-1]:atdomain:atserver1',
    oid: '9', implementation: 'weblogic.jndi.interna
    l.RootNamingNode@6fb3d6''
    javax.naming.NameNotFoundException: Unable to resolve
    weblogic.transaction.resources.atserver1. Resolved:
    'weblogic.transaction.resources'
    Unresolved:'atserver1' ; remaining name ''
    at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:887)
    at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:219)
    at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:129)
    at weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:558)
    at weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:562)
    at weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:562)
    at weblogic.jndi.internal.BasicNamingNode.list(BasicNamingNode.java:562)
    at weblogic.jndi.internal.RootNamingNode_WLSkel.invoke(Unknown
    Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:298)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:267)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:166)
    at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:92)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:112)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:262)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:229)
    at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
    at $Proxy6.list(Unknown Source)
    at weblogic.jndi.internal.WLContextImpl.list(WLContextImpl.java:153)
    at weblogic.transaction.internal.ServerCoordinatorDescriptor.refreshServer(ServerCoordinatorDescriptor.java:1008)
    at weblogic.transaction.internal.ServerCoordinatorDescriptor.access$1(ServerCoordinatorDescriptor.java:944)
    at weblogic.transaction.internal.ServerCoordinatorDescriptor$2.execute(ServerCoordinatorDescriptor.java:936)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Full server stack trace in admin server log:
    <10-06-2002 10:05:54 CEST> <Info> <Dispatcher> <Exception thrown by
    rmi server: 'weblogic.rmi.internal.BasicServerRef@10b - jvmid: '-60698
    70668923812357S:192.168.26.196:[7441,7441,7442,7442,7441,7442,-1]:atdomain:atadmin',
    oid: '267', implementation: 'weblogic.management.inte
    rnal.AdminMBeanHomeImpl@46cc9c''
    javax.management.InstanceNotFoundException:
    atdomain:Location=atserver1,Name=atserver1,Type=ServerRuntime
    at weblogic.management.internal.AdminMBeanHomeImpl.getMBean(AdminMBeanHomeImpl.java:116)
    at weblogic.management.internal.AdminMBeanHomeImpl_WLSkel.invoke(Unknown
    Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:298)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:267)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Any help appreciated!
    Regards, Per

  • Exception when starting jboss

    when i starting jboss i am getting following exceptions hot to solve it
    java.net.BindException: Address already in use: JVM_Bind
         at java.net.PlainSocketImpl.socketBind(Native Method)
         at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:331)
         at java.net.ServerSocket.bind(ServerSocket.java:309)
         at java.net.ServerSocket.<init>(ServerSocket.java:183)
         at org.jboss.web.WebServer.start(WebServer.java:160)
         at org.jboss.web.WebService.startService(WebService.java:104)
         at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:165)
         at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:398)
         at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy3.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:249)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:807)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:621)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:585)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:569)
         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:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:324)
         at org.jboss.system.server.ServerImpl.start(ServerImpl.java:221)
         at org.jboss.Main.boot(Main.java:148)
         at org.jboss.Main$1.run(Main.java:381)
         at java.lang.Thread.run(Thread.java:536)
    10:24:49,703 WARN [ServiceController] Problem starting service jboss:service=Webserver
    java.net.BindException: Address already in use: JVM_Bind
         at java.net.PlainSocketImpl.socketBind(Native Method)
         at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:331)
         at java.net.ServerSocket.bind(ServerSocket.java:309)
         at java.net.ServerSocket.<init>(ServerSocket.java:183)
         at org.jboss.web.WebServer.start(WebServer.java:160)
         at org.jboss.web.WebService.startService(WebService.java:104)
         at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:165)
         at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:398)
         at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy3.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:249)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:807)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:621)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:585)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:569)
         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:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:324)
         at org.jboss.system.server.ServerImpl.start(ServerImpl.java:221)
         at org.jboss.Main.boot(Main.java:148)
         at org.jboss.Main$1.run(Main.java:381)
         at java.lang.Thread.run(Thread.java:536)
    java.rmi.server.ExportException: Port already in use: 4444; nested exception is:
         java.net.BindException: Address already in use: JVM_Bind
         at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:243)
         at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:178)
         at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:382)
         at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:116)
         at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:145)
         at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:129)
         at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:275)
         at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:206)
         at org.jboss.invocation.jrmp.server.JRMPInvoker.exportCI(JRMPInvoker.java:422)
         at org.jboss.invocation.jrmp.server.JRMPInvoker.start(JRMPInvoker.java:263)
         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:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:398)
         at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy3.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:249)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:807)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:621)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:585)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:569)
         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:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:324)
         at org.jboss.system.server.ServerImpl.start(ServerImpl.java:221)
         at org.jboss.Main.boot(Main.java:148)
         at org.jboss.Main$1.run(Main.java:381)
         at java.lang.Thread.run(Thread.java:536)
    Caused by: java.net.BindException: Address already in use: JVM_Bind
         at java.net.PlainSocketImpl.socketBind(Native Method)
         at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:331)
         at java.net.ServerSocket.bind(ServerSocket.java:309)
         at java.net.ServerSocket.<init>(ServerSocket.java:183)
         at java.net.ServerSocket.<init>(ServerSocket.java:95)
         at sun.rmi.transport.proxy.RMIDirectSocketFactory.createServerSocket(RMIDirectSocketFactory.java:27)
         at sun.rmi.transport.proxy.RMIMasterSocketFactory.createServerSocket(RMIMasterSocketFactory.java:333)
         at sun.rmi.transport.tcp.TCPEndpoint.newServerSocket(TCPEndpoint.java:615)
         at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:231)
         ... 41 more
    10:24:50,359 WARN [ServiceController] Problem starting service jboss:service=invoker,type=jrmp
    java.rmi.ServerException: Could not bind JRMP invoker; nested exception is:
         java.rmi.server.ExportException: Port already in use: 4444; nested exception is:
         java.net.BindException: Address already in use: JVM_Bind
         at org.jboss.invocation.jrmp.server.JRMPInvoker.start(JRMPInvoker.java:284)
         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:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:398)
         at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.util.jmx.MBeanProxy.invoke(MBeanProxy.java:174)
         at $Proxy3.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:249)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:807)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:621)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:585)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:569)
         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:324)
         at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
         at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:324)
         at org.jboss.system.server.ServerImpl.start(ServerImpl.java:221)
         at org.jboss.Main.boot(Main.java:148)
         at org.jboss.Main$1.run(Main.java:381)
         at java.lang.Thread.run(Thread.java:536)
    Caused by: java.rmi.server.ExportException: Port already in use: 4444; nested exception is:
         java.net.BindException: Address already in use: JVM_Bind
         at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:243)
         at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:178)
         at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:382)
         at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:116)
         at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:145)
         at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:129)
         at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:275)
         at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:206)
         at org.jboss.invocation.jrmp.server.JRMPInvoker.exportCI(JRMPInvoker.java:422)
         at org.jboss.invocation.jrmp.server.JRMPInvoker.start(JRMPInvoker.java:263)
         ... 32 more
    Caused by: java.net.BindException: Address already in use: JVM_Bind
         at java.net.PlainSocketImpl.socketBind(Native Method)
         at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:331)
         at java.net.ServerSocket.bind(ServerSocket.java:309)
         at java.net.ServerSocket.<init>(ServerSocket.java:183)
         at java.net.ServerSocket.<init>(ServerSocket.java:95)
         at sun.rmi.transport.proxy.RMIDirectSocketFactory.createServerSocket(RMIDirectSocketFactory.java:27)
         at sun.rmi.transport.proxy.RMIMasterSocketFactory.createServerSocket(RMIMasterSocketFactory.java:333)
         at sun.rmi.transport.tcp.TCPEndpoint.newServerSocket(TCPEndpoint.java:615)
         at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:231)
    how to solve it
    plz help me
    thanks in advance

    Has anyone solved this issue as I am getting it too
    thanks
    16:35:31,078 INFO [Server] Starting JBoss (MX MicroKernel)...
    16:35:31,078 INFO [Server] Release ID: JBoss [WonderLand] 3.2.3 (build: CVSTag=
    JBoss_3_2_3 date=200311301445)
    16:35:31,078 INFO [Server] Home Dir: C:\jboss-3.2.3
    16:35:31,078 INFO [Server] Home URL: file:/C:/jboss-3.2.3/
    16:35:31,078 INFO [Server] Library URL: file:/C:/jboss-3.2.3/lib/
    16:35:31,078 INFO [Server] Patch URL: null
    16:35:31,078 INFO [Server] Server Name: default
    16:35:31,078 INFO [Server] Server Home Dir: C:\jboss-3.2.3\server\default
    16:35:31,078 INFO [Server] Server Home URL: file:/C:/jboss-3.2.3/server/default
    16:35:31,093 INFO [Server] Server Data Dir: C:\jboss-3.2.3\server\default\data
    16:35:31,093 INFO [Server] Server Temp Dir: C:\jboss-3.2.3\server\default\tmp
    16:35:31,093 INFO [Server] Server Config URL: file:/C:/jboss-3.2.3/server/defau
    lt/conf/
    16:35:31,109 INFO [Server] Server Library URL: file:/C:/jboss-3.2.3/server/defa
    ult/lib/
    16:35:31,125 INFO [Server] Root Deployment Filename: jboss-service.xml
    16:35:31,125 INFO [Server] Starting General Purpose Architecture (GPA)...
    16:35:31,359 INFO [ServerInfo] Java version: 1.4.2_03,Sun Microsystems Inc.
    16:35:31,359 INFO [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.4.2_03-b02
    ,Sun Microsystems Inc.
    16:35:31,375 INFO [ServerInfo] OS-System: Windows 2000 5.0,x86
    16:35:31,421 INFO [ServiceController] Controller MBean online
    16:35:31,515 INFO [MainDeployer] Started jboss.system:service=MainDeployer
    16:35:31,593 INFO [MainDeployer] Adding deployer: org.jboss.deployment.JARDeplo
    yer@8bdcd2
    16:35:31,593 INFO [JARDeployer] Started jboss.system:service=JARDeployer
    16:35:31,625 INFO [MainDeployer] Adding deployer: org.jboss.deployment.SARDeplo
    yer@12d263f
    16:35:31,640 INFO [SARDeployer] Started jboss.system:service=ServiceDeployer
    16:35:31,640 INFO [Server] Core system initialized
    16:35:31,656 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss
    -3.2.3/server/default/conf/jboss-service.xml
    16:35:33,625 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resour
    ce:log4j.xml
    16:35:33,890 INFO [LocalJBossServerDomain] Started jboss.management.local:j2eeT
    ype=J2EEDomain,name=Manager
    16:35:33,906 INFO [Log4jService] Started jboss.system:type=Log4jService,service
    =Logging
    16:35:33,921 INFO [WebService] Started WebServer with address: 0.0.0.0:8083
    16:35:33,921 INFO [AbstractDeploymentScanner$ScannerThread] Running
    16:35:33,937 INFO [WebService] Using RMI server codebase: http://rel-serv1:8083
    16:35:33,937 INFO [WebService] Started jboss:service=WebService
    16:35:33,953 INFO [NamingService] Starting jnp server
    16:35:34,031 INFO [NamingService] Started jnpPort=1099, rmiPort=1098, backlog=5
    0, bindAddress=/0.0.0.0, Client SocketFactory=null, Server SocketFactory=org.jbo
    ss.net.sockets.DefaultSocketFactory@ad093076
    16:35:34,062 INFO [NamingService] Listening on port 1099
    16:35:34,078 INFO [NamingService] Started jboss:service=Naming
    16:35:34,078 INFO [JNDIView] Started jboss:service=JNDIView
    16:35:34,078 INFO [SecurityConfig] Started jboss.security:service=SecurityConfi
    g
    16:35:34,125 INFO [XMLLoginConfig] Started jboss.security:service=XMLLoginConfi
    g
    16:35:34,140 INFO [JaasSecurityManagerService] Started jboss.security:service=J
    aasSecurityManager
    16:35:34,187 INFO [TransactionManagerService] Started jboss:service=Transaction
    Manager
    16:35:34,218 ERROR [JRMPInvoker] Starting failed
    java.rmi.server.ExportException: Port already in use: 4444; nested exception is:
    java.net.BindException: Address already in use: JVM_Bind
    at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:243)
    at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:178
    at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:382)
    at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:116)
    at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:14
    5)
    at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:12
    9)
    at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.
    java:275)
    at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.
    java:206)
    at org.jboss.invocation.jrmp.server.JRMPInvoker.exportCI(JRMPInvoker.jav
    a:394)
    at org.jboss.invocation.jrmp.server.JRMPInvoker.startService(JRMPInvoker
    .java:305)
    at org.jboss.invocation.jrmp.server.JRMPInvoker$1.startService(JRMPInvok
    er.java:108)
    at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:1
    92)
    at org.jboss.invocation.jrmp.server.JRMPInvoker.start(JRMPInvoker.java:5
    66)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)

  • Security Error when starting the server - WPLS 7.0

    Security Error when starting the server - WPLS 7.0
    what may be the reason ...
    console :
    BUILD SUCCESSFUL
    Total time: 3 seconds
    Starting WebLogic Server...
    <May 30, 2005 4:22:15 PM IST> <Notice> <Management> <140005> <Loading configuration C:\cpDomain\.\config.xml>
    <May 30, 2005 4:22:18 PM IST> <Info> <Logging> <000000> <FileLogger Opened at C:\cpDomain\portalServer\weblogi
    c.portalServer.log>
    <May 30, 2005 4:22:21 PM IST> <Info> <Security> <090516> <The RoleMapper provider has preexisting LDAP data.>
    <May 30, 2005 4:22:21 PM IST> <Info> <Security> <090516> <The Authorizer provider has preexisting LDAP data.>
    <May 30, 2005 4:22:21 PM IST> <Info> <Security> <090143> <The weblogic keystore provider DefaultKeyStore in re
    alm cprealm cannot be used for private keys because its configured private key keystore file wlDefaultKeyStore
    .jks does not exist.>
    <May 30, 2005 4:22:21 PM IST> <Info> <Security> <090142> <The weblogic keystore provider DefaultKeyStore in re
    alm cprealm cannot be used for trusted (root) CAs because its trusted (root) CA keystore was not configured.>
    <May 30, 2005 4:22:21 PM IST> <Notice> <Security> <090082> <Security initializing using realm cprealm.>
    <May 30, 2005 4:22:21 PM IST> <Critical> <WebLogicServer> <000364> <Server failed during initialization. Excep
    tion:java.lang.SecurityException: Authentication for user weblogic denied
    java.lang.SecurityException: Authentication for user weblogic denied
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.doBootAuthorization(SecurityServiceMan
    agerDelegateImpl.java:411)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDeleg
    ateImpl.java:539)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:917)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:723)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    >
    <May 30, 2005 4:22:21 PM IST> <Emergency> <WebLogicServer> <000342> <Unable to initialize the server: Fatal in
    itialization exception
    Throwable: java.lang.SecurityException: Authentication for user weblogic denied
    java.lang.SecurityException: Authentication for user weblogic denied
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.doBootAuthorization(SecurityServiceMan
    agerDelegateImpl.java:411)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDeleg
    ateImpl.java:539)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:917)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:723)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    >
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.SecurityException: Authentication for user weblogic denied
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.doBootAuthorization(SecurityServiceMan
    agerDelegateImpl.java:411)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDeleg
    ateImpl.java:539)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:917)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:723)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    Reason: Fatal initialization exception
    Throwable: java.lang.SecurityException: Authentication for user weblogic denied
    java.lang.SecurityException: Authentication for user weblogic denied
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.doBootAuthorization(SecurityServiceMan
    agerDelegateImpl.java:411)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDeleg
    ateImpl.java:539)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:917)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:723)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    C:\cpDomain\bin>
    Thanks
    Thanks & Regards,
    Siva VP,
    [email protected]

    Looks like you cannot connect to LDAP. Are you configured correctly?

  • 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.

  • "Not an executable or is a link" errors when starting Messaging Server

    "Not an executable or is a link" errors when starting Messaging Server
    <P>
    If Calendar Server 3.x has been installed to the same server root
    as Messaging server, it is possible that the command 'NscpMail start'
    to restart the server will return a string of errors:
    # /etc/NscpMail start
    19971207145610:Dispatch:Notification:Local Module
    (Account-Handler) is not a n executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Account-Manager) is not a n executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (AutoReply-Handler) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Configuration-Manager) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Error-Handler) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Mailbox-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Program-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (SMTP-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (SMTP-Router) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (UNIX-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (Finger-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (IMAP4-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (POP3-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (SMTP-Accept) is not an executable or is a link.
    Module not loaded.
    Startup Problem:
    Module Error-Handler is required for proper operation.
    Netscape Messaging Server Exiting!
    The Calendar server 3.x installation may have changed the permissions
    on [server-root]/bin directory from 755 to 750. Simply issue the
    command (as root) 'chmod 755 [server-root]/bin' and then start
    the server with the 'NscpMail start' command, and it should start
    without a problem.

    "Not an executable or is a link" errors when starting Messaging Server
    <P>
    If Calendar Server 3.x has been installed to the same server root
    as Messaging server, it is possible that the command 'NscpMail start'
    to restart the server will return a string of errors:
    # /etc/NscpMail start
    19971207145610:Dispatch:Notification:Local Module
    (Account-Handler) is not a n executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Account-Manager) is not a n executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (AutoReply-Handler) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Configuration-Manager) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Error-Handler) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Mailbox-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Program-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (SMTP-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (SMTP-Router) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (UNIX-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (Finger-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (IMAP4-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (POP3-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (SMTP-Accept) is not an executable or is a link.
    Module not loaded.
    Startup Problem:
    Module Error-Handler is required for proper operation.
    Netscape Messaging Server Exiting!
    The Calendar server 3.x installation may have changed the permissions
    on [server-root]/bin directory from 755 to 750. Simply issue the
    command (as root) 'chmod 755 [server-root]/bin' and then start
    the server with the 'NscpMail start' command, and it should start
    without a problem.

  • "Local Module is not an executable or is a link" when starting Messaging Server

    "Local Module is not an executable or is a link" when starting Messaging Server
    <P>
    If you see error messages like this one when you try to start Netscape
    Messaging Server:<P>
    19971009095543:Dispatch:Notification:Local Module (Account-Handler) is
    not an executable or is a link.
    Module not loaded.
    Startup Problem:
    Module Error-Handler is required for proper operation.
    Netscape Messaging Server Exiting!
    You may have a file permissions problem. This can happen if you change
    the Unix account that Messaging Server runs as. Try changing the
    permissions on the "bin" directory in your Netscape server root to make
    sure that the current Messaging Server user account has access to it
    (try granting public read and execute permissions to that directory);
    this should solve the problem.<P>

    BombingParadise wrote:
    Found out I need the latest version. I try downloading the latest version before and it keeps giving me this error saying I need to retry later. I restart my computer and try it again but I'm still getting the error >:\No you don't, Minecraft is built for Java 6.
    Amazing how you can do something as difficult as mod a game not yet built to be modded and yet not even know the basics of the basics of the command prompt, nor have the capacity to research it apparently.

  • When starting J2EE server PE8 on Linux

    When starting J2EE server PE8 on Linux Fedora Core 1, the following message is displayed:-
    "Unable to read system environment. No system environment will be used."
    1. Is there any side effect to the J2EE server PE8 performance or functionalities about this warning message?
    2. Is there any way to avoid this issuea in case it does have side effect?
    Regards,
    William

    I find libcliutil.so in $J2EE_HOME/lib and did the followings and got:-
    #> ldd libcliutil.so
    ldd: warning: you do not have execution permission for `./libcliutil.so'
    libpthread.so.0 => /lib/tls/libpthread.so.0 (0x008ad000)
    libdl.so.2 => /lib/libdl.so.2 (0x00782000)
    libcrypt.so.1 => /lib/libcrypt.so.1 (0x00433000)
    libresolv.so.2 => /lib/libresolv.so.2 (0x00913000)
    libstdc++-libc6.2-2.so.3 => not found
    libm.so.6 => /lib/tls/libm.so.6 (0x0075e000)
    libc.so.6 => /lib/tls/libc.so.6 (0x00623000)
    /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x0060b000)
    Can we infer that the warning message is displayed due to "libstdc++-libc6.2-2.so.3 => not found"?
    Regards,
    William

  • Exception thrown by rmi server

    We are getting this follwing error -
    Thu Jul 18 09:41:45 EDT 2002:<E> <Adapter> Exception thrown by rmi server: [1509
    452174786178111S10.15.3.21:[7001,7001,7002,7002,7001,-1]/3]
    java.lang.SecurityException:
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.lang.RuntimeException.<init>(Compiled Code)
    at java.lang.SecurityException.<init>(SecurityException.java:39)
    at weblogic.t3.srvr.T3Srvr.checkServerLock(T3Srvr.java:1926)
    at weblogic.jndi.internal.WLNamingManager.checkServerLock(WLNamingManage
    r.java:97)
    at weblogic.jndi.internal.RemoteContextFactoryImpl.getContext(RemoteCont
    extFactoryImpl.java:95)
    at weblogic.jndi.internal.RemoteContextFactoryImpl_WLSkel.invoke(RemoteC
    ontextFactoryImpl_WLSkel.java:55)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(Compiled Code
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(Compiled
    Co
    de)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(Compiled Code)
    Does any one has a clue about this? Thanks in advance.

    I am suffering the same problem, any fix for this problem??

  • Multicast Exception when starting a managed weblogic server.

    I receive a Multicast Exception when i try to start a managed weblogic server from the same machine on which my admin server is running.
              when i try to start a managed server from another machine then it does not allow me to do so.
              please help,
              Manish.
              

    see Sanjeev Chopra's response on 10/25/00 , subject named "
    weblogic.admin.host -- missing
    property"...
    Kumar
    John Kelvie wrote:
    I am having the same problem...any suggestions?
    "Srividhya" <[email protected]> wrote in message
    news:3a107849$[email protected]..
    Hi All,
    While starting the weblogic managed server, i get the following error:
    Starting WebLogic Server ....
    <Mon Nov 13 17:50:12 EST 2000> <Warning> <Management> <Unrecognizedproperty: ad
    min.host>
    <Mon Nov 13 17:50:15 EST 2000> <Error> <Configuration Management> <Errorconnect
    ing to admin server and initializing admin home: admin URL:t3://kerala:7001
    javax.naming.ServiceUnavailableException. Root exception isjava.rmi.NoSuchObje
    ctException: The object identified by [3] could not because found. Eitherit was
    has not been exported or it has been collected by the distributed garbagecolle
    ctor.
    atweblogic.rmi.internal.OIDManager.getServerReference(OIDManager.java:3
    78)
    atweblogic.jndi.WLInitialContextFactoryDelegate.newLocalContext(WLIniti
    alContextFactoryDelegate.java:306)
    atweblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialCon
    textFactoryDelegate.java:261)
    atweblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:230)
    at weblogic.jndi.Environment.getContext(Environment.java:129)
    atweblogic.jndi.Environment.getInitialContext(Environment.java:112)
    atweblogic.management.Admin.initializeRemoteAdminHome(Admin.java:712)
    at weblogic.management.Admin.start(Admin.java:295)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:357)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:160)
    at weblogic.Server.main(Server.java:32)
    On the admin server, it does not give any error.
    What could be the reason?
    Regards,
    Srividhya

  • Fatal initialization exception occurs when starting Managed Server

    Hi all,
    First I configured a Adminisistration server and started it. After that I added
    a another server as ManagedServer.These two points to the same Weblogic server.
    When I try to start Managed server by running the script, it gave me following
    error. _______________________________
    <Jun 25, 2001 5:25:11 PM GMT+06:00> <Emergency> <Server> <Unable to initialize
    the server: 'Fatal initialization exception Throwable: java.lang.IllegalAccessError:
    java.security.acl.NotOwnerException java.lang.IllegalAccessError: java.security.acl.NotOwnerException
    at weblogic.security.acl.Realm.getRealm(Realm.java:91) at weblogic.security.acl.Realm.getRealm(Realm.java:36)
    at weblogic.security.acl.Realm.authenticate(Realm.java:183) at weblogic.security.acl.Realm.getAuthenticatedName(Realm.java:233)
    at weblogic.security.acl.internal.Security.authenticate(Security.java:116) at
    weblogic.jndi.WLInitialContextFactoryDelegate.pushUser(WLInitialContextFactoryDelegate.java:444)
    at weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:287)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:259)
    at weblogic.jndi.Environment.getContext(Environment.java:135) at weblogic.jndi.Environment.getInitialContext(Environment.java:118)
    at weblogic.management.Admin.initializeRemoteAdminHome(Admin.java:891) at weblogic.management.Admin.start(Admin.java:305)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:331) at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35) ______________________________________________
    I suspect reason for this might be weblogic.policy file. There you need to edit
    some lines replacing the location of the directory in which you installed WebLogic
    Server. I did this but still error occurs.
    Do u have any idea why above error occurs and if it is due to the weblogic.policy
    file entry please tell me how it correctly done.
    I am using WL60(sp2)in Win NT,
    My installed dir: E:\bea\wlserver6.0\
    Thanks Nalika

    Hi
    (It was me and Berit that sent the original question).
    After some experimentation we saw that the managed server did get
    some configuration from the admin server, so the problem was in
    there somewhere.
    I had added an (empty) cluster and machine to the admin server, just
    to test adding. When I removed them everything worked fine afterward.
    So it was some kind of configuration error from our side, but we never
    did find out what it was.
    I guess the lesson is to only define things when you really need them :-)
    Regards
    Mikael
    Timothy Fry wrote:
    We're getting the same problem, but on Solaris 2.7.
    Did you get a solution from bea yet?
    Tim
    "Berit Bylund" <[email protected]> wrote in message
    news:[email protected]..
    Hello
    We are trying to start a managed server (under the examples
    domain, NT 4.0, WLS 6.0 Beta 2)
    We start the managed server with the parameter
    -Dweblogic.management.server=http://127.0.0.1:7001

  • Exception when using RMI in tomcat 5.5, after reloading webapp

    When I freshly start tomcat and deploy my web app, I can use RMI by creating a local registry and binding my objects.
    However, as soon as I reload the web application, RMI no longer works and gives me this exception:
    RMI error: error unmarshalling return; nested exception is:
            java.io.EOFException
    java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
            java.io.EOFException
            at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
            at java.rmi.Naming.lookup(Naming.java:84)
            at nl.heliotrope.tropebiz.tools.NutchRestarter.main(NutchRestarter.java:33)
    Caused by: java.io.EOFException
            at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2498)
            at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1273)
            at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
            at sun.rmi.server.MarshalInputStream.readLocation(MarshalInputStream.java:285)
            at sun.rmi.server.MarshalInputStream.resolveClass(MarshalInputStream.java:167)
            at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1544)
            at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1466)
            at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1699)
            at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
            at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
            ... 3 moreThe code to register my RMI object:
            logger.debug("Setting up RMI");
            //bind remote manager object to rmi resource
            RemoteManager remoteManager = new RemoteManager();
            try {
                Naming.rebind(rmiResource, remoteManager);
            } catch (MalformedURLException e) {
                throw new RuntimeException("Cannot happen: " + e.getMessage());
            } catch (RemoteException e) {
                /* perhaps the registry was not started yet? Attempt.
                 * Cannot create registry automatically at web application startup,
                 * because another app may have done so already.
                logger.debug("Error registering remote manager to RMI, " +
                        "service not running? Starting the registry.");
                try {
                    LocateRegistry.createRegistry(1099);
                    Naming.rebind(rmiResource, remoteManager);
                    logger.debug("RMI Registry started and remote manager registered");
                } catch (RemoteException e2) {
                    logger.error("Failed to start RMI registry or register RemoteManager!");
                    throw new RemoteException("rebind: " + e2.getMessage());
                } catch (MalformedURLException e2) {
                    throw new RuntimeException("Cannot happen: " + e.getMessage());
            logger.debug("RMI set up successfully");And client code:
                IRemoteManager remoteManager = (IRemoteManager)Naming.lookup(RemoteManager
                        .getRMIResource("127.0.0.1", 1099));Trying set a RMISecurityManager breaks tomcat horribly by the way, but since RMI works with a fresh tomcat startup, I suppose there's no problems there.

    Hi all!
    I get the same Exception using Tomcat 5.5. When registering an object outside tomcat lookup works fine. Only when registering an object inside a webapp!
    Would be great if anyone got a tip to solve it!
    Greetings...

  • Error when starting J2EE server

    I can't start my J2EE server, when I type "j2ee verbose" on windows console, it showed an error like this :
    J2EE server listen port: 1050
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/corba/se/internal/util/IdentityHashtable
         at com.sun.corba.ee.internal.javax.rmi.CORBA.Util.<clinit>(Util.java:87)
         at com.sun.corba.ee.internal.POA.POAImpl.activate(POAImpl.java:935)
         at com.sun.corba.ee.internal.POA.POAImpl.activate_object(POAImpl.java:895)
         at com.sun.corba.ee.internal.CosNaming.TransientNameService.initialize(TransientNameService.java:117)
         at com.sun.corba.ee.internal.CosNaming.TransientNameService.<init>(TransientNameService.java:70)
         at com.sun.enterprise.iiop.POAProtocolMgr.initializeNaming(POAProtocolMgr.java:103)
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:226)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    I used J2EE 1.3.1 and JDK 1.5.0. I also have set an environment variable like shown below :
    JAVA_HOME=C:\jdk1.5.0
    J2EE_HOME=C:\j2sdkee1.3.1
    PATH=%JAVA_HOME%\bin;%J2EE_HOME%\bin
    CLASSPATH=%J2EE_HOME%\lib\j2ee.jar;%J2EE_HOME%\lib\locale
    all that env. variable have been set in System Properties through control panel in my windows. Plz help me if there anything wrong with my setting or there are another problems that I didn't noticed before. Thank you.
    Irfan R.

    Modify your JAVA_HOME to C:\Program%20%Files\j2sdk1.4.2_08
    as spaces are not allowed. Most probably it will work.
    I have installed J2EE SDK 1.3 on my machine. I have
    set
    J2EE_HOME=C:\j2sdkee1.3.1
    JAVA_HOME=C:\Program Files\j2sdk1.4.2_08
    and
    PATH=C:\j2sdkee1.3.1\bin
    CLASSPATH
    =%J2EE_HOME%\lib\j2ee.jar;%J2EE_HOME%\lib\locale
    environmental variables. All the four path seem to
    OK. But when I'm trying to start application server
    using j2ee -verbose command on my dos prompt I'm
    getting following error
    'C:\Program' is not recognized as an internal or
    external command, operable program or batch file.
    I tried j2ee -verbose command from C: prompt as well
    as from C:\j2sdkee1.3.1\bin prompt in which j2ee
    batch file is present.
    Please help/guide on above issue

Maybe you are looking for

  • JSP is not getting displayed.

    Hi experts, I am developing and application , in which the user select a entry from select box and clicks on the button. This should open the 2nd JSP but surprisingly it is not doing that. It just the let 1st JSP on and blinks. The switching between

  • Can't share or Stream Photos taken while locked

    I havent used the lock screen feature since I bought my iPod Touch almost a year ago. I recently started using it as a security measure. I took some picture this morning without unlocking. These photos alone will not share or sync through my photo st

  • Problem when creating an outputstream by submiting a form

    hi i am new in this forum, am working on a web application deployed on weblogic and apache server. Im trying to create an outputstream from several xsl transformations. I have a JSP which launches xsl transformations (made by a handler) by submiting

  • How to install proxy in my router linux inside ?

    I have the router type, Digicom RAW300U-A02 , linux inside. I would like install the proxy software "Squid". I've connected my router through ssh and i've seen the busybox interface with this commands: # busybox BusyBox v1.00 (2012.11.08-03:54+0000)

  • Is database in FLASH BACK

    Hi, on 10g R2 how to know if database is in FLASH BACK mode ? Thank you ? SQL> select FLASHBACK_ON from v$database; FLASHBACK_ON NO I found it .