XELSYSADM cannot Revoke a resource?

"Class/Method: ProvisionedResourcesForUserAction/revokeProvisionedResources encounter some problems: The logged in user does not have permissions to perform this operation"
In general, what permissions on Resource Objects, Process Form, Process Def, etc are required to be set for xelsysadm to Revoke ?
Edited by: 909921 on Jan 25, 2012 7:54 AM

With whom are you trying and which version of OIM are you using ?
By default, XELSYSADM has all the permissions in OIM.
Make sure that XELSYSADM has SYSTEM ADMINISTRATOR Group
Make sure that SYSTEM ADMINISTRATOR has permissions on Resource Object, Forms, Process Definition, IT Resource etc
If OIM 11g then also make sure that you don't have any Authorization Policy which is stopping XELSYSADM to perform Revoke Action.

Similar Messages

  • Cannot revoke resource if connection to resource is broken

    Have anybody noticed, that if you try to revoke resource from user, but connection is lost to resource, then the tasks in resource are in condition "Cancelled" and Resource stays in condition "Provisioned" and you CANNOT revoke again?
    If you want to disable this resource, then you get "ERROR,26 авг 2010 06:51:10,995,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: tcUserOperationsBean/disableAppForUser encounter some problems: maoErrors:Resource is already canceled, suspended or waiting."
    What can i do in this situation?
    Edited by: Конурбаев Евгений on 26.08.2010 0:09

    I believe that the revoke task is getting rejected and as a result the resource object is still in provisioned status.
    In this case,try creating a task which will display some error message and make sure that this error message is of type "Error".Attach this task to the "Recovery" region of "revoke task".
    This will roll back the current operation and reinstate the resource object to previous status.

  • Cannot find message resources under key

    Hi All,
    I get the following error in the JSP page in weblogic 9.2 environment. The same JSP works fine in 8.1
    Cannot find message resources under key ${language}' javax.servlet.jsp.JspException: Cannot find message resources under key ${language} at org.apache.struts.util.RequestUtils.retrieveMessageResources(RequestUtils.java:1103) at org.apache.struts.util.RequestUtils.message(RequestUtils.java:1043) at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:294) at org.apache.strutsel.taglib.bean.ELMessageTag.doStartTag
    The web.xml entry:
    <servlet><servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>application</param-name>
    <param-value>com.ccrg.resources.common.ApplicationResources</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    struts-config.xml entry:
    <message-resources parameter="resources.ApplicationResources"/>
    <message-resources parameter="resources.TextResources_Profile_en" key="TEXT_RESOURCES_PROFILE_en"/>
    <message-resources parameter="resources.TextResources_Profile_fr" key="TEXT_RESOURCES_PROFILE_fr"/>
    the login.jsp:
    <%@ taglib uri="/WEB-INF/avis-html.tld" prefix="avishtml" %>
    <%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html-el" %>
    <%@ taglib uri="/WEB-INF/struts-bean-el.tld" prefix="bean-el" %>
    <%@ taglib uri="/WEB-INF/struts-logic-el.tld" prefix="logic-el" %>
    <%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
    <c:set var="language" value="TEXT_RESOURCES_PROFILE_${SiteLanguage}/profile"/>
    </c:if>
    <bean-el:message key="profile.login.pi.memberLogin" bundle="${language}"/>
    thanks,
    Balaji

    Hi Balaji,
    Did you find any solution ?
    I have the same problem.
    Thanks in advance!

  • Cannot view LAN resources

    I can connect via VPN with the QVPN but once I am connected to my network I cannot view the resources available to me by LAN. I am nowhere near aware as to why.
    Please help.

    Hello Paul,
    If you are connect via VPN and can ping the routers LAN IP but not the internal resources there are two main reasons for this symptom.
    1- Default gateway of those clients pointing to a different router other than the QVPN router.
    2- OS' firewall or 3rd party firewall blocking subnets other than its own.
    Cisco Small Business Support Center
    Randy Manthey
    CCNA, CCNA - Security

  • Cannot find message resources under key org.apache.struts.action.MESSAGE ?

    Hi All,
    I am getting the following error.. while running a simple application in struts.
    Cannot find message resources under key org.apache.struts.action.MESSAGE ?
    As I have searched in google but could not find the concreate example so please help and give me a proper answer..
    my struts-config.xml file is as .....
    <code>
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
    "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd">
    <struts-config>
    <!-- ========== Form Bean Definitions ============ -->
    <form-beans>
         <form-bean name="login" type="test.struts.LoginForm" />
    </form-beans>
    <!-- ========== Global Forward Definitions ========= -->
    <global-forwards>
    </global-forwards>
    <!-- ========== Action Mapping Definitions ======== -->
    <action-mappings>
    <action
         path="/login"
         type="test.struts.LoginAction"
         name="login"
         input="/jsp/LoginView.jsp"
         validate="true">
         <forward name="valid" path="/jsp/MainMenu.jsp" />
         <forward name="invalid" path="/jsp/LoginView.jsp" />
         </action>
    </action-mappings>
    <message-resources null="false" parameter="test.struts.MessageResources"/>
    </struts-config>
    </code>
    And my LoginView.jsp file is as:
    <code>
    <!-- LoginView.jsp -->
    <%@ taglib uri="/struts/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/struts/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/struts/WEB-INF/struts-logic.tld" prefix="struts" %>
    <HTML>
    <HEAD><TITLE><bean:message key="title.login" /></TITLE></HEAD>
    <BODY>
    <bean:message key="heading.login" />
    <html:errors />
    <html:form action="/login">
         <p>
         <bean:message key="label.userId" />:
         <html:text property="userId" size="10" />
         <br>
         <bean:message key="label.passWord" />:
         <html:password property="passWord" size="10" />
         <br><br>
         <html:submit>
              <bean:message key="button.submit" />
         </html:submit>
    </html:form>
    </BODY>
    </HTML>
    </code>
    MessageResources.properties is as :
    <code>
    button.submit=Send for Verification
    error.no.userId=<li>User ID is a required field</li>
    error.no.passWord=<li>Password is a required field</li>
    error.invalid.login=<li>The User ID and/or Password are invalid. Please try again.</li>
    errors.footer=</ul><hr>
    errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul>
    label.userId=User ID
    label.passWord=Password
    heading.login=<H2>Enter your user information</H2>
    title.login=Login Screen
    title.mainmenu=Welcome
    heading.mainmenu=<H1>Welcome!</H1>
    label.userType=<H2>You are authorized to use this system as a</H2>
    </code>
    Please reply soon.
    Thanks in advance
    Amitindia

    Hi All,
    I am getting the following error.. while running a simple application in struts.
    Cannot find message resources under key org.apache.struts.action.MESSAGE ?
    As I have searched in google but could not find the concreate example so please help and give me a proper answer.. my struts-config.xml file is as .....
    <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE struts- 
      config PUBLIC "-//Apache Software Foundation//DTD Struts
    Configuration 1.0//EN" "http://jakarta.apache.org/struts/dtds/struts-
    config_1_0.dtd"> <struts-config> <!-- ========== Form Bean
    Definitions ============ --> <form-beans> <form-bean name="login"
    type="test.struts.LoginForm" /> </form-beans> <!-- ========== Global Forward Definitions ========= --> <global-forwards> </global-
    forwards> <!-- ========== Action Mapping Definitions ======== --> <action-mappings> <action path="/login" type="test.struts.LoginAction" name="login" input="/jsp/LoginView.jsp" validate="true"> <forward name="valid" path="/jsp/MainMenu.jsp" /> <forward name="invalid" path="/jsp/LoginView.jsp" /> </action> </action-mappings> <message-resources null="false" parameter="test.struts.MessageResources"/> </struts-config>
    And my LoginView.jsp file is as:
    <!-- LoginView.jsp --> <%@ taglib uri="/struts/WEB-INF/struts-html.tld" prefix="html" %> <%@ taglib uri="/struts/WEB-INF/struts-bean.tld" prefix="bean" %> <%@ taglib uri="/struts/WEB-INF/struts-logic.tld" prefix="struts" %> <HTML> <HEAD><TITLE><bean:message key="title.login" /></TITLE></HEAD> <BODY> <bean:message key="heading.login" /> <html:errors /> <html:form action="/login">
    <bean:message key="label.userId" />: <html:text property="userId" size="10" /> <br> <bean:message key="label.passWord" />: <html:password property="passWord" size="10" /> <br><br> <html:submit> <bean:message key="button.submit" /> </html:submit> </html:form> </BODY> </HTML>
    MessageResources.properties is as :
    button.submit=Send for Verification error.no.userId=<li>User ID is a required field</li> error.no.passWord=<li>Password is a required field</li> error.invalid.login=<li>The User ID and/or Password are invalid. Please try again.</li> errors.footer=</ul><hr> errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul> label.userId=User ID label.passWord=Password heading.login=<H2>Enter your user information</H2> title.login=Login Screen title.mainmenu=Welcome heading.mainmenu=<H1>Welcome!</H1> label.userType=<H2>You are authorized to use this system as a</H2>
    Please reply soon. Thanks in advance Amitindia                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Cannot add more resources

    Hi
    I have a en EJB bean (Order) accessing a central PrimaryKeyGenerator (another EJB in another application). I can obtain (and therfore contact) my PrimaryKey, but creating the order result in this exception. Any idea how so solved this?
    I'm using J2EE RI 1.3.1, and Oracle as DB.
    java.lang.IllegalStateException: Local transaction already has 1 non-XA Resource: cannot add more resources
         at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.enlistResource(J2EETransactionManagerOpt.java:80)
         at com.sun.enterprise.resource.SystemJdbcDataSource.internalGetConnection(SystemJdbcDataSource.java:77)
         at com.sun.enterprise.resource.SystemJdbcDataSource.getConnection(SystemJdbcDataSource.java:50)
         at com.sun.ejb.persistence.PersistenceManagerImpl.getConnection(PersistenceManagerImpl.java:588)
         at com.sun.ejb.persistence.PersistenceManagerImpl.getConnection(PersistenceManagerImpl.java:573)
         at com.sun.ejb.persistence.PersistenceManagerImpl.primaryKeyExists(PersistenceManagerImpl.java:273)
         at com.sun.ejb.persistence.PartitionImpl.afterEjbCreate(PartitionImpl.java:640)

    hi,
    i am experiencing the same problem. Could you please help me to configure an XA datasource for an Oracle database.
    what's written on the configuration guide leads me to a;
    "ClassNotFoundException for javax.transaction.xa.XAException"
    although the class seems to be in the classpath.
    what should be the classname for XADatasource for example?

  • Local transaction already has 1 non-XA Resource: cannot add more resources

    hi
    i am getting the following error :-
    java.lang.IllegalStateException: Local transaction already has 1 non-XA Resource: cannot add more resources
    java.lang.IllegalStateException: Local transaction already has 1 non-XA Resource: cannot add more resources
    at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.enlistResource(J2EETransactionManagerOpt.java:101)
    at com.sun.enterprise.resource.PoolManagerImpl.registerResource(PoolManagerImpl.java:196)
    at com.sun.enterprise.resource.PoolManagerImpl.getResource(PoolManagerImpl.java:172)
    at com.sun.enterprise.resource.JdbcDataSource.internalGetConnection(JdbcDataSource.java:241)
    at com.sun.enterprise.resource.JdbcDataSource.getConnection(JdbcDataSource.java:98)
    at ilog.rules.bres.persistence.jdbc.IlrDbDataSourceFactory.getInstance(Unknown Source)
    at ilog.rules.bres.persistence.jdbc.IlrDbDataGetter.<init>(Unknown Source)
    at ilog.rules.bres.xu.ruleset.jdbc.IlrJdbcRulesetInformationProvider.getDataProvider(Unknown Source)
    at ilog.rules.bres.xu.ruleset.IlrDefaultRulesetInformationProvider.initializeDataProvider(Unknown Source)
    at ilog.rules.bres.xu.ruleset.IlrDefaultRulesetInformationProvider.getCanonicalRulesetPath(Unknown Source)
    at ilog.rules.bres.xu.ruleset.IlrAbstractRulesetInformationProvider.getRulesetInformation(Unknown Source)
    at ilog.rules.bres.xu.spi.IlrManagedXUConnection.getRulesetInformation(Unknown Source)
    at ilog.rules.bres.xu.spi.IlrManagedXUConnection.createContextManager(Unknown Source)
    at ilog.rules.bres.xu.spi.IlrManagedXUConnection.getContextManager(Unknown Source)
    at ilog.rules.bre
    [16/Jun/2005:18:11:32] SEVERE ( 824): s.xu.spi.IlrManagedXUConnection.contextGetReflect(Unknown Source)
    at ilog.rules.bres.xu.cci.IlrXUConnection.contextGetReflect(Unknown Source)
    at ilog.rules.bres.xu.cci.IlrXUInteraction.contextGetReflect(Unknown Source)
    at ilog.rules.bres.xu.cci.IlrXUInteraction.dispatchExecution(Unknown Source)

    Any luck on this. We are also facing the same problme. When we use the typ4 driver it works fine but if we use type2 we are getting this error
    Unexpected exception while registering component
    javax.transaction.RollbackException

  • I have Macromedia Fireworks 3.0 and the install process doesn´t run! After the installation the message is: fireworks cannot run. the resource files are missing or damaged. I use Windows 8.1

    I have Macromedia Fireworks 3.0 and the install process doesn´t run! After the installation the message is: fireworks cannot run. the resource files are missing or damaged. I use Windows 8.1. Antworten auf Deutsch wären super!

    As far as I know there is no download resource for older Macromedia programs and it is highly unlikely that one as old as version 3 of Fireworks will be able to work on a Windows 8.1 system.  I was unable to get a Studio 8 version installation on a Vista system, and likely even an XP system (cannot remember that far back).

  • ORA-31127: RCList cannot contain noncommitted resource configuration

    Dear all,
    When I execute dbms_xdb.deleteresource, meet the error: RCList cannot contain noncommitted resource configuration.
    From the online manual, I notice that "Before performing any operation that uses a resource configuration file, you must perform a COMMIT operation. Until you do that, an ORA-22881 "dangling REF" error will be raised whenever you use the configuration file".
    Maybe this occured serveral days ago, that I issued a uncommited appendResourceConfig command. Now, how can I delete this folder from xdb repository. Somebody help me please, thanks.
    my oracle server version: Release 11.1.0.6.0
    Edited by: user1201051 on 2009-6-3 下午6:29
    Edited by: user1201051 on 2009-6-3 下午6:30

    more info about this question.
    when Ii issue below:
    select value(p).getClobVal() from xdb.xdb$resource p where equals_path(value(p),'/mypath')=1;
    I cannot found any rclist info, and when I lookup the XDBResource.xsd schema file, I found this line:
    <element xdb:propNumber="754" name="RCList" type="xdb:RCListType" xdb:memType="258" xdb:system="false" xdb:mutable="false" xdb:SQLName="RCLIST" xdb:SQLType="XDB$RCLIST_T" xdb:SQLSchema="XDB" xdb:JavaType="XMLType" xdb:global="true" xdb:hidden="true" xdb:baseProp="true" nillable="false" abstract="false" xdb:SQLInline="true" xdb:JavaInline="false" xdb:MemInline="false" xdb:maintainDOM="false" xdb:defaultTable="00" xdb:defaultTableSchema="XDB" xdb:JavaClassname="oracle.xdb.RCListBean" xdb:beanClassname="oracle.xdb.RCListBean" xdb:numCols="1" minOccurs="0" maxOccurs="1"/>
    which show xdb:hidden="true", Does this means that we could not query the rclist info, or maybe some other way to get this info?
    thanks for advance.
    Edited by: winger du on 2009-6-5 上午2:43

  • ThinkPad X230 - Test Instrument: "This device cannot find free resources that it can use (Code12)"

    I am use an ExpressCard (http://www.home.agilent.com/en/pd-2053520-pn-M9045B/pcie-expresscard-adapter) to connect Lenovo notebook with instrument chassis (http://www.home.agilent.com/en/pd-1886666-pn-M9018A/18-slot-pxie-chassis).
    I found that Lenovo notebook failed to enumerate with the instruments with error "This device cannot find free resources that it can use (Code12)" in device manager.
    This never happened in Lenovo model ThinkPad X220 and models before that.
    Other affected model:  ThinkPad T430, T540p which all failed to enumerate.
    Note: All notebooks are upgraded to latest BIOS. 

    You are going to need to move that card to another slot. That is definitely your problem. I had mine in the PCI-E X8 slot which then knocked my video card down to x8 as well. So this definitely takes up resources. Also you can use something like EVEREST of Sisoft Sandra and those will tell you what else is sharing with that card. You could have a difficult network card that is fighting with it as well. You may think that its onboard and that of course it would not fight, but it does.

  • Restore failure -cannot validate source -resource busy

    After a successful creation of bootcamp volume with XP and MS Office I found 11GB too small a partition. I made an image of my OS and installed software, reformatted to a single volume, created a larger 32GB partition and attempted to restore the image to the Bootcamp volume. Same error each time "restore failure -cannot validate source -resource busy"
    Stuck - any ideas?

    You used WinClone to backup and restore Windows?

  • Cannot access local resource file

    When I run my application on browser these error comes, I have found to change right click on project>properties>flex build path>libary path> framework linkage to "Merge into code"not working,
    I have also changed right click on project> properties>Flex compiler> Additional compiler arguments - -locale en_US to some -network false still its not working
    and undid whatever change i made,
    Help!
    SecurityError: Error #2148: SWF file http://localhost/aamshare-debug/aamshare.swf cannot access local resource file:///C|/wamp/www/aamshare-debug/media/bse.png. Only local-with-filesystem and trusted local SWF files may access local resources.
        at flash.display::Loader/_load()
        at flash.display::Loader/load()
        at mx.controls::SWFLoader/loadContent()[C:\autobuild\3.2.0\frameworks\projects\framework\src \mx\controls\SWFLoader.as:1611]
        at mx.controls::SWFLoader/load()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\con trols\SWFLoader.as:1380]
        at mx.controls::SWFLoader/initializeHandler()[C:\autobuild\3.2.0\frameworks\projects\framewo rk\src\mx\controls\SWFLoader.as:1971]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()[C:\autobuild\3.2.0\frameworks\projects\framework\src \mx\core\UIComponent.as:9298]
        at mx.core::UIComponent/set processedDescriptors()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UICom ponent.as:1217]
        at mx.core::UIComponent/initializationComplete()[C:\autobuild\3.2.0\frameworks\projects\fram ework\src\mx\core\UIComponent.as:5395]
        at mx.core::UIComponent/initialize()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx \core\UIComponent.as:5379]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[C:\autobuild\3.2.0\frameworks\pro jects\framework\src\mx\core\UIComponent.as:5267]
        at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[C:\autobuild\3.2.0\frameworks\pro jects\framework\src\mx\core\Container.as:3305]
        at mx.core::Container/addChildAt()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\c ore\Container.as:2217]
        at mx.core::Container/addChild()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\cor e\Container.as:2140]
        at mx.core::Container/createComponentFromDescriptor()[C:\autobuild\3.2.0\frameworks\projects \framework\src\mx\core\Container.as:3681]
        at mx.core::Container/createComponentsFromDescriptors()[C:\autobuild\3.2.0\frameworks\projec ts\framework\src\mx\core\Container.as:3493]
        at mx.containers::ViewStack/instantiateSelectedChild()[C:\autobuild\3.2.0\frameworks\project s\framework\src\mx\containers\ViewStack.as:1140]
        at mx.containers::ViewStack/commitProperties()[C:\autobuild\3.2.0\frameworks\projects\framew ork\src\mx\containers\ViewStack.as:664]
        at mx.core::UIComponent/validateProperties()[C:\autobuild\3.2.0\frameworks\projects\framewor k\src\mx\core\UIComponent.as:5807]
        at mx.managers::LayoutManager/validateProperties()[C:\autobuild\3.2.0\frameworks\projects\fr amework\src\mx\managers\LayoutManager.as:539]
        at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\3.2.0\frameworks\projects \framework\src\mx\managers\LayoutManager.as:659]
        at Function/http://adobe.com/AS3/2006/builtin::apply()
        at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\3.2.0\frameworks\projects\framew ork\src\mx\core\UIComponent.as:8628]
        at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\3.2.0\frameworks\projects\framewo rk\src\mx\core\UIComponent.as:8568]

    Since you are loading your swf over http, it will be placed in a remote sandbox and will not be able to access the local filesystem. You should load your png in the same way as your swf (ie. over http), or embed it into your application.

  • 0x800713CF: The owner node cannot run this resource (SQL)

    I have SQL 2012 SP2 service on 2 FC nodes of 2012 R2 servers. Everything were working fine about a year, but now my first Node got mixed up with updates and it is offline now. Problem is, that second Node cannot start SQL services By its own.
    I checked/tried:
    - I checked, that other services related to SQL are online.
    - I chenged Node´s ownership to SQL service
    - Cluster name has full Access rights to OU where all Computer record of this service are in place
    The error I get: 
    0x800713cf:The cluster resource cannot be brought online. The owner node cannot run this resource.

    Thank you both. I´m not sure, how to to check the workload. In FC graphical GUI, both nodes are memebers in owner group, same Place where the owner order can be changed or owner can be disabled. I gone through entire FC management snap-in
    and didn´t find any other places or settings to go through. The article kb313882 Umesh refers, is for Server 2008, and I have 2012 R2. Command
    cluster res <var> name of resource</var> /listowners is not supported (there is no such command). I got first node up and running, and then SQL services were ON again, but if I shutdown first Node, SQL services will go down
    and won´t come up. Disk storage are online and SP level matches.
    Please could you guide me step By step, how to check ownership in 2012 R2?

  • How to revoke a resource

    Hi,
    For Enable and Disable a resource the provisioning process has to have a task with Task Effect "Enable Process..." and "Disables Process...".
    Do I have something for a revoke task? When I click on the Revoke button, for example, the action is performed but the resource is not revoked. I have created a task that sets the object status to Revoked but I have to insert it manually.
    Doubt: What do I need to do to configure a revoke task?
    Thanks.

    Thanks Kevin. One more question...
    I noticed that OIM only fires the Undo Tasks if they are completed automatically. I have a scenario where the revoke task has to be manual, so for this case OIM does not trigger the undo tasks. It only works for the task that I set the tcCompleteTask.
    Is it possible to have the revoke task as a manual task?
    Thanks,
    Renato.

  • Quickvpn connected, but cannot use lan resources

    I have recently configured RVS4000 for VPN use.  The office LAN is the RVS4000 (IP 192.168.1.1) behind a Thomson 516 (in bridge mode, the RVS handling PPPoE authentification), 1 machine running xp pro used as a file and print server, 3 xp workstations.
    I just want to be able to access the server, which has a fixed IP of 192.168.1.50.  I don't care about accessing the workstations. Windows firewal on the server is off.
    Trying to connect from home machine which is another xp pro machine behind a d-link 524 and cable modem. windows firewall on home computer is off (di-524 firewall is on, I've lost the password and the unit is refusing to hard reset to defaults...).
    quickvpn will connect to the RVS4000 (as long as port is set to auto) (though sometimes the remote gateway will stop responding...don't know what's up with that), and I can ping each and every device on the office LAN, including the server and the networked multifunction office machine (which prints, scans and faxes beautifully over the office LAN).  I can log into each and every web interface connected to the office LAN
    The RVS4000 is meticulously set up with each and every firewall rule I've seen mentioned re. quickvpn.
    I understand that quickvpn does not give you a local IP on the target LAN, and that it does not support netbios.  However, I have read and been told that it should allow to access fileshares and printers.  But these do not work.
    After some research, I set up a networked drive by IP address and folder on the server. It looks right, displays correct size and capacity info and browses nice and fast.  However, any attempt to save to the file server results in a file save error, data lost, connection may have been lost error message out of the windows taskbar.
    Also, trying to set up printer (either as standalone network device by IP address, which worked great when setting up the office LAN, or via the server (to which it is locally connected) results in a bad hang and/or ultimately, the printer cannot be found error message.
    I've tried running remote desktop on the server (by IP). It connects great, but then hangs, useless.
    Phone tech support says that must be a windows file permission problem, but the file server is using plain vanilla full file sharing that works real well on the office LAN.  I've even assigned the home machine the same workgroup and domain as the office LAN (though since netbios isn't supported, didn't think it would do anything, and it didn't).
    Any thoughts on making this work, or have I just wasted our money and nearly an entire week of my time?

    Dvandusen,
    I understand that you are able to connect with no problem (for the most part) via QVPN to the RVS, and you have access to remote resources; however, they are not useable.
    I will try to make suggestions based on this.
    First, your D-Link router is most likely giving you an IP of 192.168.0.x, is this correct? (for this conversation I will assume correct)
    Since your RVS is still default and has 192.168.1.0 network ID, for some reason this can cause problems. Typically I like to set up the routers for QVPN with an IP that is not very common, like 192.168.212.0 /24. The part that is key is ensuring both local networks are not the same, but really not similar in any manner. I know they are different right now, but "1" and "0" (as in 192.168.0 or 192.168.1.) are not good numbers to use. I wish I knew exactly why.
    Another thing that caught my attention is this:
    "After some research, I set up a networked drive by IP address and folder on the server. It looks right, displays correct size and capacity info and browses nice and fast.  However, any attempt to save to the file server results in a file save error, data lost, connection may have been lost error message out of the windows taskbar."
    This part is a little confusing, but I think is that you have created a mapped drive on your computer for a share on the server. You are able to access files, but not able to save them. Once you get the error message are still able to access the mapped drive?
    "Trying to connect from home machine which is another xp pro machine behind a d-link 524 and cable modem. windows firewall on home computer is off (di-524 firewall is on, I've lost the password and the unit is refusing to hard reset to defaults...)."
    I would really look into your router and why is it not able to factory default. One thing that is very important that gets missed very often is the Windows Firewall. You checked and made sure it was off, but have you looked at the service to make sure it is not running. Turning the firewall off from the GUI is not the same. It should be but is not.
    To turn off the service click on start > Run > Type "services.msc" without quotes. When the services window opens, scroll down to "Windows Internet Connection Sharing (ICS)" and stop the service.
    Try the connection again and see if you are able to get what you need. If so go ahead and just disable the service.
    Let us know if this helps out.

Maybe you are looking for