Hi there Fellow DNN developers,
I am a bit of Newb to this Forum, was hoping for some help.... I have posted up on these forums for some help.
http://www.dnncreative.com/Forum/tabid/88/forumid/4/postid/17252/view/topic/Default.aspx
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_24399792.html#a24431053
I am repeating it here now, anyone can help me out, that would be great!!
Thanks
C
I am trying to get the DNN scheduler to run, and I am struggling.
I have copied the code from http://www.wwwcoder.com/tabid/68/type/art/parentid/224/site/6401/default.aspx however it doesn't just work.
I am not getting any history happening, and the Job I have created fSetWindow, adds a row to a table, but it is not doing anything either.
I am not getting any exception errors, I don't believe it is being hit at all.
Here is my code:
Project Name:WWT_DNN
File Name: WWT_Schedule
DLL Name: WWT_DNN.dll
------------------- Start Code --------------------
Imports System.Configuration
Imports DotNetNuke
Imports System.Web
Imports WWT_dnn_Functions.Functions
Namespace WWT_DNN
Public Class WWT_Schedule
Inherits DotNetNuke.Services.Scheduling.SchedulerClient
Public Sub New(ByVal objScheduleHistoryItem As DotNetNuke.Services.Scheduling.ScheduleHistoryItem)
MyBase.New()
Me.ScheduleHistoryItem = objScheduleHistoryItem
End Sub
Public Overrides Sub DoWork()
Try
For i = 0 To 1000000000
Next
fSetWindow(strType:="Send", UserID:=1, iCreditsHold:=0, CodeID:=1, MobileID:=1, iMins:=180)
Me.ScheduleHistoryItem.AddLogNote("RSS Incremental Build Suceeded")
Me.ScheduleHistoryItem.Succeeded = True
Catch ex As Exception
Me.ScheduleHistoryItem.Succeeded = False
Me.ScheduleHistoryItem.AddLogNote("Index build failed. " & ex.ToString)
Me.Errored(ex)
End Try
End Sub
End Class
End Namespace
------------------- End Code --------------------
See attached for DNN Scheduler settings