If I understood correctly he just want to make some web page which controls service's internal scheduling. What I would do is that...
1. Make the service read scheduling values from some config file (app.config for instance)
2. Create custom command handler in service that re-reads scheduling values when called
3. Create a web page which changes scheduling values and calls that custom command
More info here
http://www.codeproject.com/KB/system...wsService.aspx (how to create service and handle custom commands) and here
http://msdn2.microsoft.com/en-us/lib...ontroller.aspx (how to control service and send custom commands).