JMX operation java.rmi.UnmarshallException

When executing an operation via JMX using JConsole, I get the following error:
Problem invoking getManifest : java.rmi.UnmarshallException: Error unmarshalling return: nested is: java.lang.ClassNotFoundException: foo.bar.InernalServiceException (no security manager: RMI class loader disabled)
Code snippet:
public ArrayList getManifest(String s) throws InternalServiceException, MBeanException{
          String path = ".\\foo_services.jar"; // Invalid path on purpose to test exception...
          File file = new File(path);
          FileInputStream fileInput;
          try {
               fileInput = new FileInputStream(file);
          } catch (FileNotFoundException e) {
               String msg = "The manifest file is not found in the given path";
               if (logger.isErrorEnabled()) logger.error(msg);
               throw new InternalServiceException(msg, ErrorConstants.JMX_FILE_NOT_FOUND);
If I throw new RuntimeException(msg, e) instead of InternalServiceException(msg, ErrorConstants.JMX_FILE_NOT_FOUND), it works and I get the appropriate exception.
What is the reason for this?

We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios. We exported some JMX values to snmp. Now we have the problem reading them using for example snmpwalk. What do we have to do that we get static MIB's for the values to add them to monitoring tools like nagios.

Similar Messages

  • Java.rmi.UnmarshallException

    Hi all,
    I've been using a JUnit remote test client for testing my EJB methods. It was all working untill I got the below exception. I dont know the reason for such an exception. I know its nothing related to 'Serialization', as all my classes involved in remote calls are Serializable. Please share your views on that, if you've ever come across such an exception.
    Thanks in advance....
    Below given is the Exception trace:
    Error unmarshaling return; nested exception is: java.io.EOFException
    java.rmi.UnmarshalException: Error unmarshaling return; nested exception is: java.io.EOFException at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:217) at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:133) at org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invoke(Unknown Source) at org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.invoke(JRMPInvokerProxy.java:135) at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:96) at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46) at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:45) at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:100) at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85) at $Proxy2.storeItems(Unknown Source) at no.nera.networks.ngnms.mediator.pm.ejb.TestStoreItemsManager.testStoreItems(TestStoreItemsManager.java:153) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)Caused by: java.io.EOFException at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2435) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1245) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324) at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:215) ... 25 more
    ..................................................................................................................................................

    now im not gettin the unmarshall exception but im gettin a NullPointerException.
    public Vector buildEmployeeVector()
            String sql = "select * from EMPLOYEE";
            try {
                Vector employees = new Vector();
                ResultSet rset = stmt.executeQuery(sql);
                // Iterate through the result and add to Vector
                while( rset.next() )
                    employees.addElement(getEmployee(rset));
                rset.close();
                return employees;
            catch( SQLException ex ) {
                return null;
        // helper function to extract Employee object from ResultSet
        private Employee getEmployee( ResultSet rset ) throws SQLException
       System.out.println("\n*** " + rset.getString("ENO") + rset.getString("ENAME") + rset.getString("TITLE") + "***\n\n");       
    return new Employee( rset.getString("ENO"),
              rset.getString("ENAME"), rset.getString("TITLE") );
        }in this code segment i dunno where the problem is, even in the print statement (given in bold) is not printing at all..
    regards..
    kams

  • JMXConnectorServer.start() causes java.rmi.AccessException

    Hi all,
    I've already posted this message to the tomcat mailing list as well as to the jmx forum, but without any result.
    I've a web service running inside tomcat which
    creates the jmx stuff needed to manage resources:
    LocateRegistry.createRegistry(port);
    String localhost = InetAddress.getLocalHost().getCanonicalHostName();
    MBeanServer mbs = MBeanServerFactory.createMBeanServer();
    // it is the same with getPlatformMBean
    JMXServiceURL url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://" + localhost + ":"
    + port + "/qosp");
    JMXConnectorServer cs =
    JMXConnectorServerFactory.newJMXConnectorServer(url, null, mbs);
    cs.start();The problem is that I get a java.rmi.AcessException -- see below -- when the cs.start() call is executed (on linux machines only -- it works fine on Windows)
    The problem seems to be the following:
    Caused by: java.rmi.ServerException: RemoteException occurred in
    server thread; nested exception is:
    java.rmi.AccessException: Registry.Registry.bind disallowed; origin /
    128.240.229.70 is non-local host
    However my machine does not have that address, and actually I have no idea what it is.
    Any clue?
    Michele
    Nov 6, 2006 11:55:01 AM org.apache.catalina.core.AprLifecycleListener
    lifecycleEvent
    INFO: The Apache Tomcat Native library which allows optimal
    performance in production environments was not found on the
    java.library.path: .:/Library/Java/Extensions:/System/Library/Java/
    Extensions:/usr/lib/java
    Nov 6, 2006 11:55:01 AM org.apache.coyote.http11.Http11BaseProtocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8080
    Nov 6, 2006 11:55:01 AM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 666 ms
    Nov 6, 2006 11:55:02 AM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    Nov 6, 2006 11:55:02 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.15
    Nov 6, 2006 11:55:02 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    Nov 6, 2006 11:55:02 AM org.apache.catalina.startup.HostConfig deployWAR
    INFO: Deploying web application archive axis2.war
    2006-11-06 11:55:03,668 INFO
    org.apache.axis2.deployment.DeploymentEngine - Deploying module :
    addressing-1.1
    2006-11-06 11:55:03,682 INFO
    org.apache.axis2.deployment.DeploymentEngine - Deploying module :
    managerInterceptor
    2006-11-06 11:55:03,690 INFO
    org.apache.axis2.deployment.DeploymentEngine - Deploying module :
    soapmonitor-1.1
    2006-11-06 11:55:03,890 INFO ncl.qosp.controller.LifecycleSupport -
    Qosp jmx is starting up...
    org.apache.axis2.deployment.DeploymentException: Processing
    Operations Modules Unable to start the connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Unable to start the
    connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Processing
    Operations Modules Unable to start the connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Unable to start the
    connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector
    at
    org.apache.axis2.deployment.repository.util.ArchiveReader.processService
    Group(ArchiveReader.java:124)
    at org.apache.axis2.deployment.DeploymentEngine.doDeploy
    (DeploymentEngine.java:528)
    at org.apache.axis2.deployment.repository.util.WSInfoList.update
    (WSInfoList.java:196)
    at org.apache.axis2.deployment.RepositoryListener.update
    (RepositoryListener.java:227)
    at org.apache.axis2.deployment.RepositoryListener.checkServices
    (RepositoryListener.java:174)
    at org.apache.axis2.deployment.DeploymentEngine.loadServices
    (DeploymentEngine.java:88)
    at org.apache.axis2.deployment.WarBasedAxisConfigurator.loadServices
    (WarBasedAxisConfigurator.java:252)
    at
    org.apache.axis2.context.ConfigurationContextFactory.createConfiguration
    Context(ConfigurationContextFactory.java:72)
    at org.apache.axis2.transport.http.AxisServlet.initConfigContext
    (AxisServlet.java:373)
    at org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:
    317)
    at org.apache.catalina.core.StandardWrapper.loadServlet
    (StandardWrapper.java:1105)
    at org.apache.catalina.core.StandardWrapper.load
    (StandardWrapper.java:932)
    at org.apache.catalina.core.StandardContext.loadOnStartup
    (StandardContext.java:3915)
    at org.apache.catalina.core.StandardContext.start
    (StandardContext.java:4176)
    at org.apache.catalina.core.ContainerBase.addChildInternal
    (ContainerBase.java:759)
    at org.apache.catalina.core.ContainerBase.addChild
    (ContainerBase.java:739)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:
    524)
    at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:
    804)
    at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:
    693)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:
    472)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1118)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent
    (HostConfig.java:310)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent
    (LifecycleSupport.java:119)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:
    1020)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:
    1012)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:
    442)
    at org.apache.catalina.core.StandardService.start
    (StandardService.java:450)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:
    700)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke
    (NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke
    (DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:275)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    Caused by: org.apache.axis2.deployment.DeploymentException:
    Processing Operations Modules Unable to start the connector; nested
    exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Unable to start the
    connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector
    at org.apache.axis2.deployment.ServiceBuilder.populateService
    (ServiceBuilder.java:320)
    at
    org.apache.axis2.deployment.repository.util.ArchiveReader.buildServiceGr
    oup(ArchiveReader.java:76)
    at
    org.apache.axis2.deployment.repository.util.ArchiveReader.processService
    Group(ArchiveReader.java:118)
    ... 35 more
    Caused by: org.apache.axis2.deployment.DeploymentException: Unable to
    start the connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector
    at
    org.apache.axis2.deployment.ServiceBuilder.loadServiceLifeCycleClass
    (ServiceBuilder.java:349)
    at org.apache.axis2.deployment.ServiceBuilder.populateService
    (ServiceBuilder.java:127)
    ... 37 more
    Caused by: java.lang.RuntimeException: Unable to start the connector
    at ncl.qosp.controller.LifecycleSupport.initRemoteJmx
    (LifecycleSupport.java:192)
    at ncl.qosp.controller.LifecycleSupport.startUp
    (LifecycleSupport.java:132)
    at
    org.apache.axis2.deployment.ServiceBuilder.loadServiceLifeCycleClass
    (ServiceBuilder.java:345)
    ... 38 more
    Caused by: java.io.IOException: Cannot bind to URL [rmi://
    sealbook.ncl.ac.uk:10099/qosp]: javax.naming.NoPermissionException
    [Root exception is java.rmi.ServerException: RemoteException occurred
    in server thread; nested exception is:
           java.rmi.AccessException: Registry.Registry.bind disallowed; origin /
    128.240.229.70 is non-local host]
    at javax.management.remote.rmi.RMIConnectorServer.newIOException
    (RMIConnectorServer.java:814)
    at javax.management.remote.rmi.RMIConnectorServer.start
    (RMIConnectorServer.java:431)
    at ncl.qosp.controller.LifecycleSupport.initRemoteJmx
    (LifecycleSupport.java:190)
    ... 40 more
    Caused by: javax.naming.NoPermissionException [Root exception is
    java.rmi.ServerException: RemoteException occurred in server thread;
    nested exception is:
           java.rmi.AccessException: Registry.Registry.bind disallowed; origin /
    128.240.229.70 is non-local host]
    at com.sun.jndi.rmi.registry.RegistryContext.bind
    (RegistryContext.java:122)
    at com.sun.jndi.toolkit.url.GenericURLContext.bind
    (GenericURLContext.java:208)
    at javax.naming.InitialContext.bind(InitialContext.java:359)
    at javax.management.remote.rmi.RMIConnectorServer.bind
    (RMIConnectorServer.java:635)
    at javax.management.remote.rmi.RMIConnectorServer.start
    (RMIConnectorServer.java:427)
    ... 41 more
    Caused by: java.rmi.ServerException: RemoteException occurred in
    server thread; nested exception is:
    java.rmi.AccessException: Registry.Registry.bind disallowed; origin /
    128.240.229.70 is non-local host
    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:613)
    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.bind(Unknown Source)
    at com.sun.jndi.rmi.registry.RegistryContext.bind
    (RegistryContext.java:116)
    ... 45 more
    Caused by: java.rmi.AccessException: Registry.Registry.bind
    disallowed; origin /128.240.229.70 is non-local host
    at sun.rmi.registry.RegistryImpl.checkAccess(RegistryImpl.java:223)
    at sun.rmi.registry.RegistryImpl.bind(RegistryImpl.java:119)
    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:613)
    2006-11-06 11:55:04,041 ERROR
    org.apache.axis2.deployment.DeploymentEngine - Invalid service
    RoutingService.aar due to Processing Operations Modules Unable to
    start the connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Unable to start the
    connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Processing
    Operations Modules Unable to start the connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Unable to start the
    connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector
    org.apache.axis2.deployment.DeploymentException: Processing
    Operations Modules Unable to start the connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Unable to start the
    connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Processing
    Operations Modules Unable to start the connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Unable to start the
    connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector
    at
    org.apache.axis2.deployment.repository.util.ArchiveReader.processService
    Group(ArchiveReader.java:124)
    at org.apache.axis2.deployment.DeploymentEngine.doDeploy
    (DeploymentEngine.java:528)
    at org.apache.axis2.deployment.repository.util.WSInfoList.update
    (WSInfoList.java:196)
    at org.apache.axis2.deployment.RepositoryListener.update
    (RepositoryListener.java:227)
    at org.apache.axis2.deployment.RepositoryListener.checkServices
    (RepositoryListener.java:174)
    at org.apache.axis2.deployment.DeploymentEngine.loadServices
    (DeploymentEngine.java:88)
    at org.apache.axis2.deployment.WarBasedAxisConfigurator.loadServices
    (WarBasedAxisConfigurator.java:252)
    at
    org.apache.axis2.context.ConfigurationContextFactory.createConfiguration
    Context(ConfigurationContextFactory.java:72)
    at org.apache.axis2.transport.http.AxisServlet.initConfigContext
    (AxisServlet.java:373)
    at org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:
    317)
    at org.apache.catalina.core.StandardWrapper.loadServlet
    (StandardWrapper.java:1105)
    at org.apache.catalina.core.StandardWrapper.load
    (StandardWrapper.java:932)
    at org.apache.catalina.core.StandardContext.loadOnStartup
    (StandardContext.java:3915)
    at org.apache.catalina.core.StandardContext.start
    (StandardContext.java:4176)
    at org.apache.catalina.core.ContainerBase.addChildInternal
    (ContainerBase.java:759)
    at org.apache.catalina.core.ContainerBase.addChild
    (ContainerBase.java:739)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:
    524)
    at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:
    804)
    at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:
    693)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:
    472)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1118)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent
    (HostConfig.java:310)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent
    (LifecycleSupport.java:119)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:
    1020)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:
    1012)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:
    442)
    at org.apache.catalina.core.StandardService.start
    (StandardService.java:450)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:
    700)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke
    (NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke
    (DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:275)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    Caused by: org.apache.axis2.deployment.DeploymentException:
    Processing Operations Modules Unable to start the connector; nested
    exception is:
    java.lang.RuntimeException: Unable to start the connector; nested
    exception is:
    org.apache.axis2.deployment.DeploymentException: Unable to start the
    connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector
    at org.apache.axis2.deployment.ServiceBuilder.populateService
    (ServiceBuilder.java:320)
    at
    org.apache.axis2.deployment.repository.util.ArchiveReader.buildServiceGr
    oup(ArchiveReader.java:76)
    at
    org.apache.axis2.deployment.repository.util.ArchiveReader.processService
    Group(ArchiveReader.java:118)
    ... 35 more
    Caused by: org.apache.axis2.deployment.DeploymentException: Unable to
    start the connector; nested exception is:
    java.lang.RuntimeException: Unable to start the connector
    at
    org.apache.axis2.deployment.ServiceBuilder.loadServiceLifeCycleClass
    (ServiceBuilder.java:349)
    at org.apache.axis2.deployment.ServiceBuilder.populateService
    (ServiceBuilder.java:127)
    ... 37 more
    Caused by: java.lang.RuntimeException: Unable to start the connector
    at ncl.qosp.controller.LifecycleSupport.initRemoteJmx
    (LifecycleSupport.java:192)
    at ncl.qosp.controller.LifecycleSupport.startUp
    (LifecycleSupport.java:132)
    at
    org.apache.axis2.deployment.ServiceBuilder.loadServiceLifeCycleClass
    (ServiceBuilder.java:345)
    ... 38 more
    Caused by: java.io.IOException: Cannot bind to URL [rmi://
    sealbook.ncl.ac.uk:10099/qosp]: javax.naming.NoPermissionException
    [Root exception is java.rmi.ServerException: RemoteException occurred
    in server thread; nested exception is:
           java.rmi.AccessException: Registry.Registry.bind disallowed; origin /
    128.240.229.70 is non-local host]
    at javax.management.remote.rmi.RMIConnectorServer.newIOException
    (RMIConnectorServer.java:814)
    at javax.management.remote.rmi.RMIConnectorServer.start
    (RMIConnectorServer.java:431)
    at ncl.qosp.controller.LifecycleSupport.initRemoteJmx
    (LifecycleSupport.java:190)
    ... 40 more
    Caused by: javax.naming.NoPermissionException [Root exception is
    java.rmi.ServerException: RemoteException occurred in server thread;
    nested exception is:
           java.rmi.AccessException: Registry.Registry.bind disallowed; origin /
    128.240.229.70 is non-local host]
    at com.sun.jndi.rmi.registry.RegistryContext.bind
    (RegistryContext.java:122)
    at com.sun.jndi.toolkit.url.GenericURLContext.bind
    (GenericURLContext.java:208)
    at javax.naming.InitialContext.bind(InitialContext.java:359)
    at javax.management.remote.rmi.RMIConnectorServer.bind
    (RMIConnectorServer.java:635)
    at javax.management.remote.rmi.RMIConnectorServer.start
    (RMIConnectorServer.java:427)
    ... 41 more
    Caused by: java.rmi.ServerException: RemoteException occurred in
    server thread; nested exception is:
    java.rmi.AccessException: Registry.Registry.bind disallowed; origin /
    128.240.229.70 is non-local host
    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:613)
    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.bind(Unknown Source)
    at com.sun.jndi.rmi.registry.RegistryContext.bind
    (RegistryContext.java:116)
    ... 45 more
    Caused by: java.rmi.AccessException: Registry.Registry.bind
    disallowed; origin /128.240.229.70 is non-local host
    at sun.rmi.registry.RegistryImpl.checkAccess(RegistryImpl.java:223)
    at sun.rmi.registry.RegistryImpl.bind(RegistryImpl.java:119)
    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:613)
    2006-11-06 11:55:04,180 INFO
    org.apache.axis2.deployment.DeploymentEngine - Deploying Web service
    version.aar
    Nov 6, 2006 11:55:04 AM org.apache.coyote.http11.Http11BaseProtocol
    start
    INFO: Starting Coyote HTTP/1.1 on http-8080
    Nov 6, 2006 11:55:04 AM org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    Nov 6, 2006 11:55:04 AM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/26 config=null
    Nov 6, 2006 11:55:04 AM org.apache.catalina.storeconfig.StoreLoader load
    INFO: Find registry server-registry.xml at classpath resource
    Nov 6, 2006 11:55:04 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 2979 ms

    Is it possible that
    InetAddress.getLocalHost().getCanonicalHostName() is
    returning a bogus name? Could you replace it with
    .getHostName()?Yes, I did it, but nothing changed, so I tried to hardcode the 'localhost' when I create the JMXServiceURL instead of using the value returned by InetAddress.getLocalHost().get* and it worked.
    Could it be because of network settings (I'm running behind a proxy)?
    Thanks,
    Michele

  • Problem while Deploying WebDynpro application-error:java.rmi.RemoteExceptio

    Hi All,
       i installed WAS 6.40 sp 16 on my system its working fine. I can able to log in to the  SDM as remoteGUI.bat using my sdm password.But while deploying the webdynpro appliation i am getting error like "java.rmi.RemoteException: Only Administrators have the right to perform this operation".
    Using my administrator PWD i can log in to all the systems like Useradmin, SDM, J2E engine.
    can any one help me....thanks in advance

    hi all
    i also had the same problem, i am able to log into SDM GUI through Remotegui.bat
    but even though i had changed the password i am not able to deploy the applicaton to j2ee sever, through the NWDS. I tried deploying the applicaton in the
    GUI of SDM there also it is giving like "Only Administrators have the right to perform this operation".
    How to go to User Administration and where?is it in OS level or in Web AS Admin console?
    Adding user admin (default password is also admin) to the Administrators group,
    Go to: User Administration --> Groups and search for Administrators.
    Then add user with ID admin in this group

  • Java.rmi.ServerException: Internal Server Error (deserialization error: XML

    I am trying to transmit a document as a byte array to a web service using jax-rpc, and I get the following error:
    2004-05-25 08:04:39,468 exception [Thread-5] - [email protected]33fd java.rmi.ServerException: Internal Server Error (deserialization error: XML parsing error: com.sun.xml.rpc.sp.ParseException:58: Expected "</ns0:receivexmldocument>" to terminate element starting on line 2)
         at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:370)
         at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:231)
         at com.mobius.cmsl.client.contentindexlistener.ContentWebServiceListenerIF_Stub.receivexmldocument(ContentWebServiceListenerIF_Stub.java:63)
         at com.mobius.cmsl.adapters.convera.client.ContentWebServiceClient.sendxml(ContentWebServiceClient.java:89)
         at com.mobius.cmsl.adapters.convera.client.ContentInterceptor.doGet(ContentInterceptor.java:89)
         at com.mobius.cmsl.adapters.convera.client.ContentInterceptor.doPost(ContentInterceptor.java:110)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    The code looks like:
    Client:
    clientStub = (ContentWebServiceListenerIF_Stub)new ContentIndexService_Impl().
    getContentWebServiceListenerIFPort();
    clientStub._setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, endPoint);
    obj = clientStub.receivexmldocument(cd.externalLink.contents,inxml);
    Web Service:
    public String receivexmldocument(byte docstream[],
    String inxml
    ) throws RemoteException {
    The wsdl looks like:
    <message name="ContentWebServiceListenerIF_receivexmldocument">
    <part name="arrayOfbyte_1" type="xsd:base64Binary"/>
    <part name="String_2" type="xsd:string"/></message>
    <operation name="receivexmldocument" parameterOrder="arrayOfbyte_1 String_2">
    <input message="tns:ContentWebServiceListenerIF_receivexmldocument"/>
    <output message="tns:ContentWebServiceListenerIF_receivexmldocumentResponse"/></operation>
    The documents I am sending do contain special characters like maybe japanese or italian.

    Sounds like the xml you are sending is not well-formed. Please start with simple xml documents to see if it works.

  • Java.rmi.RemoteException: Only Administrators

    Hello all,
    I am running Solution Manager 4.0 as Central Systems Installation (ABAP + Java System) with Oracle 10.2 on Windows Server 2003 Standard Edition. I recently downloaded new support package stack 08 to SP16 and then tried to update using JSPM. The Kernel, System using <SID>adm user account. And, i got other some updates( JSPM, SAP Kernel, IGS, SAP_JAVASL, BASETABLES, CORE-TOOLS, JLOGVIEW, SAP-JEE, SAPJEECOR and SAP_JTECHF ) applied successfully with other remaining updates (ADSSAP, BI_MMR, KM-KW_JIKS, CAF-UM, SAP_JTECHS, BI_UDI, CAF, LM-TOOLS, UMEADMIN and LM-SERVICE). I am facing problem at ADSSAP with the error message.
    I already done below things.
    1) I have updated JSPM version to latest.
    2) User J2EE_ADMIN have role of SAP_J2EE_ADMIN in SU01
    3)  I tried to deploy with SDM, but failed with same error
    4) i am not able to login to Visual admin(with default connection j2ee_admin)
    5)J2EE_ADMIN user is not locked in SU01
    6) I tried to open http://<HOSTNAME>:50100/useradmin, but throwing below error
    503 Service Unavailable
    Application cannot be started.
    Details: com.sap.engine.services.deploy.container.ExceptionI nfo: Naming error.
    7) Server_ID142442 --->Services  ---> com.sap.security.cor e.ume.service  --->  ume.persistence.data_source value is
    dataSourceConfiguration_r3_rw.xml
    SDM Error Log:
    ===================================================
    ==========================================================================
    Deployment started Mon Sep 24 08:53:57 GMT+05:30 2007
    ===========================================================================
    Starting Deployment of tc/smd/cptdict
    Finished successfully: development component 'tc/smd/cptdict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1'
    Deployment of tc/smd/cptdict finished successfully (Duration 11203 ms)
    Starting Deployment of SAP_BUILDT
    Finished successfully: software component 'SAP_BUILDT'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071117141300''/'1'
    Deployment of SAP_BUILDT finished successfully (Duration 9485 ms)
    Starting Deployment of tc/smd/datamgmt/dict
    Finished successfully: development component 'tc/smd/datamgmt/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1'
    Deployment of tc/smd/datamgmt/dict finished successfully (Duration 7922 ms)
    Starting Deployment of tc/smd/server/service
    The SDM will now stop SAP Web AS Java cluster instance(s) processes in order to perform offline deployment. After that the deployment will proceed.
    It could take some time, so please be patient.
    Finished successfully: development component 'tc/smd/server/service'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by
    Deployment of tc/smd/server/service finished successfully (Duration 23375 ms)
    Starting Deployment of tc/webadministrator/ccrep/dict
    Finished successfully: development component 'tc/webadministrator/ccrep/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by
    Deployment of tc/webadministrator/ccrep/dict finished successfully (Duration 15579 ms)
    Starting Deployment of tc/webadministrator/ewa/dict
    Finished successfully: development component 'tc/webadministrator/ewa/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by
    Deployment of tc/webadministrator/ewa/dict finished successfully (Duration 8453 ms)
    Starting Deployment of tc/webadministrator/fvrep/dict
    Finished successfully: development component 'tc/webadministrator/fvrep/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1'
    Deployment of tc/webadministrator/fvrep/dict finished successfully (Duration 9171 ms)
    Starting Deployment of tc/webadministrator/httpanalysis/dict
    Finished successfully: development component 'tc/webadministrator/httpanalysis/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1'
    Deployment of tc/webadministrator/httpanalysis/dict finished successfully (Duration 7843 ms)
    Starting Deployment of tc/webadministrator/lib/dict
    Finished successfully: development component 'tc/webadministrator/lib/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1'
    Deployment of tc/webadministrator/lib/dict finished successfully (Duration 7985 ms)
    Starting Deployment of tc/webadministrator/lib/dbc
    Finished successfully: development component 'tc/webadministrator/lib/dbc'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1'
    Deployment of tc/webadministrator/lib/dbc finished successfully (Duration 7547 ms)
    Starting Deployment of tc/webadministrator/logviewer/dict
    Finished with warnings: development component 'tc/webadministrator/logviewer/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1':
    No further description found.
    Deployment of tc/webadministrator/logviewer/dict finished with Warning (Duration 7922 ms)
    Starting Deployment of tc/webadministrator/navigation/dict
    Finished successfully: development component 'tc/webadministrator/navigation/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by
    Deployment of tc/webadministrator/navigation/dict finished successfully (Duration 8907 ms)
    Starting Deployment of tc/webadministrator/navigation/dbc
    Finished successfully: development component 'tc/webadministrator/navigation/dbc'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by
    Deployment of tc/webadministrator/navigation/dbc finished successfully (Duration 9500 ms)
    Starting Deployment of tc/webadministrator/scheduler/dict
    Finished successfully: development component 'tc/webadministrator/scheduler/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by
    Deployment of tc/webadministrator/scheduler/dict finished successfully (Duration 8203 ms)
    Starting Deployment of tc/webadministrator/screp/dict
    Finished successfully: development component 'tc/webadministrator/screp/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by
    Deployment of tc/webadministrator/screp/dict finished successfully (Duration 8672 ms)
    Starting Deployment of tc/webadministrator/screp/dbc
    Finished successfully: development component 'tc/webadministrator/screp/dbc'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by
    Deployment of tc/webadministrator/screp/dbc finished successfully (Duration 7500 ms)
    Starting Deployment of tc/webadministrator/selfcheck/dict
    Finished successfully: development component 'tc/webadministrator/selfcheck/dict'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1'
    Deployment of tc/webadministrator/selfcheck/dict finished successfully (Duration 7969 ms)
    Starting Deployment of tc/webadministrator/selfcheck/dbc
    Finished successfully: development component 'tc/webadministrator/selfcheck/dbc'/'sap.com'/'SAP AG'/'7.0014.20080122064620.0000'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20080122073158''/'1'
    Deployment of tc/webadministrator/selfcheck/dbc finished successfully (Duration 7719 ms)
    Starting Deployment of DocumentServicesLicenseManager
    The SDM will now start SAP Web AS Java instance processes in order to perform online deployment. After that the deployment will proceed.
    It could take some time, so please be patient.
    Aborted: development component 'DocumentServicesLicenseManager'/'com.adobe'/'Adobe Systems'/'800.20070306123954.374077'/'4', grouped by software component 'ADSSAP'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071118055147''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of DocumentServicesLicenseManager finished with Error (Duration 160515 ms)
    Starting Deployment of AdobeDocumentServices
    Deployment of AdobeDocumentServices was skipped (Duration 7453 ms)
    Starting Deployment of tc/ads/grmg
    Aborted: development component 'tc/ads/grmg'/'sap.com'/'SAP AG'/'7.0010.20061002104728.0000'/'4', grouped by software component 'ADSSAP'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071118055147''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of tc/ads/grmg finished with Error (Duration 8438 ms)
    Starting Deployment of ADSSAP
    Aborted: software component 'ADSSAP'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071118055147''/'1':
    Failed deployment of SDAs:
    development component 'AdobeDocumentServices'/'com.adobe'/'Adobe Systems'/'800.20070708051308.406522'/'4' : skipped
    development component 'tc/ads/grmg'/'sap.com'/'SAP AG'/'7.0010.20061002104728.0000'/'4' : aborted
    development component 'DocumentServicesLicenseManager'/'com.adobe'/'Adobe Systems'/'800.20070306123954.374077'/'4' : aborted
    Please, look at error logs above for more information!
    Deployment of ADSSAP finished with Error (Duration 7907 ms)
    Starting Deployment of bi/mmr/browser_ea
    Aborted: development component 'bi/mmr/browser_ea'/'sap.com'/'SAP AG'/'7.0011.20070124085018.0000'/'2', grouped by software component 'BI_MMR'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072334''/'2':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of bi/mmr/browser_ea finished with Error (Duration 8437 ms)
    Starting Deployment of bi/mmr/cwm_1.0_source
    Aborted: development component 'bi/mmr/cwm_1.0_source'/'sap.com'/'SAP AG'/'7.0015.20080131095802.0000'/'2', grouped by software component 'BI_MMR'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072334''/'2':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of bi/mmr/cwm_1.0_source finished with Error (Duration 9375 ms)
    Starting Deployment of bi/mmr/miniMetaModel
    Aborted: development component 'bi/mmr/miniMetaModel'/'sap.com'/'SAP AG'/'7.0015.20080131095802.0000'/'2', grouped by software component 'BI_MMR'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072334''/'2':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of bi/mmr/miniMetaModel finished with Error (Duration 8172 ms)
    Starting Deployment of bi/mmr/mini_md350
    Aborted: development component 'bi/mmr/mini_md350'/'sap.com'/'SAP AG'/'7.0015.20080131095802.0000'/'2', grouped by software component 'BI_MMR'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072334''/'2':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of bi/mmr/mini_md350 finished with Error (Duration 8000 ms)
    Starting Deployment of BI_MMR
    Aborted: software component 'BI_MMR'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072334''/'2':
    Failed deployment of SDAs:
    development component 'bi/mmr/mini_md350'/'sap.com'/'SAP AG'/'7.0015.20080131095802.0000'/'2' : aborted
    development component 'bi/mmr/miniMetaModel'/'sap.com'/'SAP AG'/'7.0015.20080131095802.0000'/'2' : aborted
    development component 'bi/mmr/browser_ea'/'sap.com'/'SAP AG'/'7.0011.20070124085018.0000'/'2' : aborted
    development component 'bi/mmr/cwm_1.0_source'/'sap.com'/'SAP AG'/'7.0015.20080131095802.0000'/'2' : aborted
    Please, look at error logs above for more information!
    Deployment of BI_MMR finished with Error (Duration 7844 ms)
    Starting Deployment of caf/um/metadata/actions
    Aborted: development component 'caf/um/metadata/actions'/'sap.com'/'MAIN_APL70VAL_C'/'1077265'/'3', grouped by software component 'CAF-UM'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071117062847''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of caf/um/metadata/actions finished with Error (Duration 8125 ms)
    Starting Deployment of caf/um/metadata/content
    Aborted: development component 'caf/um/metadata/content'/'sap.com'/'MAIN_APL70VAL_C'/'1497172'/'3', grouped by software component 'CAF-UM'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071117062847''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of caf/um/metadata/content finished with Error (Duration 8094 ms)
    Starting Deployment of caf/um/metadata/example
    Aborted: development component 'caf/um/metadata/example'/'sap.com'/'MAIN_APL70VAL_C'/'963657'/'3', grouped by software component 'CAF-UM'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071117062847''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of caf/um/metadata/example finished with Error (Duration 8094 ms)
    Starting Deployment of caf/um/metadata/testwd
    Aborted: development component 'caf/um/metadata/testwd'/'sap.com'/'MAIN_APL70VAL_C'/'963659'/'3', grouped by software component 'CAF-UM'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071117062847''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of caf/um/metadata/testwd finished with Error (Duration 8047 ms)
    Starting Deployment of caf/um/relgroups/admin
    Aborted: development component 'caf/um/relgroups/admin'/'sap.com'/'MAIN_APL70VAL_C'/'963666'/'3', grouped by :
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of caf/um/relgroups/admin finished with Error (Duration 8328 ms)
    Starting Deployment of caf/um/relgroups/test
    Aborted: development component 'caf/um/relgroups/test'/'sap.com'/'MAIN_APL70VAL_C'/'963945'/'3', grouped by :
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of caf/um/relgroups/test finished with Error (Duration 7703 ms)
    Starting Deployment of CAF-UM
    Aborted: software component 'CAF-UM'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071117062847''/'1':
    Failed deployment of SDAs:
    development component 'caf/um/metadata/example'/'sap.com'/'MAIN_APL70VAL_C'/'963657'/'3' : aborted
    development component 'caf/um/metadata/content'/'sap.com'/'MAIN_APL70VAL_C'/'1497172'/'3' : aborted
    development component 'caf/um/metadata/testwd'/'sap.com'/'MAIN_APL70VAL_C'/'963659'/'3' : aborted
    development component 'caf/um/metadata/actions'/'sap.com'/'MAIN_APL70VAL_C'/'1077265'/'3' : aborted
    development component 'caf/um/relgroups/test'/'sap.com'/'MAIN_APL70VAL_C'/'963945'/'3' : aborted
    development component 'caf/um/relgroups/admin'/'sap.com'/'MAIN_APL70VAL_C'/'963666'/'3' : aborted
    Please, look at error logs above for more information!
    Deployment of CAF-UM finished with Error (Duration 7532 ms)
    Starting Deployment of tc/km_tc/kw
    Aborted: development component 'tc/km_tc/kw'/'sap.com'/'SAP AG'/'7.0012.20070328121935.0000'/'1', grouped by software component 'KM-KW_JIKS'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072941''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of tc/km_tc/kw finished with Error (Duration 8188 ms)
    Starting Deployment of tc/km_tc/sapiks
    Aborted: development component 'tc/km_tc/sapiks'/'sap.com'/'SAP AG'/'7.0012.20070328121935.0000'/'1', grouped by software component 'KM-KW_JIKS'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072941''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of tc/km_tc/sapiks finished with Error (Duration 7891 ms)
    Starting Deployment of tc/km_tc/sapirexthelp
    Aborted: development component 'tc/km_tc/sapirexthelp'/'sap.com'/'SAP AG'/'7.0012.20070328121935.0000'/'1', grouped by :
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of tc/km_tc/sapirexthelp finished with Error (Duration 7953 ms)
    Starting Deployment of tc/kw_tc
    Aborted: development component 'tc/kw_tc'/'sap.com'/'SAP AG'/'7.0015.20080123135455.0000'/'1', grouped by software component 'KM-KW_JIKS'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072941''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of tc/kw_tc finished with Error (Duration 8828 ms)
    Starting Deployment of KM-KW_JIKS
    Aborted: software component 'KM-KW_JIKS'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216072941''/'1':
    Failed deployment of SDAs:
    development component 'tc/km_tc/kw'/'sap.com'/'SAP AG'/'7.0012.20070328121935.0000'/'1' : aborted
    development component 'tc/km_tc/sapiks'/'sap.com'/'SAP AG'/'7.0012.20070328121935.0000'/'1' : aborted
    development component 'tc/km_tc/sapirexthelp'/'sap.com'/'SAP AG'/'7.0012.20070328121935.0000'/'1' : aborted
    development component 'tc/kw_tc'/'sap.com'/'SAP AG'/'7.0015.20080123135455.0000'/'1' : aborted
    Please, look at error logs above for more information!
    Deployment of KM-KW_JIKS finished with Error (Duration 7657 ms)
    Starting Deployment of SQLTrace
    Aborted: development component 'SQLTrace'/'sap.com'/'SAP AG'/'7.0013.20070703111935.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of SQLTrace finished with Error (Duration 8016 ms)
    Starting Deployment of com.sap.aii.util.rb
    Aborted: development component 'com.sap.aii.util.rb'/'sap.com'/'SAP AG'/'7.0012.20070328121059.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\com.sap.aii.util.rb\SAP AG\3\7.0012.20070328121059.0000\aii_util_rb.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is: ; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\com.sap.aii.util.rb\SAP AG\3\7.0012.20070328121059.0000\aii_util_rb.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineCompOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.aii.util.rb finished with Error (Duration 7969 ms)
    Starting Deployment of com.sap.aii.util.misc
    Deployment of com.sap.aii.util.misc was skipped (Duration 7125 ms)
    Starting Deployment of com.sap.aii.util.xml
    Deployment of com.sap.aii.util.xml was skipped (Duration 7250 ms)
    Starting Deployment of com.sap.aii.ibtranslationclient
    Deployment of com.sap.aii.ibtranslationclient was skipped (Duration 7125 ms)
    Starting Deployment of com.sap.aii.ibtransportclient
    Deployment of com.sap.aii.ibtransportclient was skipped (Duration 7250 ms)
    Starting Deployment of com.sap.aii.proxy.framework
    Deployment of com.sap.aii.proxy.framework was skipped (Duration 6907 ms)
    Starting Deployment of com.sap.engine.class.download
    Aborted: development component 'com.sap.engine.class.download'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.engine.class.download finished with Error (Duration 7891 ms)
    Starting Deployment of com.sap.engine.customizing.ccms
    Aborted: development component 'com.sap.engine.customizing.ccms'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.engine.customizing.ccms finished with Error (Duration 7938 ms)
    Starting Deployment of com.sap.engine.docs.examples
    Aborted: development component 'com.sap.engine.docs.examples'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'1', grouped by :
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.engine.docs.examples finished with Error (Duration 12546 ms)
    Starting Deployment of com.sap.engine.heartbeat
    Aborted: development component 'com.sap.engine.heartbeat'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'1', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot remove references from sap.com/com.sap.engine.heartbeat to library:sap.com/com.sap.mw.jco, library:sap.com/com.sap.util.monitor.grmg;  java.rmi.RemoteException: Only Administrators have the right to perform this operation.; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot remove references from sap.com/com.sap.engine.heartbeat to library:sap.com/com.sap.mw.jco, library:sap.com/com.sap.util.monitor.grmg;  java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.engine.heartbeat finished with Error (Duration 7641 ms)
    Starting Deployment of com.sap.jdo
    Aborted: development component 'com.sap.jdo'/'sap.com'/'SAP AG'/'7.0013.20070703111940.0000'/'1', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.jdo finished with Error (Duration 8062 ms)
    Starting Deployment of com.sap.lcr.namealloc
    Aborted: development component 'com.sap.lcr.namealloc'/'sap.com'/'SAP AG'/'7.0013.20070703113613.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\com.sap.lcr.namealloc\SAP AG\3\7.0013.20070703113613.0000\namealloc.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is: ; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\com.sap.lcr.namealloc\SAP AG\3\7.0013.20070703113613.0000\namealloc.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineCompOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.lcr.namealloc finished with Error (Duration 7796 ms)
    Starting Deployment of com.sap.lcr.saprfc
    Aborted: development component 'com.sap.lcr.saprfc'/'sap.com'/'SAP AG'/'7.0013.20070703113613.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot remove references from sap.com/com.sap.lcr.saprfc to library:sap.com/com.sap.mw.jco, library:sap.com/com.sap.lcr.api.cimclient;  java.rmi.RemoteException: Only Administrators have the right to perform this operation.; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot remove references from sap.com/com.sap.lcr.saprfc to library:sap.com/com.sap.mw.jco, library:sap.com/com.sap.lcr.api.cimclient;  java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.lcr.saprfc finished with Error (Duration 7937 ms)
    Starting Deployment of com.sap.lcrabapapi
    Aborted: development component 'com.sap.lcrabapapi'/'sap.com'/'SAP AG'/'7.0013.20070328121631.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot remove references from sap.com/com.sap.lcrabapapi to library:sap.com/com.sap.mw.jco, library:sap.com/com.sap.lcr.api.cimclient;  java.rmi.RemoteException: Only Administrators have the right to perform this operation.; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot remove references from sap.com/com.sap.lcrabapapi to library:sap.com/com.sap.mw.jco, library:sap.com/com.sap.lcr.api.cimclient;  java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineJ2EE620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.lcrabapapi finished with Error (Duration 8000 ms)
    Starting Deployment of com.sap.mobile.clientinfo
    Aborted: development component 'com.sap.mobile.clientinfo'/'sap.com'/'SAP AG'/'7.0013.20060719095239.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\program\.\temp\temp_dm\com.sap.mobile.clientinfo.jar. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is: ; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\program\.\temp\temp_dm\com.sap.mobile.clientinfo.jar. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineLib620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.mobile.clientinfo finished with Error (Duration 7813 ms)
    Starting Deployment of com.sap.pmi.adm
    Aborted: development component 'com.sap.pmi.adm'/'sap.com'/'SAP AG'/'7.0014.20071029095144.0000'/'1', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.pmi.adm finished with Error (Duration 7812 ms)
    Starting Deployment of com.sap.rprof.dbprofiles
    Aborted: development component 'com.sap.rprof.dbprofiles'/'sap.com'/'SAP AG'/'7.0014.20070328121706.0000'/'1', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\com.sap.rprof.dbprofiles\SAP AG\1\7.0014.20070328121706.0000\dbprofiles.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is: ; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\com.sap.rprof.dbprofiles\SAP AG\1\7.0014.20070328121706.0000\dbprofiles.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineCompOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.rprof.dbprofiles finished with Error (Duration 7735 ms)
    Starting Deployment of com.sap.lcr
    Deployment of com.sap.lcr was skipped (Duration 7172 ms)
    Starting Deployment of com.sap.rprof.remoteProfile
    Deployment of com.sap.rprof.remoteProfile was skipped (Duration 6922 ms)
    Starting Deployment of com.sap.security.core.admin
    Aborted: development component 'com.sap.security.core.admin'/'sap.com'/'SAP AG'/'7.0014.20071029094847.0000'/'1', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.security.core.admin finished with Error (Duration 9187 ms)
    Starting Deployment of com.sap.util.monitor.jarm.ccms
    Aborted: development component 'com.sap.util.monitor.jarm.ccms'/'sap.com'/'SAP AG'/'7.0013.20051128142456.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\program\.\temp\temp_dm\com.sap.util.monitor.jarm.ccms.jar. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is: ; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\program\.\temp\temp_dm\com.sap.util.monitor.jarm.ccms.jar. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineLib620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.util.monitor.jarm.ccms finished with Error (Duration 7719 ms)
    Starting Deployment of com.sap.util.monitor.jarm.j2ee
    Aborted: development component 'com.sap.util.monitor.jarm.j2ee'/'sap.com'/'SAP AG'/'7.0013.20051128142456.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\program\.\temp\temp_dm\com.sap.util.monitor.jarm.j2ee.jar. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is: ; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\program\.\temp\temp_dm\com.sap.util.monitor.jarm.j2ee.jar. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineLib620OnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.util.monitor.jarm.j2ee finished with Error (Duration 7672 ms)
    Starting Deployment of com.sapmarkets.mesyncjco
    Deployment of com.sapmarkets.mesyncjco was skipped (Duration 7532 ms)
    Starting Deployment of com.sapportals.htmlb
    Deployment of com.sapportals.htmlb was skipped (Duration 7187 ms)
    Starting Deployment of com.sap.engine.services.webservices.tool
    Deployment of com.sap.engine.services.webservices.tool was skipped (Duration 7172 ms)
    Starting Deployment of com.sapportals.htmlb.ear
    Deployment of com.sapportals.htmlb.ear was skipped (Duration 7204 ms)
    Starting Deployment of sl.ut.content.nw
    Aborted: development component 'sl.ut.content.nw'/'sap.com'/'SAP AG'/'7.0014.20071123054250.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of sl.ut.content.nw finished with Error (Duration 7750 ms)
    Starting Deployment of sl.ut.infoprovider
    Aborted: development component 'sl.ut.infoprovider'/'sap.com'/'SAP AG'/'7.0014.20071123054250.0000'/'3', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\sl.ut.infoprovider\SAP AG\3\7.0014.20071123054250.0000\sap.com~sl.ut.infoprovider.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is: ; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\sl.ut.infoprovider\SAP AG\3\7.0014.20071123054250.0000\sap.com~sl.ut.infoprovider.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is:
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineCompOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of sl.ut.infoprovider finished with Error (Duration 7391 ms)
    Starting Deployment of sl/ut/info
    Deployment of sl/ut/info was skipped (Duration 7125 ms)
    Starting Deployment of tc/SL/CMS/Util
    Aborted: development component 'tc/SL/CMS/Util'/'sap.com'/'SAP AG'/'7.0014.20071002095021.0000'/'1', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071123073950''/'1':
    Caught exception during library deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform action deploy on component library D:\usr\sap\ABA\DVEBMGS01\SDM\root\origin\sap.com\tc\SL\CMS\Util\SAP AG\1\7.0014.20071002095021.0000\CMSutil.sda. Reason: java.rmi.RemoteException: Only Administrators have the right to perform this operation.
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deployLibrary(DeployServiceImpl.java:1463)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:336)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Exception is: ; nested exception is:      com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot perform acti

    update please..??
    Edited by: Pratyusha on Sep 25, 2008 10:58 AM
    Edited by: Pratyusha on Sep 26, 2008 10:25 AM

  • Java.rmi.RemoteException:  newServlets not found

    I am developing a java servlet using J2EE 1.4 RI.
    I have developed a new application called newServlets.ear. This application has a web component named Servlet1. When I click on Tools, Deploy I get the following error:
    stop newServlets
    running...
    java.rmi.ServerException: RemoteException occured in server thread; nested exception is:
    java.rmi.RemoteException: newServlets not found; nested exception is
    javax.management.InstanceNotFoundException: newServlets not found at
    com.sun.corba.se.internal.iiop.ShutdownUtilDelegate.mapSystemException(ShutdownUtilDelegate.java:61)
    at javax.rmi.CORBA.Util.mapSystemException(Util.java:65)
    at
    org.omg.stub.com.sun.enterprise.tools.deployment.backend.JarInstaller_Stub.stop(Unknown Source)
    The J2EE RI Verifier produces no failed tests or warnings.
    I have no idea what is causing this. Each time this happens, the Command Prompt window that is running J2ee server displays the message:
    Stop recieved
    I have tried stopping and restarting both the j2ee server and deploytool, but this has not fixed the problem.
    In my servlet, I would like to take information that has been entered into an HTML text field and add it to a MS Access database. I have the following code in my servlet to load the driver:
    final String pathConnection="jdbc:odbc:"+dataBase;
    con = null;
    String driverName="sun.jdbc.odbc.JdbcOdbcDriver";
    try{
    try{
    Class.forName(driverName);
    System.out.println("OK");
    catch (ClassNotFoundException e)
    System.out.println(" ERROR : driver not found");
    e.printStackTrace();
    }//end inner try/catch
    System.out.println("Drivers (DriverManager.getDrivers()) :");
    con = DriverManager.getConnection(pathConnection, "", "");
    }//end outer try block
    catch (Exception e)
    e.printStackTrace();
    }//end outer catch
    The following code is being used to enter the data into the database:
    try {
    stmt = con.prepareStatement(
    "INSERT INTO User (emailAddress, passWord) VALUES (?, ?)");
    stmt.setString(1, emAddress);
    stmt.setString(2, passWord);
    stmt.executeUpdate();
    catch (SQLException e) {
    System.err.println(e);
    e.printStackTrace();
    finally {
    con.close();
    Is it possible that something in the code above is causing the problem??
    Please help!!
    I am running J2EE 1.4 RI and J2SDK1.4.1_01 on Windows XP Professional.

    java.rmi.ServerException: RemoteException occured in
    server thread; nested exception is:
    java.rmi.RemoteException: newServlets not found;
    nested exception is
    javax.management.InstanceNotFoundException:
    newServlets not found at
    I'm having a similar problem trying to deploy an EJB on the j2ee 1.4 ri. It appears to be some sort of JMX problem. I suspect it has something to do with having a wrong value somewhere in the sun-j2ee-ri.xml descriptor, but I haven't figured it out yet. If you have, can you let me know what you did to fix it?
    Thanks,
    Steve

  • JAX-RPC Client - java.rmi.RemoteException:/getPort best practices

    We are working on java webservices(JAX-RPC style) and while consuming Java WebService sometime getting ‘Remote Exception’ .I have generated client side code with weblogic ant task “clientgen”.
    1: Exception
    java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [Failed to invoke end component {service implementation class name} (POJO), operation= {webmethode name}
    -> Failed to invoke method
    ] FaultActor [null] Detail [<detail><java:string xmlns:java="java.io">java.lang.NullPointerException
    </java:string></detail>]; nested exception is:
    weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Failed to invoke end component {service implementation class name} (POJO), operation={webmethode name}
    -> Failed to invoke method
    {Package name}.ManagementPortType_Stub.createXXX(xxxPortType_Stub.java:37) // This line is clientgen generated code
    {From this line its clear that clientgen generated code failed to get webservice port}
    2: Following is our implementation to invoke webservice:
    ManagementService service =
    new ManagementService_Impl(“WSDL URL”)
    ManagementPortType port = service.getManagerHTTPPort();
    Port.getServiceName();
    Our code is executing first two lines for every webservice request, and as per our observation these two lines (mark in bold) is taking long time to execute and due to this sometime gives ‘remote exception’ (when there is more request for web service consumption).
    3: My questions:
    1> Why does it take so long on initialization of service and port object?
    2> Is there any problem if I share “port” object for multiple request?
    3> what are the best practices in this type of implementation?
    Help would be greatly appreciated !

    Hi,
    Thanks for your reply.
    My service is deployed and working fine.
    NPE is due to {Package name}.ManagementPortType_Stub is null and code is executing createXXX() methode on it.
    Anyway i cant do anaything here because this is a clientgen generated code.

  • Testing my WebService through WSADMIN I am getting java.rmi.RemoteException

    Hello,
    I am testing my WebService with name ZEDI_GET_TPDATA_WSD through WSADMIN. It opens the WebService Home Page.
    Overe there I put my User Name and Password.
    Then I click on Test. But when I click on Operations
    "ZediGetTpdata (test.types.p1.ZediGetTpdata parameters)".
    It gives me below error
    Cannot find operation: wsdl = http://zhmscaqb.whirlpool.com:7992/sap/bc/srt/rfc/sap/ZEDI_GET_TPDATA_WSD?sap-client=800&wsdl=1.1, endpoint = ZEDI_GET_TPDATA_WSDSoapBinding, operation = public abstract test.types.p1.ZediGetTpdataResponse test.ZEDI_GET_TPDATA_WSD.zediGetTpdata(test.types.p1.ZediGetTpdata) throws java.rmi.RemoteException,test.ZediGetTpdataRfcException
    Pls suggest.
    Regards

    what is ZEDI_GET_TPDATA_WSD ?
    is it a web service developed in java or is it a RFC exposed as a web service?

  • 1)unexpected Exception:page fault accessing tag table 2)java.rmi.MarshalException:Unexpected Exception page fault accessing page table

    i am trying to call WCF service by using Jsr 172 method
    but i got the two error
    1)unexpected Exceptionage fault accessing tag table
    2)java.rmi.MarshalException:Unexpected Exception page fault accessing page table
    does anybody knows about how to solve this error.
    Plz help me
    thanks in advance!!!!!!!!!!!
      My Code is:-----
    package com.rim.sample.webservicedemo;
    import java.rmi.RemoteException;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.MainScreen;
    public class webservice extends UiApplication
        public webservice()
            pushScreen(new myscreen());
        public static void main(String[] args)
            webservice t=new webservice();
            t.enterEventDispatcher();
    final class myscreen extends MainScreen implements FieldChangeListener
        //taking this program from :-http://blog.bayestech.com/?p=78
         public myscreen()
             setTitle("HI");
             ButtonField g=new ButtonField("OK",ButtonField.CONSUME_CLICK);
             g.setChangeListener(this);
             add(g);
        public void fieldChanged(Field field, int context)
            try
                testServiceCall();
            catch (RemoteException e)
                Dialog.alert(e.getMessage());
                Dialog.alert(e.toString());
         public void testServiceCall() throws RemoteException
                TestService_Stub service = new TestService_Stub();
                //String  message = service.helloWorld();
               // Dialog.alert(message);
              // String  message2=service.echoName("ankush,nilesh,chetan,ravi");
                //Dialog.alert(message+"  second message  "+message2);
                // Object addition_output=service.addition(7,2);
                 //Dialog.alert("your addition is" +  String.valueOf(addition_output));
                 String  login_message = service.logOn_method("abcdefg","aaaaa");
                 Dialog.alert("login successfully");
                 Dialog.alert(login_message);
    //////////////TestService_Stub class file///////////////////////
    package com.rim.sample.webservicedemo;
    import java.rmi.RemoteException;
    import javax.xml.rpc.JAXRPCException;
    import javax.xml.namespace.QName;
    import javax.microedition.xml.rpc.Operation;
    import javax.microedition.xml.rpc.Type;
    import javax.microedition.xml.rpc.ComplexType;
    import javax.microedition.xml.rpc.Element;
    import net.rim.device.api.ui.component.Dialog;
    public class TestService_Stub implements TestService,javax.xml.rpc.Stub
        ///calling web services by using jsr-172 method
        //website link :- http://blog.bayestech.com/?p=78
        private String[] _propertyNames;
        private Object[] _propertyValues;
      //  private Object[] _propertyValues1;
        public TestService_Stub()
            _propertyNames = new String[] { ENDPOINT_ADDRESS_PROPERTY };
           // _propertyValues = new Object[] { "http://test.bayestech.com/Services/TestService.asmx" };
          // _propertyValues = new Object[] { "http://soft21/testWCF/Service.svc" };
            _propertyValues = new Object[] { "< url name >" };
     protected void _prepOperation(Operation op)
            for (int i = 0; i < _propertyNames.length; ++i)
                op.setProperty(_propertyNames[i], _propertyValues[i].toString());
     public String logOn_method(String usr_name,String password_name ) throws java.rmi.RemoteException
          Object inputObject[] = new Object[]
                  usr_name,
                  password_name
          Operation op = Operation.newInstance( _qname_operation_logOn, _type_logOn, _type_logOnResponse );
          _prepOperation( op );
          op.setProperty( Operation.SOAPACTION_URI_PROPERTY, "<soap action name >" );
          Object resultObj;
          try
              resultObj = op.invoke( inputObject );
              Dialog.alert((String)resultObj);
          catch( JAXRPCException e )
              Throwable cause = e.getLinkedCause();
              if( cause instanceof java.rmi.RemoteException )
                  throw (java.rmi.RemoteException) cause;
              Dialog.alert(e.getMessage());
              throw e;
          return (String )((Object[])resultObj)[0];
     protected static final QName _qname_operation_logOn = new QName( "<soap action name>", "logOn" );
        protected static final QName _qname_logOnResponse = new QName( "<soap action name>", "logOnResponse" );
        protected static final QName _qname_logOn = new QName( "<soap action name>", "logOn" );
        protected static final Element _type_logOn;
        protected static final Element _type_logOnResponse;
        static
     _type_logOn = new Element( _qname_logOn, _complexType( new Element[] {
                 new Element( new QName( "<soap action name>", "usr_name" ), Type.STRING, 0, 1, false ),
                 new Element( new QName( "<soap action name>", "password_name" ), Type.STRING, 0, 1, false )}), 1, 1, false );
            _type_logOnResponse = new Element( _qname_logOnResponse, _complexType( new Element[] {
                  new Element( new QName( "<soap action name>", "logResult" ), Type.INT, 0, 1, false )}), 1, 1, false );
        private static ComplexType _complexType( Element[] elements )
            ComplexType result = new ComplexType();
            result.elements = elements;
            return result;
        public void _setProperty(String name, Object value) {
            // TODO Auto-generated method stub
        public Object _getProperty(String name) {
            // TODO Auto-generated method stub
            return null;
        public String echoName(String name) throws RemoteException {
            // TODO Auto-generated method stub
            return null;
        public String helloWorld() throws RemoteException {
            // TODO Auto-generated method stub
            return null;
    i am trying to call WCF service by using Jsr 172 method
    but i got the two error
    1)unexpected Exceptionage fault accessing tag table
    2)java.rmi.MarshalException:Unexpected Exception page fault accessing page table
    does anybody knows about how to solve this error.
    Plz help me
    thanks in advance!!!!!!!!!!!
      My Code is:-----
    package com.rim.sample.webservicedemo;
    import java.rmi.RemoteException;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.MainScreen;
    public class webservice extends UiApplication
        public webservice()
            pushScreen(new myscreen());
        public static void main(String[] args)
            webservice t=new webservice();
            t.enterEventDispatcher();
    final class myscreen extends MainScreen implements FieldChangeListener
        //taking this program from :-http://blog.bayestech.com/?p=78
         public myscreen()
             setTitle("HI");
             ButtonField g=new ButtonField("OK",ButtonField.CONSUME_CLICK);
             g.setChangeListener(this);
             add(g);
        public void fieldChanged(Field field, int context)
            try
                testServiceCall();
            catch (RemoteException e)
                Dialog.alert(e.getMessage());
                Dialog.alert(e.toString());
         public void testServiceCall() throws RemoteException
                TestService_Stub service = new TestService_Stub();
                //String  message = service.helloWorld();
               // Dialog.alert(message);
              // String  message2=service.echoName("ankush,nilesh,chetan,ravi");
                //Dialog.alert(message+"  second message  "+message2);
                // Object addition_output=service.addition(7,2);
                 //Dialog.alert("your addition is" +  String.valueOf(addition_output));
                 String  login_message = service.logOn_method("abcdefg","aaaaa");
                 Dialog.alert("login successfully");
                 Dialog.alert(login_message);
    //////////////TestService_Stub class file///////////////////////
    package com.rim.sample.webservicedemo;
    import java.rmi.RemoteException;
    import javax.xml.rpc.JAXRPCException;
    import javax.xml.namespace.QName;
    import javax.microedition.xml.rpc.Operation;
    import javax.microedition.xml.rpc.Type;
    import javax.microedition.xml.rpc.ComplexType;
    import javax.microedition.xml.rpc.Element;
    import net.rim.device.api.ui.component.Dialog;
    public class TestService_Stub implements TestService,javax.xml.rpc.Stub
        ///calling web services by using jsr-172 method
        //website link :- http://blog.bayestech.com/?p=78
        private String[] _propertyNames;
        private Object[] _propertyValues;
      //  private Object[] _propertyValues1;
        public TestService_Stub()
            _propertyNames = new String[] { ENDPOINT_ADDRESS_PROPERTY };
           // _propertyValues = new Object[] { "http://test.bayestech.com/Services/TestService.asmx" };
          // _propertyValues = new Object[] { "http://soft21/testWCF/Service.svc" };
            _propertyValues = new Object[] { "< url name >" };
     protected void _prepOperation(Operation op)
            for (int i = 0; i < _propertyNames.length; ++i)
                op.setProperty(_propertyNames[i], _propertyValues[i].toString());
     public String logOn_method(String usr_name,String password_name ) throws java.rmi.RemoteException
          Object inputObject[] = new Object[]
                  usr_name,
                  password_name
          Operation op = Operation.newInstance( _qname_operation_logOn, _type_logOn, _type_logOnResponse );
          _prepOperation( op );
          op.setProperty( Operation.SOAPACTION_URI_PROPERTY, "<soap action name >" );
          Object resultObj;
          try
              resultObj = op.invoke( inputObject );
              Dialog.alert((String)resultObj);
          catch( JAXRPCException e )
              Throwable cause = e.getLinkedCause();
              if( cause instanceof java.rmi.RemoteException )
                  throw (java.rmi.RemoteException) cause;
              Dialog.alert(e.getMessage());
              throw e;
          return (String )((Object[])resultObj)[0];
     protected static final QName _qname_operation_logOn = new QName( "<soap action name>", "logOn" );
        protected static final QName _qname_logOnResponse = new QName( "<soap action name>", "logOnResponse" );
        protected static final QName _qname_logOn = new QName( "<soap action name>", "logOn" );
        protected static final Element _type_logOn;
        protected static final Element _type_logOnResponse;
        static
     _type_logOn = new Element( _qname_logOn, _complexType( new Element[] {
                 new Element( new QName( "<soap action name>", "usr_name" ), Type.STRING, 0, 1, false ),
                 new Element( new QName( "<soap action name>", "password_name" ), Type.STRING, 0, 1, false )}), 1, 1, false );
            _type_logOnResponse = new Element( _qname_logOnResponse, _complexType( new Element[] {
                  new Element( new QName( "<soap action name>", "logResult" ), Type.INT, 0, 1, false )}), 1, 1, false );
        private static ComplexType _complexType( Element[] elements )
            ComplexType result = new ComplexType();
            result.elements = elements;
            return result;
        public void _setProperty(String name, Object value) {
            // TODO Auto-generated method stub
        public Object _getProperty(String name) {
            // TODO Auto-generated method stub
            return null;
        public String echoName(String name) throws RemoteException {
            // TODO Auto-generated method stub
            return null;
        public String helloWorld() throws RemoteException {
            // TODO Auto-generated method stub
            return null;

    Vishnu,
    I'm working on Ludwig's testcase.
    Ludwig's testcase is based on read-only View Objects.
    Is it also the case in your application ?
    I was unable to reproduce with VOs based on EOs.
    With read-only VOs, you can avoid the ArrayIndexOutOfBoundsException by setting the "Key Attribute" property for the PK of the Master VO.
    See the ADF Developer's Guide, topic "7.9.3 What You May Need to Know About Enabling View Object Key Management for Read-Only View Objects"
    URL: http://download-uk.oracle.com/docs/html/B25947_01/bcvoeo009.htm#BABJEEFA
    Regards,
    Didier.

  • Java.rmi.MarshalException:....Broken pipe (plz help)

    Hi,
    I tried to run one simple RMI application..
    I got the RMI Server running...
    But While running the client I got the following Exception...
    java.rmi.MarshalException: error marshalling arguments; nested exception is:
    java.net.SocketException: Broken pipe
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:129)
    at engine.ServerMain_Stub.addTask(Unknown Source)
    at client.ClientMain.initCompute(ClientMain.java:38)
    at client.ClientMain.main(ClientMain.java:17)
    Caused by: java.net.SocketException: Broken pipe
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:66)
    at java.io.BufferedOutputStream.write(BufferedOutputStream.java:105)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1639)
    at java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(ObjectOutputStream.java:1548)
    at java.io.ObjectOutputStream.writeNonProxyDesc(ObjectOutputStream.java:1146)
    at java.io.ObjectOutputStream.writeClassDesc(ObjectOutputStream.java:1100)
    at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1241)
    at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052) at java.io.ObjectOutputStream.writeFatalException(ObjectOutputStream.java:1355)
    at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:281)
    at sun.rmi.server.UnicastRef.marshalValue(UnicastRef.java:265)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:124)
    ... 3 more
    I am not able to understand the problem...
    Plz help..
    Regerds
    Jijo Vincent

    Hi, I got same stack trace within RMIConnector.
    MBean Server (= RIM Server) has bean alive, but a MBean client may get following Exception.
    I'm guessing that a port on server side was closed, cause rmi object on server side was unbinded from the rmi registory by some trigger.
    But I don't know what was the trigger for this...
    Caused by: java.rmi.MarshalException: error marshalling arguments; nested exception is:
    java.net.SocketException: Broken pipe
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:138)
    at com.sun.jmx.remote.internal.PRef.invoke(Unknown Source)
    at javax.management.remote.rmi.RMIConnectionImpl_Stub.invoke(Unknown Source)
    at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:993)
    at javax.management.MBeanServerInvocationHandler.invoke(MBeanServerInvocationHandler.java:288)
    ... 7 more
    Caused by: java.net.SocketException: Broken pipe
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
    at java.io.BufferedOutputStream.write(BufferedOutputStream.java:109)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1847)
    at java.io.ObjectOutputStream$BlockDataOutputStream.writeByte(ObjectOutputStream.java:1885)
    at java.io.ObjectOutputStream.writeFatalException(ObjectOutputStream.java:1546)
    at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:333)
    at sun.rmi.server.UnicastRef.marshalValue(UnicastRef.java:274)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:133)
    ... 11 more
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.6.0_24-b07
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Sun Microsystems Inc.
    java.specification.version = 1.6
    os.arch = amd64
    os.name = Linux
    os.version = 2.6.18-194.el5

  • Java.rmi.MarshalException: Exception

    hi,
    i am getting the below error while displaying the data from a servlet. Here in servlet i had written the code to store values. And then i had written a function "getDetails()" which will give result set object. At that time i am getting this error. This method code is in bena class.
    In servlet this is the code i had wriiten
    InitialContext initContext=new InitialContext();
                        home=(InsuranceHome)initContext.lookup(ejbJndiName);
                        remote=home.create();
                        int n=remote.insertDetails(cname,frm_date,to_date,type,ppaid,rmks);
                        ResultSet rs=remote.getResults();
                        while(rs.next())
                             System.out.print(rs.getString(1));
                             System.out.print(rs.getString(2));
                             System.out.print(rs.getString(3));
                             System.out.println(rs.getString(4));
                        System.out.println(n);
    [10/Apr/2008:11:34:06] INFO ( 3108): CORE3282: stdout:      java.rmi.MarshalException: Exception occurred in server thread; nested exception is:
    [10/Apr/2008:11:34:06] INFO ( 3108): CORE3282: stdout:      java.io.NotSerializableException

    the NEVER used here, is it an EJB specification issue or design issue. If EJB specification issue then you should be right of which i am not sure. Please quote reference.
    If design issue then NEVER is wrong. Its depends on task to be addressed. Data Transfer Pattern allows the use of Rowset to exchange data between clients and servers.These options are either DTOs, containers, RowSets all are serializabel.How will you managed bandwidth and memory issues in a critical application where by clients needs to get a copy of data store in their memory(delete,update, insert) and after finished with their task they simply click synchronized.
    this copy(rowset) in client is simply sent to sever for updates rather than doing update, insert, delete request to server for every operation.
    This is a pattern design issue and the choice of Data Transfer Object depends on the task and type of communication between clients and server.
    A RowSet in the situation whereby 1. number of request to server has to be reduced, 2. connection to server has to be minimal. 3. each client gets a copy of his data as a snapshot of server contents processed it an then do synchronization when needed(bulk).Also this is issued when memory of client is a big issue like mobiles so installing a DB on the mobile is not possible. The rowset sent to client must not hold a connection to DB.
    Ivo Sumelong

  • Rmic and java.rmi troubles

    Hi
    Have been trying to run the rmi calculator-example at http://java.sun.com/developer/onlineTraining/rmi/RMI.html, but keep getting:
    Exception in thread "main" java.lang.InternalError: Unexpected exception while defining class CalculatorImpl
    <<No stacktrace available>>
    Caused by: java.lang.ClassNotFoundException: java.rmi.server.UnicastRemoteObject not found in [file:./, core:/]
    <<No stacktrace available>>
    when i do ">rmic CalculatorImpl"
    Suspected at first that it was a classpath-problem. But using ">rmic -classpath c:\j2sdk1.4.2_05\lib CalculatorImpl" gave the same error.
    Anyone know why I get this error?
    regards

    Sorry, my error, I didn't read your post closely.
    Exception in thread "main" java.lang.InternalError: Unexpected exception while defining class CalculatorImplInternal Error = Thrown to indicate some unexpected internal error has occurred in the Java Virtual Machine.
    VirtualMachineError =Thrown to indicate that the Java Virtual Machine is broken or has run out of resources necessary for it to continue operating.
    I would have to take a wild guess and that wouldn't be fair to you. Normally I would congradulate you on breaking the JVM but I don't suppose you're ready for that yet.

  • Avoid java.rmi.NoSuchObjectException: Stateful SessionBean has timed-out

    I have a "java.rmi.NoSuchObjectException: Stateful SessionBean has timed-out" error when I call a statefull session bean after timeout,
    I would like to check if a bean was removed before calling a method (and so generate a rmi.NoSuchObjectException).

    No you wouldn't. It could time out between the check and the call. The correct way to do it is the way you are already doing it: attempt the operation and deal with the failure.

  • Check java.rmi.Remote client alive?

    Hi,
    I have a Client program which extends java.rmi.Remote and a Server program which has a method Connect(java.rmi.Remote client).
    in my Server program, I add the "java.rmi.Remote client" stub reference into a vector when any client calls the remote method Connect(java.rmi.Remote client).
    when I am trying to check if the client is still alive, how could i make use of the stub reference to do so? I have check if the reference is null but it doesn't work.
    Thank you for any help.

    I am checking on the client without client knowing it. i need to use this when any of the client call my server method to shut down.
    i will need to check that no client are connected or alive before shutting down the server. this is why the operation have to be transparent to all other client.
    Yet i could not change the callback interface as it has been published and there are all sort of clients connecting to the server using this interface.
    Probably could I achieve that using socket connection ?
    i would appreciate if someone could suggest a solution to it. Thank you.
    Message was edited by:
    eddy_nyp

Maybe you are looking for

  • Why I can't print on any wifi printer?

    I use my iPad 2 in my enterprise, and also at home. Apple advertised that iPad was the first device that is the real alternative to home Pc and also for some enterprise works. In my experience of a few months with iPad 2,  i realize of the efforts do

  • BADI or User Exit validation of operations tab and displaying an error mess

    Hello, Could you please let me know the BADI or User Exit validation of operations tab and displaying an error message in iw32 Thanks, Suresh Mgl

  • Who is using SRM Invoice without Purchase Order?

    Hello, I want to implement SRM Invoice without Purchase Order as a method for our employees to enter their own non-purchase order invoices into SRM instead of having Accounts Payable enter them into R/3.  The invoices would then go through financial

  • Scope of a non-static method printing a vector of objects

    Hello everyone, I'm new to using the java.util.Vector package. I wanted to create a print out of all the objects of class "Student" that I created within a "students" vector. My problem is that scope is causing a compile error when calling the print

  • Empty univers list when using tier 3 connection

    Hello, I am having a problem on webi / deski with tier 3 connection mode. If i whant to create a new report, the list of univers ll be empty. When modifying a report, the only available univers will be those that are already used in one of the querie