Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SampleApp to make it work with VS2013+IIS Express or IIS7 #24

Merged
merged 1 commit into from
Jun 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion SampleApp/Global.asax.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@

namespace SampleApp {
public class Global : HttpApplication {

static readonly HttpRequest InitialRequest;

static Global() {
// Workaround to fix error "Request is not available in this context" with IIS7 or IIS Express
// http://sammyageil.com/post/Request-is-not-available-in-this-context-exception-in-Globalasaxs-Application_Start-IIS-7-Integrated-mode
InitialRequest = HttpContext.Current.Request;
}

protected void Application_Start(object sender, EventArgs e) {
// First, initialize Quartz.NET as usual. In this sample app I'll configure Quartz.NET by code.
var schedulerFactory = new StdSchedulerFactory();
Expand All @@ -16,7 +25,7 @@ protected void Application_Start(object sender, EventArgs e) {
Setup.Scheduler = () => scheduler;

// This adds an logger to the QuartzNetWebConsole. It's optional.
var partialQuartzConsoleUrl = string.Format("http://{0}:{1}/quartz/", Context.Request.Url.Host, Context.Request.Url.Port);
var partialQuartzConsoleUrl = string.Format("http://{0}:{1}/quartz/", InitialRequest.Url.Host, InitialRequest.Url.Port);
Setup.Logger = new MemoryLogger(1000, partialQuartzConsoleUrl);

// I'll add some global listeners
Expand Down
1 change: 1 addition & 0 deletions SampleApp/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="QuartzNetWebConsole" verb="*" path="quartz/*" type="QuartzNetWebConsole.ControllerFactory, QuartzNetWebConsole"/>
</handlers>
</system.webServer>
<runtime>
Expand Down