Git Product home page Git Product logo

Comments (5)

guryanovev avatar guryanovev commented on May 22, 2024

Are you using remote scheduler? Sorry for confusion but timeline does not display for Remote Scheduler because the scheduler itself does not provide the required level of interactivity (no listeners, no info about running jobs etc). In fact Remote Scheduler uses obsolete .NET Remoting technology and it would be a good idea to avoid it if possible.

from crystalquartz.

DamonKiller avatar DamonKiller commented on May 22, 2024

thanks for reminding.

I changed the way, and the timeline has work.

<package id="CrystalQuartz.Owin" version="6.8.1" targetFramework="net47" /> <package id="log4net" version="2.0.8" targetFramework="net47" /> <package id="Microsoft.Owin" version="4.0.0" targetFramework="net47" /> <package id="Microsoft.Owin.Host.HttpListener" version="4.0.0" targetFramework="net47" /> <package id="Microsoft.Owin.Hosting" version="4.0.0" targetFramework="net47" /> <package id="Owin" version="1.0" targetFramework="net47" /> <package id="Quartz" version="3.0.6" targetFramework="net47" /> <package id="Topshelf" version="4.0.4" targetFramework="net47" />

from crystalquartz.

Inuyasha-Monster avatar Inuyasha-Monster commented on May 22, 2024

The same case with me , but my quartz server is console application , o m g ! what should i do ?

from crystalquartz.

DamonKiller avatar DamonKiller commented on May 22, 2024

@djl394922860 same, on your quartz projects used like that.

//开启windowsService监测端 浏览器打开http://localhost:5555/quartz
Action startup = app => { app.UseCrystalQuartz(() => scheduler); };
WebApp.Start("http://localhost:5555/", startup);

from crystalquartz.

guryanovev avatar guryanovev commented on May 22, 2024

@djl394922860, @DamonKiller
There are some ways to work that around. First of all you might need to make your console app to use OWIN pipeline and act as a self-hosted web app. Next step would be installing CrystalQuartz.Owin to the console app and configure it to work with the scheduler. Since that, you would have a working Crystal Quartz panel hosted inside your app at a particular port (let's say it is port 9000). If you are OK with just looking at the panel locally (like http://localhost:9000/quartz) then you are done. But if the panel should be exposed to the internet, you migt need some more steps and there are options here.

  1. You might just open the port (9000, for example) and expose your console app to the world directly (http://myserver:9000/quartz).
  2. It is possible to configure IIS to work as a reverse proxy to forward requests to console app like this: http://myserver/quartz -> localhost:9000/quartz
  3. You probably already have a site (web app) so it is possible to use some sort of proxy middleware forwarding requests from some_site_url/quartz to localhost:9000/quartz.

These all are just basic ideas, things might depend on environment you have. Please also consider security issues if you go one of these ways.

from crystalquartz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.