0 Replies Latest reply on Mar 29, 2006 10:10 AM by dgarcia

    Problems with removeUser(..)

    dgarcia

      Hi all,

      our company is developing a portal for our customers.
      This portal is based on:

      * jboss-4.0.3SP1
      * jboss-portal-2.2.0

      downloaded from jboss.org.

      The problem we are actually facing is that we need to administer portal users from our own application and
      we are not able to delete any user from the portal.
      There is no problem creating portal users via userModule.createUser(...) but when we try to remove a user
      we run into problems.

      When the following code is executed:

      
       try {
       User myUser = (User) userModule.findUserByUserName(userName);
       userModule.removeUser(myUser.getId());
      
       } catch (ModuleException e) {
       _l.error("processDelPortalUser got exception while finding user <" + userName + "> " + e.getMessage() + ".");
       }
      
      



      we get the following:

      2006-03-29 16:18:58,514 ERROR [org.jboss.portal.core.command.InvokeWindowActionCommand] An portlet exception occured in portlet IC3SPortalConfig.IC3SPortalConfigPortlet
      java.lang.reflect.UndeclaredThrowableException
      at $Proxy173.removeUser(Unknown Source)
      at de.ic3s.portlets.jboss.IC3SPortalConfigPortlet.processDelPortalUser(IC3SPortalConfigPortlet.java:1086)
      at de.ic3s.portlets.jboss.IC3SPortalConfigPortlet.processAction(IC3SPortalConfigPortlet.java:209)
      at org.jboss.portlet.JBossPortlet.processAction(JBossPortlet.java:342)
      at org.jboss.portal.portlet.PortletContainer.invokeAction(PortletContainer.java:470)
      at org.jboss.portal.portlet.PortletContainer.dispatch(PortletContainer.java:411)
      at org.jboss.portal.server.app.ComponentInvocation.dispatch(ComponentInvocation.java:66)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:127)
      at org.jboss.portal.core.aspects.component.TransactionInterceptor.invoke(TransactionInterceptor.java:59)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.core.aspects.component.HeaderInterceptor.invoke(HeaderInterceptor.java:37)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.aspects.component.NavigationInterceptor.invoke(NavigationInterceptor.java:63)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.aspects.component.CacheInterceptor.invoke(CacheInterceptor.java:154)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.aspects.component.ModesInterceptor.invoke(ModesInterceptor.java:38)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.aspects.component.WindowStatesInterceptor.invoke(WindowStatesInterceptor.java:32)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.bridge.BridgeInterceptor.invoke(BridgeInterceptor.java:36)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.portlet.aspects.component.SessionPostDispatchInterceptor.invoke(SessionPostDispatchInterceptor.java:71)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.aspects.component.ContextDispatcherInterceptor$InvokeNextCommand.execute(ContextDispatcherInterceptor.java:116)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.portal.server.servlet.CommandServlet.doGet(CommandServlet.java:88)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
      at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
      at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:539)
      at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
      at org.jboss.portal.server.app.impl.AbstractRequestContext.include(AbstractRequestContext.java:234)
      at org.jboss.portal.server.aspects.component.ContextDispatcherInterceptor$1.include(ContextDispatcherInterceptor.java:60)
      at org.jboss.portal.server.servlet.CommandServlet.include(CommandServlet.java:68)
      at org.jboss.portal.server.aspects.component.ContextDispatcherInterceptor.invoke(ContextDispatcherInterceptor.java:66)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.portlet.aspects.component.SessionPreDispatchInterceptor.invoke(SessionPreDispatchInterceptor.java:97)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.aspects.component.ContextTrackerInterceptor.invoke(ContextTrackerInterceptor.java:36)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.portlet.aspects.component.SecureTransportInterceptor.invoke(SecureTransportInterceptor.java:56)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.portlet.aspects.component.ValveInterceptor.invoke(ValveInterceptor.java:51)
      at org.jboss.portal.server.app.ComponentInterceptor.invoke(ComponentInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.invocation.Invocation.invoke(Invocation.java:162)
      at org.jboss.portal.core.command.InvokeWindowActionCommand.execute(InvokeWindowActionCommand.java:131)
      at org.jboss.portal.core.command.ControllerCommand.dispatch(ControllerCommand.java:65)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:127)
      at org.jboss.portal.core.aspects.controller.EventBroadcasterInterceptor.invoke(EventBroadcasterInterceptor.java:72)
      at org.jboss.portal.core.command.CommandInterceptor.invoke(CommandInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.core.aspects.controller.PolicyEnforcementInterceptor.invoke(PolicyEnforcementInterceptor.java:156)
      at org.jboss.portal.core.command.CommandInterceptor.invoke(CommandInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.core.aspects.controller.PortalNodeInterceptor.invoke(PortalNodeInterceptor.java:48)
      at org.jboss.portal.core.command.CommandInterceptor.invoke(CommandInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.core.aspects.controller.NavigationInterceptor.invoke(NavigationInterceptor.java:45)
      at org.jboss.portal.core.command.CommandInterceptor.invoke(CommandInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.invocation.Invocation.invoke(Invocation.java:162)
      at org.jboss.portal.core.command.CommandContext.execute(CommandContext.java:94)
      at org.jboss.portal.core.command.ExecutionContext.execute(ExecutionContext.java:80)
      at org.jboss.portal.core.command.ExecutionContext.execute(ExecutionContext.java:64)
      at org.jboss.portal.core.CoreController.handle(CoreController.java:177)
      at sun.reflect.GeneratedMethodAccessor202.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:118)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
      at org.jboss.mx.util.JMXInvocationHandler.invoke(JMXInvocationHandler.java:273)
      at $Proxy139.handle(Unknown Source)
      at org.jboss.portal.server.ServerInvocation.dispatch(ServerInvocation.java:63)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:127)
      at org.jboss.portal.core.aspects.server.SubjectAssociationInterceptor.invoke(SubjectAssociationInterceptor.java:35)
      at org.jboss.portal.server.ServerInterceptor.invoke(ServerInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.core.aspects.server.PolicyAssociationInterceptor.invoke(PolicyAssociationInterceptor.java:40)
      at org.jboss.portal.server.ServerInterceptor.invoke(ServerInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.aspects.server.ContentTypeInterceptor.invoke(ContentTypeInterceptor.java:55)
      at org.jboss.portal.server.ServerInterceptor.invoke(ServerInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.core.aspects.server.LocaleInterceptor.invoke(LocaleInterceptor.java:56)
      at org.jboss.portal.server.ServerInterceptor.invoke(ServerInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.core.aspects.server.UserInterceptor.invoke(UserInterceptor.java:171)
      at org.jboss.portal.server.ServerInterceptor.invoke(ServerInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.aspects.server.SessionInvalidatorInterceptor.invoke(SessionInvalidatorInterceptor.java:74)
      at org.jboss.portal.server.ServerInterceptor.invoke(ServerInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.core.aspects.server.TransactionInterceptor.invoke(TransactionInterceptor.java:62)
      at org.jboss.portal.server.ServerInterceptor.invoke(ServerInterceptor.java:25)
      at org.jboss.portal.server.invocation.Invocation.invokeNext(Invocation.java:117)
      at org.jboss.portal.server.invocation.Invocation.invoke(Invocation.java:162)
      at org.jboss.portal.server.servlet.PortalServlet.doGet(PortalServlet.java:208)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
      at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
      at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
      at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
      at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
      at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
      at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
      at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
      at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
      at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
      at java.lang.Thread.run(Thread.java:534)
      Caused by: java.lang.NoSuchMethodException: Unable to find operation removeUser(java.lang.Object)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:209)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
      ...



      As far as we have seen, there is also no possibility to delete users via the UserPortlet.

      Any hints?