Quartz scheduler not working after running from published folder in .netIn .NET, which loop runs faster, 'for' or 'foreach'?Protect .NET code from reverse engineering?Reading settings from app.config or web.config in .netHow do I force my .NET application to run as administrator?Quartz net Scheduler -Schedule JobQuartz .NET scheduler setuprunning timer from global.asax vs quartz.netQuartz scheduler not executing job after app pool recycle (.Net)scheduling web services in Quartz.Net - windows service or singletonBlockingCollection file logging - Thread of a BlockingCollection task automatically aborted

What problems does SciDraw still solve?

What does the behaviour of water on the skin of an aircraft in flight tell us?

The qvolume of an integer

Why are huge challot displayed on the wedding couple / Bar Mitzvah's table?

Why does the 6502 have the BIT instruction?

Windows 10 Programs start without visual Interface

Draw a checker pattern with a black X in the center

What are these (utility?) boxes at the side of the house?

How does apt-get work, in detail?

shutdown at specific date

The use of konnte

Why colon to denote that a value belongs to a type?

What are the problems in teaching guitar via Skype?

Mother abusing my finances

Do you play the upbeat when beginning to play a series of notes, and then after?

Can the Help action be used to give advantage to a specific ally's attack (rather than just the next ally who attacks the target)?

Which noble houses were destroyed during the Game of Thrones?

1960s sci-fi novella with a character who is treated as invisible by being ignored

How to capture more stars?

How can I find where certain bash function is defined?

Infinitely many hats

Compact Mechanical Energy Source

How feasible is the Delta-Glider?

Smart people send dumb people to a new planet on a space craft that crashes into a body of water



Quartz scheduler not working after running from published folder in .net


In .NET, which loop runs faster, 'for' or 'foreach'?Protect .NET code from reverse engineering?Reading settings from app.config or web.config in .netHow do I force my .NET application to run as administrator?Quartz net Scheduler -Schedule JobQuartz .NET scheduler setuprunning timer from global.asax vs quartz.netQuartz scheduler not executing job after app pool recycle (.Net)scheduling web services in Quartz.Net - windows service or singletonBlockingCollection file logging - Thread of a BlockingCollection task automatically aborted






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















From vs 2017 it is working find in debug mode , but when published and try to run getting following exception



2019-03-24 13:55:45,475 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Initialized Scheduler Signaller of type: Quartz.Core.SchedulerSignalerImpl
2019-03-24 13:55:45,487 [18792] INFO Common.Logging.Factory.AbstractLogger.InfoFormat(:0) - Quartz Scheduler v.2.0.0.100 created.
2019-03-24 13:55:45,492 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler meta-data: Quartz Scheduler (v2.0.0.100) 'ServerScheduler' with instanceId 'NON_CLUSTERED'
Scheduler class: 'Quartz.Core.QuartzScheduler' - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool 'Quartz.Simpl.SimpleThreadPool' - with 10 threads.
Using job-store 'Quartz.Simpl.RAMJobStore' - which does not support persistence. and is not clustered.

2019-03-24 13:55:45,493 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Registering Quartz Job Initialization Plug-in.
2019-03-24 13:55:45,500 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler ServerScheduler_$_NON_CLUSTERED shutting down.
2019-03-24 13:55:45,501 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler ServerScheduler_$_NON_CLUSTERED paused.
2019-03-24 13:55:45,504 [18792] ERROR Jagaha.QuartzServer.QuartzServer.Initialize(:0) - Server initialization failed:Thread has not been started.
System.Threading.ThreadStateException: Thread has not been started.
at System.Threading.Thread.JoinInternal(Int32 millisecondsTimeout)
at System.Threading.Thread.Join()
at Quartz.QuartzThread.Join()
at Quartz.Core.QuartzScheduler.Shutdown(Boolean waitForJobsToComplete)
at Quartz.Impl.StdSchedulerFactory.Instantiate()
at Quartz.Impl.StdSchedulerFactory.GetScheduler()
at Jagaha.QuartzServer.QuartzServer.GetScheduler()
at Jagaha.QuartzServer.QuartzServer.Initialize()


Any suggestion what will be solution to resolve the published version of console application.










share|improve this question
























  • Can you post the initialization code for the scheduler?

    – Rabban
    Mar 25 at 10:26











  • I have manually put reference dlls from build debug folder to publish folder and it has been resolved, thanks

    – Furqan Misarwala
    Mar 25 at 10:32











  • Sounds for me not like a good solution, but this is your decision.

    – Rabban
    Mar 25 at 10:43

















0















From vs 2017 it is working find in debug mode , but when published and try to run getting following exception



2019-03-24 13:55:45,475 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Initialized Scheduler Signaller of type: Quartz.Core.SchedulerSignalerImpl
2019-03-24 13:55:45,487 [18792] INFO Common.Logging.Factory.AbstractLogger.InfoFormat(:0) - Quartz Scheduler v.2.0.0.100 created.
2019-03-24 13:55:45,492 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler meta-data: Quartz Scheduler (v2.0.0.100) 'ServerScheduler' with instanceId 'NON_CLUSTERED'
Scheduler class: 'Quartz.Core.QuartzScheduler' - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool 'Quartz.Simpl.SimpleThreadPool' - with 10 threads.
Using job-store 'Quartz.Simpl.RAMJobStore' - which does not support persistence. and is not clustered.

2019-03-24 13:55:45,493 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Registering Quartz Job Initialization Plug-in.
2019-03-24 13:55:45,500 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler ServerScheduler_$_NON_CLUSTERED shutting down.
2019-03-24 13:55:45,501 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler ServerScheduler_$_NON_CLUSTERED paused.
2019-03-24 13:55:45,504 [18792] ERROR Jagaha.QuartzServer.QuartzServer.Initialize(:0) - Server initialization failed:Thread has not been started.
System.Threading.ThreadStateException: Thread has not been started.
at System.Threading.Thread.JoinInternal(Int32 millisecondsTimeout)
at System.Threading.Thread.Join()
at Quartz.QuartzThread.Join()
at Quartz.Core.QuartzScheduler.Shutdown(Boolean waitForJobsToComplete)
at Quartz.Impl.StdSchedulerFactory.Instantiate()
at Quartz.Impl.StdSchedulerFactory.GetScheduler()
at Jagaha.QuartzServer.QuartzServer.GetScheduler()
at Jagaha.QuartzServer.QuartzServer.Initialize()


Any suggestion what will be solution to resolve the published version of console application.










share|improve this question
























  • Can you post the initialization code for the scheduler?

    – Rabban
    Mar 25 at 10:26











  • I have manually put reference dlls from build debug folder to publish folder and it has been resolved, thanks

    – Furqan Misarwala
    Mar 25 at 10:32











  • Sounds for me not like a good solution, but this is your decision.

    – Rabban
    Mar 25 at 10:43













0












0








0








From vs 2017 it is working find in debug mode , but when published and try to run getting following exception



2019-03-24 13:55:45,475 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Initialized Scheduler Signaller of type: Quartz.Core.SchedulerSignalerImpl
2019-03-24 13:55:45,487 [18792] INFO Common.Logging.Factory.AbstractLogger.InfoFormat(:0) - Quartz Scheduler v.2.0.0.100 created.
2019-03-24 13:55:45,492 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler meta-data: Quartz Scheduler (v2.0.0.100) 'ServerScheduler' with instanceId 'NON_CLUSTERED'
Scheduler class: 'Quartz.Core.QuartzScheduler' - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool 'Quartz.Simpl.SimpleThreadPool' - with 10 threads.
Using job-store 'Quartz.Simpl.RAMJobStore' - which does not support persistence. and is not clustered.

2019-03-24 13:55:45,493 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Registering Quartz Job Initialization Plug-in.
2019-03-24 13:55:45,500 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler ServerScheduler_$_NON_CLUSTERED shutting down.
2019-03-24 13:55:45,501 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler ServerScheduler_$_NON_CLUSTERED paused.
2019-03-24 13:55:45,504 [18792] ERROR Jagaha.QuartzServer.QuartzServer.Initialize(:0) - Server initialization failed:Thread has not been started.
System.Threading.ThreadStateException: Thread has not been started.
at System.Threading.Thread.JoinInternal(Int32 millisecondsTimeout)
at System.Threading.Thread.Join()
at Quartz.QuartzThread.Join()
at Quartz.Core.QuartzScheduler.Shutdown(Boolean waitForJobsToComplete)
at Quartz.Impl.StdSchedulerFactory.Instantiate()
at Quartz.Impl.StdSchedulerFactory.GetScheduler()
at Jagaha.QuartzServer.QuartzServer.GetScheduler()
at Jagaha.QuartzServer.QuartzServer.Initialize()


Any suggestion what will be solution to resolve the published version of console application.










share|improve this question
















From vs 2017 it is working find in debug mode , but when published and try to run getting following exception



2019-03-24 13:55:45,475 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Initialized Scheduler Signaller of type: Quartz.Core.SchedulerSignalerImpl
2019-03-24 13:55:45,487 [18792] INFO Common.Logging.Factory.AbstractLogger.InfoFormat(:0) - Quartz Scheduler v.2.0.0.100 created.
2019-03-24 13:55:45,492 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler meta-data: Quartz Scheduler (v2.0.0.100) 'ServerScheduler' with instanceId 'NON_CLUSTERED'
Scheduler class: 'Quartz.Core.QuartzScheduler' - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool 'Quartz.Simpl.SimpleThreadPool' - with 10 threads.
Using job-store 'Quartz.Simpl.RAMJobStore' - which does not support persistence. and is not clustered.

2019-03-24 13:55:45,493 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Registering Quartz Job Initialization Plug-in.
2019-03-24 13:55:45,500 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler ServerScheduler_$_NON_CLUSTERED shutting down.
2019-03-24 13:55:45,501 [18792] INFO Common.Logging.Factory.AbstractLogger.Info(:0) - Scheduler ServerScheduler_$_NON_CLUSTERED paused.
2019-03-24 13:55:45,504 [18792] ERROR Jagaha.QuartzServer.QuartzServer.Initialize(:0) - Server initialization failed:Thread has not been started.
System.Threading.ThreadStateException: Thread has not been started.
at System.Threading.Thread.JoinInternal(Int32 millisecondsTimeout)
at System.Threading.Thread.Join()
at Quartz.QuartzThread.Join()
at Quartz.Core.QuartzScheduler.Shutdown(Boolean waitForJobsToComplete)
at Quartz.Impl.StdSchedulerFactory.Instantiate()
at Quartz.Impl.StdSchedulerFactory.GetScheduler()
at Jagaha.QuartzServer.QuartzServer.GetScheduler()
at Jagaha.QuartzServer.QuartzServer.Initialize()


Any suggestion what will be solution to resolve the published version of console application.







c# .net quartz.net






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 10:48









walen

4,60412041




4,60412041










asked Mar 24 at 8:42









Furqan MisarwalaFurqan Misarwala

372834




372834












  • Can you post the initialization code for the scheduler?

    – Rabban
    Mar 25 at 10:26











  • I have manually put reference dlls from build debug folder to publish folder and it has been resolved, thanks

    – Furqan Misarwala
    Mar 25 at 10:32











  • Sounds for me not like a good solution, but this is your decision.

    – Rabban
    Mar 25 at 10:43

















  • Can you post the initialization code for the scheduler?

    – Rabban
    Mar 25 at 10:26











  • I have manually put reference dlls from build debug folder to publish folder and it has been resolved, thanks

    – Furqan Misarwala
    Mar 25 at 10:32











  • Sounds for me not like a good solution, but this is your decision.

    – Rabban
    Mar 25 at 10:43
















Can you post the initialization code for the scheduler?

– Rabban
Mar 25 at 10:26





Can you post the initialization code for the scheduler?

– Rabban
Mar 25 at 10:26













I have manually put reference dlls from build debug folder to publish folder and it has been resolved, thanks

– Furqan Misarwala
Mar 25 at 10:32





I have manually put reference dlls from build debug folder to publish folder and it has been resolved, thanks

– Furqan Misarwala
Mar 25 at 10:32













Sounds for me not like a good solution, but this is your decision.

– Rabban
Mar 25 at 10:43





Sounds for me not like a good solution, but this is your decision.

– Rabban
Mar 25 at 10:43












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55322015%2fquartz-scheduler-not-working-after-running-from-published-folder-in-net%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55322015%2fquartz-scheduler-not-working-after-running-from-published-folder-in-net%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현