How to Stop a Scheduled Task in OIM
OIM Scheduled Tasks must be written to recognize the stop execution method. Below is an example of how to accomplish this
- Declare a boolean field (we will refer here it as "flag" from here onwards) in your schedule task code.
- Implement the stop() method in your schedule task. This method is invoked whenever you select the "Stop Execution" option on a running schedule task and save the entry using the Task Scheduler form .
- Try to set the flag(as defined in step 1) to a boolean value in this stop() method so that this flag's value can be used in the main execute() method to control and stop execution of the running of execute method where you will iteratively process records obtained on search on the target from which you are reconciling.
- Put an implementation in your schedule task source code based on logic mentioned in the sample code given below to implement stop() method:
The Xellerate Application won't come up after the the install.
Steps To Reproduce:
To implement the solution, please execute the following steps:
- Try installing OIM by recopying and extracting the existing installer zip file on a certified environment.
- If it doesn't work, download the OIM installer again from the OTN website and then try a new install.
NOTE: Installing OIM on VMware images is not supported, tested, and certified.
Can The Entire 'Help' Menu Groups be Removed in OIM?
'Help' menu items are basically hard-coded in the source code and this can not be removed completely. You can however remove its pointed URL.
Please follow the below steps .
You need to modify two files to achieve this.
1)xlDefaultAdmin.properties(((<jboss-4.0.3SP1>\server\default\deploy\XellerateFull.ear\xlWebAp
p.war\WEB-INF\classes)
2)strusts-config.xml((<jboss-4.0.3SP1>\server\default\deploy\XellerateFull.ear\xlWebApp.war\WE
B-INF)
Please followthe below steps.
1)Open xlDefaultAdmin.properties,search help and comment all as below by this modification help
menu will be there but you won't be get help page by clicking.
#help=images/help.gif
#menuItem.Help.User-Guide.link=userguide/index.htm
2) Open strusts-config.xml file,remove path of JSPs and modify as below:
====
<!-- ========== Added by Jitendra for setting session ============================== -->
<action name="registrationHelpPageForm"
type="com.thortech.xl.webclient.actions.RegistrationHelpPageAction"
validate="false"
input="/tjspIndex.jsp"
scope="request"
path="/registrationHelp"
parameter="method">
<forward name="displayRegistrationHelpPage" path="" />
<forward name="displayLoginHelpPage" path="" />
</action>
<!-- <forward name="displayRegistrationHelpPage" path= "/tjspRegistrationHelp.jsp" />
<forward name="displayLoginHelpPage" path="/tjspLoginHelp.jsp" /> -->
=====
3)Restart your Apllication server and check the result.