KM Scheduler task not listed

Hello Experts.
I've made a simple custom KM Scheduler task, but am unable to see it under System Configuration -> cm -> global services -> Scheduler Tasks. I've trawled the forum for leads, read blogs but have been unable to resolve what should be a straightfoward issue.
I've used NWDS Wizard to create the project. Renamed the wrapper interface and class to avoid a conflict. Updated portalapp.xml to reflect this. Restarted portal twice, no luck.
Here's my portalapp.xml:
<?xml version="1.0" encoding="UTF-8"?>
<application>
     <application-config>
          <property name="SharingReference" value="usermanagement, knowledgemanagement, landscape, htmlb, exportalJCOclient, exportal"/>
     </application-config>
       <components/>
       <services>
            <service name="ArchiverService">
                 <service-config>
                      <property name="className" value="com.sap.netweaver.rf.wrapper.RFServiceWrapperArchiver"/>
                      <property name="startup" value="true"/>
                 </service-config>
            </service>
       </services>
</application>
RFServiceWrapperArchiver is the name of the wrapper class. In it, I set a key, expert.no.services.Archiver which corresponds to the class I have that implements ISchedulerTask. Nothing fancy in this class.
package expert.no.services;
import java.util.Properties;
import com.sap.netweaver.rf.wrapper.IRFServiceWrapperArchiver;
import com.sapportals.portal.prt.runtime.PortalRuntime;
import com.sapportals.portal.prt.service.IServiceProfile;
import com.sapportals.wcm.service.scheduler.ISchedulerTask;
public class Archiver implements ISchedulerTask {
     private String  Channel_Root = "";
     private com.sapportals.portal.prt.logger.ILogger logger = com.sapportals.portal.prt.runtime.PortalRuntime.getLogger();
     //public Archiver(){}
     public Archiver() {
     super();
     public void run(String id, Properties properties) {
          // implement the tasks to be scheduled
          logger.severe("expert.no.services.Archiver","Archiver has been started");
     private void getServiceProperties() {
          IServiceProfile serviceProfile = PortalRuntime.getRuntimeResources().getService(IRFServiceWrapperArchiver.KEY).getContext().getServiceProfile();
          Channel_Root = serviceProfile.getProperty("Channel_Root");
          logger.severe("expert.no.services.Archiver","Channel root is: "+Channel_Root);
          //serviceProfile.setProperty(key, value);
          //serviceProfile.store();
I have checked for the presence of the co.xml and cc.xml and everything is fine there as well
Edited by: Claus Lisberg on Aug 12, 2009 9:31 AM

Problem solved. For some reason the configarchive.properties file was not added to the NWDI project. Did an Export and this prompted me to add it.
I now get an message that this has an invalid name, but at least I have something to work with.

Similar Messages

  • Windows 2008 R2 server Scheduled Task not working

    I have a batch file that writes to a file, when I click it manually it works. However when I have it set in a scheduled task it will create the file but it will not write to the file.
    How can I fix this?

    Hi,
    1.   
    Please try to make sure the
    Task Scheduler: Service is running.
    For details: run 'services.msc', Scroll down to the 'Task Scheduler' service, Check the 'Startup Type' column, The 'Startup Type' should be set to "Automatic",
    Check the 'Status' column.
    If the service is started, it will list 'Started' in the 'Status' column.
    2.   
    Please try to make sure Group Policy preventing the user to run the task.
    3.   
    Please try to make sure UAC has been disabled.
    4.   
    Please try to enabled the
    policy Inclusion list for moderate risk file types, and fill ‘.bat’ in the blank.
    For details:
    User Configuration -> Administrator Templates -> Windows Components -> Attachment Manager
    In addition, please try to refer
    this to troubleshoot.
    If the issue persist, please try to collect more information for further analyze:
    Event log
    ==============
    1. Click "Start", click “Run”, input "eventvwr" and press Enter.
    2. Expand the "Windows Logs" node on the left pane, right-click on "System" and click "Save All Events As"; in the pop-up window, click to choose the Desktop icon
    on the left frame, input "sys" in the "File name" blank, and then click save.
    3. Expand the “Applications and Services Logs”. Click the arrow next to Microsoft, and then Windows, and then TaskScheduler. Click Operational. Click
    "Save All Events As"; in the pop-up window, click to choose the Desktop icon on the left frame, input "policy" in the "File name" blank, and then click save.
    4. Locate the two saved log files on the Desktop and send them to us.
    GPMC.log
    ==================
    a.   
    On domain controller, click Start -> Run, type GPMC.MSC, it will load the GPMC console.
    b.   
    Right click on "Group Policy Result" and choose wizard to generate a report for the problematic computer and user account (please place appropriately). (Choose computer and select the proper user in the wizard)
    c.   
    Right click  the resulting group policy result and click the "Save Report…" => save report to save the report to a HTML file and send it to me.
    please contact me with my account:
    [email protected] to get a workspace to upload the information.
    Hope this helps!

  • KM Scheduler Task not running

    Hello All,
    I have created a scheduler task for the , for the same I have created a PAR file , have successfully Build the project and deployed , Have configured the time in the Global services . But for some reason I could not see the task being running in the "Component Monitor" (when I select the Services-->scheduler >select one of the CM systems (have two currently)>click on on the CM system ) I could not see my custom task .
    As well as When I go to "Service configuration" --> Portal Application , there also I could not see my custome application .
    Initially whenever there use to be any error (for example -- CM systems not assigned etc etc ).
    Is it something I am missing while deployement , Or has it being deployed properly?
    Regards,
    Ronniee

    Hello Detlev,
    Any Inputs on this please.
    I have opened a new thread but a different Query
    http://forums.sdn.sap.com/thread.jspa?threadID=2155357
    Regards,
    Ronniee.

  • How to get site workflow tasks not list workflow tasks in SharePoint 2013 programatically ?

    i want to customize wrkstat.aspx based on site workflow not list workflow, so i want to filter section of tasks view to filtering based on site workflow, i made this to list workflow and i cannot do that to site workflow.
    Please advise me.
    Thanks.

    Hi Ramakrishnan,
    you can use the below code to post comments in newsfeed. I think this will helps you.
    var feedManagerEndpoint;  
    // Get the SPAppWebUrl parameter from the query string and build  
    // the feed manager endpoint.  
    $(document).ready(function () {  
        var appweburl;  
        var params = document.URL.split("?")[1].split("&");  
        for (var i = 0; i < params.length; i = i + 1) {  
            var param = params[i].split("=");  
            if (param[0] === "SPAppWebUrl") appweburl = param[1];  
        feedManagerEndpoint = decodeURIComponent(appweburl)+ "/_api/social.feed";  
        postToMyFeed();  
    // Publish a post to the current user's feed by using the   
    // "<app web URL>/_api/social.feed/my/Feed/Post" endpoint.  
    function postToMyFeed() {  
        $.ajax( {  
            url: feedManagerEndpoint + "/my/Feed/Post",  
            type: "POST",  
            data: JSON.stringify( {   
                'restCreationData':{  
                    '__metadata':{   
                        'type':'SP.Social.SocialRestPostCreationData'  
                    'ID':null,   
                    'creationData':{   
                        '__metadata':{   
                            'type':'SP.Social.SocialPostCreationData'  
                    'ContentText':'This post was published using REST.',  
                    'UpdateStatusText':false  
            headers: {   
                "accept": "application/json;odata=verbose",  
                "content-type":"application/json;odata=verbose",  
                "X-RequestDigest": $("#__REQUESTDIGEST").val()  
            success: getMyFeed,  
            error: function (xhr, ajaxOptions, thrownError) {   
                alert("POST error:\n" + xhr.status + "\n" + thrownError);  

  • CcmEval Scheduled task not being created with "Access Denied" error 0x80070005 only on XP machines

    Before coming on here I checked out http://social.technet.microsoft.com/Forums/en-US/ddbfe6c3-ee54-4b2a-a3a7-a6515d974f76/client-check-failed-on-xpserver-2003-systems-onlyccmeval-is-not-being-scheduled?forum=configmanagerdeployment (GPO
    to allow scheduled tasks by users) and another thread about a hotfix that seems to be pre-XP SP3 and pre-CM 2012 R2.
    That said, I'm having an issue many seem to have, but I can't find the answer. From what I understand SCCM uses the user context to create the CcmEval task, but in XP users cannot set a task to run as any other user (ie SYSTEM in this instance) so what is
    the workaround? I can't just give users Administrator permissions to install the client.
    The exact log entries are:
    <![LOG[Client evaluation task doesn't exist.]LOG]!><time="19:05:43.548+360" date="12-14-2013" component="CcmEvalTask" context="" type="2" thread="4356" file="ccmevalcheck.cpp:705">
    <![LOG[Client evaluation task is not found or is disabled or is not compliant, perform remediation]LOG]!><time="19:05:43.548+360" date="12-14-2013" component="CcmEvalTask" context="" type="2"
    thread="4356" file="ccmevalcheck.cpp:341">
    <![LOG[Attempting to recreate client evaluation task.]LOG]!><time="19:05:43.548+360" date="12-14-2013" component="CcmEvalTask" context="" type="1" thread="4356" file="ccmevalcheck.cpp:833">
    <![LOG[Task scheduler 2.0 is not supported, peform task registration with 1.0 API.]LOG]!><time="19:05:43.548+360" date="12-14-2013" component="CcmEvalTask" context="" type="1" thread="4356"
    file="ccmevaltask.cpp:345">
    <![LOG[Failed to delete task Configuration Manager Health Evaluation (0x80070002).]LOG]!><time="19:05:43.548+360" date="12-14-2013" component="CcmEvalTask" context="" type="2" thread="4356"
    file="ccmevaltask.cpp:379">
    <![LOG[Failed to create task item (0x80070005).]LOG]!><time="19:05:43.548+360" date="12-14-2013" component="CcmEvalTask" context="" type="3" thread="4356" file="ccmevaltask.cpp:387">
    <![LOG[Failed to create client evaluation task.]LOG]!><time="19:05:43.548+360" date="12-14-2013" component="CcmEvalTask" context="" type="2" thread="4356" file="ccmevalcheck.cpp:850">
    The bolded section is what's telling me it's Access Denied, and manual creation of any program task set to run as SYSTEM tells me the same- users cannot do this; only admins can.
    What can I do?

    So after sifting through some RSOP results and GPO objects I found a policy that wasn't necessarily prohibiting creation of them. (Not where you think it would be - under
    Administrative Templates > Windows Components > Task Scheduler > "Prohibit New Task Creation" -
    this was set to allow them) but this one I found was a File Permissions policy that set SYSTEM permissions to READ and EXECUTE.
    I've changed this to FULL CONTROL for SYSTEM. I'm unable to get on the machines to examine everything closely, but from what I can see at least one of them has remediated themselves and now has a successful client check in the console. Hopefully the rest
    of them will come around as GP updates itself and the client does an evaluation to remediate the Scheduled Task.
    Hopefully this helps someone in the future as well.

  • BPM Task not listed in UWL

    Hi Experts,
    I have initiated the BPM Process through NWA. Task is not listed in the UWL but the mail is getting generated.
    UWL is configured to Provider System. UWL also receiving task from other BPM workflow.
    Thanks in Advance,
    Best Regards,
    Arun

    Hi Arun,
    Assign a Potential owner to the task and check for the following roles to proceed with BPM Process.
    pcd:portal_content/com.sap.pct/every_user/com.sap.bpem/com.sap.bpem.roles/com.sap.bpem.Enduser,
    To Trigger Your Process:SAP_BPM_TRIGGER_EVENT.
    While Assign Potential Owners,
    Pool is the first Priority,
    Lane is Second Prioriy,
    Activity is Last Priority.
    Eg: If u Assign a one Potential owner for Pool and another owner for Lane. It will take Pool owner as the major one.

  • Schedule task not working in OIM11gr2

    Hi Experts,
    I have coded a schedule task, using the plugin approach, the steps i have followed are:
    1. Created the custom code jar
    2. Created plugin.xml
    the above 2 files are added in plugin and registerd in OIM
    3. Created the task.xml and registered in MDSWhile creating the job i could see it shows up in the tasks but when i executed thejob it is giving me below error:
    I tried putting it in using UploadJars.sh utility and placed thejar in schedule tasks folder but did not work.
    An error occurred while loading the plugin class. Class null was not found.
    Please provide help this is really urgent!!
    thanks

    This is how my Task.xml (MDS file) looks
    <?xml version='1.0' encoding='UTF-8'?>
    <scheduledTasks xmlns="http://xmlns.oracle.com/oim/scheduler">
    <task>
    <name>RIMReconTask</name>
    <class>com.abc.iam.customtask.rim.RIMReconST</class>
    <description>This scheduled task will reconcile the RIM profile to the OIM users</description>
    <retry>0</retry>
    <parameters>
    <string-param required="true" helpText="User Login">User Login</string-param>
    <string-param required="true" helpText="User Status">User Status</string-param>
    <string-param required="true" helpText="Resource Object">Resource Object</string-param>
    </parameters>
    </task>
    </scheduledTasks>
    I have removed the plugin file completely. I have validated that class path and name it is the same as com.abc.iam.customtask.rim.RIMReconST
    I have registered the jar in OIM database using UploadJars.sh utility.
    I get the following error:
    An error occurred while loading the plugin class. Class null was not found.
    Dont know what is wrong here !!

  • Delegated task not listing in the BPEL Portlet when logged in as that user

    Hi All,
    A task delegated to say a user JCOOPER (which is picked from OID) is not listing in the BPEL Portlet when logged in as user jcooper...
    Is there any workaround to solve this issue?The issue persists in PROD environment..Somebdy pls suggest..
    Thanks,
    ChitraDevi D

    Hi All,
    Any body pls help out for this issue
    Thanks,
    ChitraDevi D

  • Windows 2003 server scheduled tasks not work properly. Please help.

    I created a couple of windows shell scripting programs. When I call them from command line, it works well. Then I use Task Scheduler to schedule them to be run daily. The strange thing is: If I log into server and open Task Scheduler window. The scheduled tasks will run automatically and execute with result code 0x0. It works well. However, if I just set up Task Scheduler and log out of the server, the scheduled works will not run with result code 0x80. Here is the log info
    "programname-parametername.job" (programname.cmd)
     Started 1/28/2010 11:20:00 PM
    "programname-parametername.job" (programname.cmd)
     Finished 1/28/2010 11:20:00 PM
     Result: The task completed with an exit code of (80).
    I used windows adminstrator account, not system account to schedule the work. I changed scheduled work to be run by my admin account, not by system account. Please advise me where is the problem and how to fix it. Thanks in advance.

    Hi Polarisws,
    According to your description, I understand that your scheduled task did not run when the user is not logged in the system.
    Please go to the services.msc and select the "task Scheduler" service, double-click it and go to "Log On" page, enable the option "allow service to interact with desktop" and test the result.
    Regards,
    Wilson JiaThis posting is provided "AS IS" with no warranties, and confers no rights.

  • Server 2012 Scheduled tasks not running after DST

    Since the DST change this weekend the weekly scheduled tasks on our 2012 standard server are not running.  The schedule show the correct next run time, but the task never runs.  The server correctly adjusted for the DST changes (We are in CST in
    the US) and if you look in the date time it notified us that the clock was set forward.
    Any ideas?

    Hi Mark,
    Before going further, would you please let me confirm whether only weekly scheduled tasks t run? In other words,
    did some daily scheduled tasks run smoothly?
    Based on current situation, please create a new weekly
    scheduled task and check if encounters the same issue.
    If this issue still persists. Please let me confirm if you make scheduled task run some commands or a script,
    or others I misunderstand. For an example, if run a script, please directly run it in the Windows Server 2012 Standard and check if there any issue occurred.
    Meanwhile, please open Task Scheduler, select this problematic weekly scheduled task, click General tab. Please
    check which user account was used to run this task. And please check Run with highest privileges, then check if can solve this issue.
    In addition, please check History tab in task Properties. Please pay attention on the time-point when the weekly
    scheduled task should be ran, and check if you can find some events at that time-point. It may help us to go further analysis.
    By the way, there is a similar thread. Please refer to.
    Certain scheduled tasks do not run anymore after DST change
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/47483baf-e7af-4bff-9db4-9c3d0ead2b41/certain-scheduled-tasks-do-not-run-anymore-after-dst-change?forum=winserver8gen
    Hope this helps.
    Best regards,
    Justin Gu

  • Configuration Manager Client Retry Scheduled Task not removed

    I have had several clients where the “Configuration Manager Client Retry” scheduled task is not removed after a successful install. The task will run daily and reinstall the client
    over and over until someone notices and we delete the task. So far I have only seen this happen on R2 clients (5.00.7958.1000). Has anyone ever run into this before? Thanks!

    Hi,
    Has this client installed successfully during the reinstall process?(ccmsetup.log and Client.msi.log) 
    Please check ccrretry.box in Program Files->Microsoft Configuration Manager->inboxes and Ccm.log on the site server to get more information. SCCM might cannot detect the SMS Agent Host is running.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • DB13 scheduled tasks not appear

    Hi people,
    I´ve connected an external Oracle databases, and I´ve scheduled some maintenance tasks.
    During on time, the finished and scheduled tasks appears in the DB13, but I´ve seen that the scheduled tasks off external databases not appear, but the time if scheduled tasks has passed, the tasks it´s correctly finished and appears.
    The problem is that the scheduled tasks cannot edit them, because not appears in the calendar, only when they´ve finished.
    What can i do?

    >> Regarding Note 6 in Note1025707, this is for if both systems are on the same server, for example, a server has AS ABAP CEN with DBA Cockpit and has AS Java JAV. Is this your situation? The Oracle DB for the separate AS Java would still be considered "remote" in this case. I do not have experience with this situation.
    For the instance, if the installation is a SAP Portal system, it is evaluated by a remote database, when you are attached it to a central monitoring system. For example you have two or more SAP installations even on a same physical host attached to the central monitoring system, those systems are evaluated as remote systems. This is because central monitoring system should be connected to these systems by remote.
    I hope that I clarified the issue.
    Best regards,
    Orkun Gedik

  • Scheduled Tasks not chaining

    Hello,
    We are using CF10 and have setup a series of chained scheduled tasks. We tested them manually by starting the first process from the admin, and all three processes ran. When the first process triggers at its daily time, it wont kick off the second chained process. No error is produced that i know of.
    We also attempted to trap the error by invoking an event handler on exception and misfire, but we're unable to get the scheduler to find the cfc regardless of the syxtax we use. The site is setup as a subdomain for another site, but it is still a distinct site. We placed the CFC in the root of both the subdomain site and regular www site and tried several paths, but none seem to work. For example, the site is located in d:\web\site.com\subDomain. We tried setting the event handler path as web.site.com.subDomain.handlerCFCName, site.com.subDomain.handlerCFCName, subDomain.handlerCFCName and handlerCFCName, and none worked.
    Any help on either topic is greatly appreciated.

    Thank you for submitting this. The second portion of the bug related to trapping the error was solved, but the chaining remains an issue. For the second portion, a directory in the CFC path contained a “.”, such as “c:/site/site.com/ “, which could not be handled by the CF Admin. We mapped a new path in the administrator to correct this.
    Greg Gantzer
    Gantzer Group, Inc
    <mailto:[email protected]> [email protected]
    (216) 916-0507 phone
    (216) 244-2287 mobile
    (330) 929-9211 fax

  • OIM schedule task not working properly (error - MISFIRE_INSTRUCTION_RE....)

    Hello,
    we're doing trusted reconciliation from DB and it is implemented through a GTC connector (OIM 10g BP 15).
    After we did a sync of OIM from prod to this environment, we're seeing issue using this related trusted recon scheduled job. Here is the error :
    DEBUG,24 Jan 2012 15:09:12,321,[XELLERATE.SCHEDULER],Loading Scheduled task class com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,24 Jan 2012 15:09:12,321,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader entered.
    DEBUG,24 Jan 2012 15:09:12,321,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader left.
    DEBUG,24 Jan 2012 15:09:12,340,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzTrigger entered.
    DEBUG,24 Jan 2012 15:09:12,340,[XELLERATE.SCHEDULER],Creating Custom Trigger with StartTime 2012-01-24 with repeat interval of 21600000 secs
    DEBUG,24 Jan 2012 15:09:12,340,[XELLERATE.SCHEDULER],triggerFreq : CUSTOM
    DEBUG,24 Jan 2012 15:09:12,340,[XELLERATE.SCHEDULER],triggerImpl : Trigger 'DEFAULT.MYMDB_GTC': triggerClass: 'org.quartz.SimpleTrigger isVolatile: false calendar: 'null' misfireInstruction: 0
    DEBUG,24 Jan 2012 15:09:12,340,[XELLERATE.SCHEDULER],trigger Misfire instruction : MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT
    DEBUG,24 Jan 2012 15:09:12,340,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzTrigger left.
    DEBUG,24 Jan 2012 15:09:12,340,[XELLERATE.SCHEDULER],MYMDB_GTC trigger is related to DEFAULT.MYMDB_GTC and new job is DEFAULT.MYMDB_GTC
    DEBUG,24 Jan 2012 15:09:12,340,[XELLERATE.SCHEDULER],Scheduling task : MYMDB_GTC with trigger : Trigger 'DEFAULT.MYMDB_GTC': triggerClass: 'org.quartz.SimpleTrigger isVolatile: false calendar: 'null' misfireInstruction: 5
    DEBUG,24 Jan 2012 15:09:12,392,[XELLERATE.SCHEDULER],Loading Scheduled task class com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,24 Jan 2012 15:09:12,392,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader entered.
    DEBUG,24 Jan 2012 15:09:12,392,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader left.
    DEBUG,24 Jan 2012 15:09:12,407,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/updateXellerateForTrigger entered.
    DEBUG,24 Jan 2012 15:09:12,407,[XELLERATE.SCHEDULER],Updating Trigger Details: lastStartTime : 2012-01-24 lastStopTime : Tue Jan 24 15:09:12 PST 2012 nextStartTime : 2012-01-24
    DEBUG,24 Jan 2012 15:09:12,411,[XELLERATE.SCHEDULER],LefMethodDebug
    DEBUG,24 Jan 2012 15:09:12,411,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/updateScheduledTask left.
    DEBUG,24 Jan 2012 15:09:14,035,[XELLERATE.SCHEDULER],Loading Scheduled task class com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,24 Jan 2012 15:09:14,035,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader entered.
    DEBUG,24 Jan 2012 15:09:14,035,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader left.
    DEBUG,24 Jan 2012 15:09:14,066,[XELLERATE.SCHEDULER],Loading Scheduled task class com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,24 Jan 2012 15:09:14,066,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader entered.
    DEBUG,24 Jan 2012 15:09:14,066,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader left.
    INFO,24 Jan 2012 15:09:14,093,[XELLERATE.SERVER],Quartz Executing Scheduled task : MYMDB_GTC
    DEBUG,24 Jan 2012 15:09:14,099,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil/eventPreInsert entered.
    DEBUG,24 Jan 2012 15:09:14,099,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil/getSchedulerInstanc left.
    DEBUG,24 Jan 2012 15:09:14,175,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader entered.
    DEBUG,24 Jan 2012 15:09:14,175,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader left.
    Any idea what could be wrong here?
    Thanks,

    Hello,
    I tried "Edit" the GTC connector and "SAVE" the connector back without doing any editing. I hope that will not cause any difference in the deployed corresponding GTC schedule task which used to work earlier.
    Anyways, i also checked the trusted source database and populated some new values in there and tried reconciling again (incremental reconciliation configured). Surprisingly i see some new error in the logs. Is this because of the unnecessary "Edit" operation i performed ?
    ==========================================================================================================
    ERROR,31 Jan 2012 16:22:49,269,[XELLERATE.GC.FRAMEWORKRECONCILIATION],Reconciliation Encountered error:
    java.lang.IllegalArgumentException: Cannot format given Object as a Date
    at java.text.DateFormat.format(DateFormat.java:281)
    at java.text.Format.format(Format.java:140)
    at com.thortech.xl.gc.impl.common.DBFacade.getStringFromSQLObject(Unknown Source)
    at com.thortech.xl.gc.impl.common.DBFacade.retrieveRecord(Unknown Source)
    at com.thortech.xl.gc.impl.common.DBFacade.getRecord(Unknown Source)
    at com.thortech.xl.gc.impl.common.DBFacade.getTargetRecord(Unknown Source)
    at com.thortech.xl.gc.impl.recon.DBReconTransportProvider.getFirstPage(Unknown Source)
    at com.thortech.xl.gc.runtime.GCScheduleTask.execute(Unknown Source)
    at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.run(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper$TaskExecutionAction.run(Unknown Source)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.security.Security.runAs(Security.java:41)
    at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown Source)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:178)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:477)
    DEBUG,31 Jan 2012 16:22:49,270,[XELLERATE.SCHEDULER.TASK],Class/Method: SchedulerBaseTask/setResult entered.
    DEBUG,31 Jan 2012 16:22:49,270,[XELLERATE.SCHEDULER.TASK],Class/Method: SchedulerBaseTask/setResult left.
    WARN,31 Jan 2012 16:22:49,270,[XELLERATE.GC.FRAMEWORKRECONCILIATION],Though Reconciliation Scheduled task has encountered an error, Reconciliation Transport providers have been "ended" smoothly. Any provider operation that occurs during that "end" or "clean-up" phase would have been executed e.g. Data archival. In case you want that data to be a part of next Reconciliation execution, restore it from Staging. Provider logs must be containing details about storage entities that would have been archived
    DEBUG,31 Jan 2012 16:22:49,270,[XELLERATE.SCHEDULER.TASK],Class/Method: SchedulerBaseTask/run left.
    ========================================================================================

  • CFHTTP and Scheduled Tasks not working after CF8 Upgrade

    I have recently upgraded to ColdFusion 8. My scheduled tasks
    in the ColdFusion Administrator do not work anymore. I ran them
    manually without the ColdFusion Administrator from the server and a
    local machine via Internet Explorer 7 and they work. I tried to run
    the same scheduled task with the same URL via CFHTTP in a CFM page
    and this does not work. The logs are not giving me any error
    messages. Has anyone run into this? Is this a bug with CF8 or even
    an IIS issue? ColdFusion is on a Windows 2003 SP2 server.
    Thanks,
    Mike

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML dir=ltr><HEAD><TITLE>The page cannot be displayed</TITLE>
    <STYLE id=L_defaultr_1>A:link {
    FONT: 8pt/11pt verdana; COLOR: #ff0000
    A:visited {
    FONT: 8pt/11pt verdana; COLOR: #4e4e4e
    </STYLE>
    <META content=NOINDEX name=ROBOTS>
    <META http-equiv=Content-Type content="text-html; charset=UTF-8">
    <META content="MSHTML 5.50.4522.1800" name=GENERATOR></HEAD>
    <BODY bgColor=#ffffff>
    <TABLE cellSpacing=5 cellPadding=3 width=410>
      <TBODY>
      <TR>
        <TD vAlign=center align=left width=360>
          <H1 id=L_defaultr_2 style="FONT: 13pt/15pt verdana; COLOR: #000000"><ID id=L_defaultr_3><!--Problem-->The page cannot be displayed
    </ID></H1></TD></TR>
      <TR>
        <TD width=400 colSpan=2><FONT id=L_defaultr_4
          style="FONT: 8pt/11pt verdana; COLOR: #000000"><ID id=L_defaultr_5><B>Explanation: </B>There is a problem with the page you are trying to reach and it cannot be displayed.</ID></FONT></TD></TR>
      <TR>
        <TD width=400 colSpan=2><FONT id=L_defaultr_6
          style="FONT: 8pt/11pt verdana; COLOR: #000000">
          <HR color=#c0c0c0 noShade>
          <P id=L_defaultr_7><B>Try the following:</B></P>
          <UL>
            <LI id=L_defaultr_8><B>Refresh page:</B> Search for the page again by clicking the Refresh button. The timeout may have occurred due to Internet congestion.
    <LI id=L_defaultr_9><B>Check spelling:</B> Check that you typed the Web page address correctly. The address may have been mistyped.
    <LI id=L_defaultr_10><B>Access from a link:</B> If there is a link to the page you are looking for, try accessing the page from that link.
          </UL>
          <HR color=#c0c0c0 noShade>
          <P id=L_defaultr_11>Technical Information (for support personnel)</P>
          <UL>
            <LI id=L_defaultr_12>Error Code: 400 Bad Request. The data is invalid. (13)
            </UL></FONT></TD></TR></TBODY></TABLE></BODY></HTML>

Maybe you are looking for

  • Why is wordpress wp-cycle plugin is not working with firefox 4?

    wordpress wp-cycle plugin is not rotating with firefox 4 but does work with 3.6.10 and it works in Safari and IE. It just shows the first image but does not rotate to the others. This happens on both the mac operating system and Windows. Will there b

  • How do i create gallery with text under thumbnails?

    Hi. Im new in Muse and im trying to learn. My next challenge is to make thumbnails with text under like this: And when visitors click a thumbnail it should pop up the original size picture in a lightbox. A mouseover big pic should also work. Like thi

  • Cisco ISE posture requirements whats the ordering of requirements?

    Hi Everyone, I am in the middle of deploying the anyconnect posture module (ac 4.0), with ISE 1.3. I have a problem, with the order of which the posture requirements get checked, it does not seem to order the requirements alphabetically, and can't fi

  • 5th gen ipod and iplay monster transmitter question...

    I have the 5th gen. ipod and i just bought the iplay ipod transmitter, so that i can play my ipod through the fm radio station in my car...but when i plugged it in my ipod and followewd instructions..nothing happened..i even took it back and traded a

  • Regarding copa

    Hi All Experts.. & PradipPatil I am Having Doudts Regarding Copa what Is Accout Based Copa and Costbased Copa ? Wht the main diffrence between Them ? In which Scenerion We will choose Accunntbased & costbased Please Clarify Me I had Studied some docs