Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...help on Scheduler (aspnet_wp.exe unhandled error)help on Scheduler (aspnet_wp.exe unhandled error)
Previous
 
Next
New Post
6/22/2006 10:18 AM
 

Hello,

I`ve read the documentation and I still can`t run a task in the scheduler (DNN version    4.0.2).

This is the class I`ve made:

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Collections.Generic;
using DotNetNuke;


namespace SoftGuideJobs
{

    public class EmailJobs : DotNetNuke.Services.Scheduling.SchedulerClient
    {
               public EmailJobs(DotNetNuke.Services.Scheduling.ScheduleHistoryItem  objScheduleHistoryItem): base()
        {
            this.ScheduleHistoryItem = objScheduleHistoryItem;
        }
        public override void DoWork()
        {
            try
            {
                this.Progressing();
                ExpirareBannere();
                this.ScheduleHistoryItem.Succeeded = true;
                this.ScheduleHistoryItem.AddLogNote("ExpirareBannere succes");
            }
            catch (Exception ex)
            {
                this.ScheduleHistoryItem.Succeeded = false;
                this.ScheduleHistoryItem.AddLogNote("EXCEPTION"+ ex.ToString());
                this.Errored(ref ex);
               
            }
           
            //throw new Exception("The method or operation is not implemented.");
        }

        public void ExpirareBannere()
        {
         
            this.Status = "trimis mail-uri";
            this.ScheduleHistoryItem.AddLogNote("ExpirareBannere incheiat cu succes");
            this.ScheduleHistoryItem.Succeeded = true;
        }
    }

    }

Then I`ve compiled the class in a dll (EmailJobBanner.dll) and copyed to the bin directory

I configured the DotNetNuke Scheduler. (Full Class Name and Assembly:
 "SoftGuideJobs.EmailJobs.ExpirareBannere, EmailJobBanner" )

When I run the site I get a pop-up from the Visual Studio just-in-time debuger:

An unhandled exception ('SystemNullReferinceException') occurred in the aspnet_wp.exe [3732].

Thanks

 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...help on Scheduler (aspnet_wp.exe unhandled error)help on Scheduler (aspnet_wp.exe unhandled error)


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out