Changes between Version 3 and Version 4 of WebSubmit


Ignore:
Timestamp:
Jan 30, 2017, 3:00:34 PM (7 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebSubmit

    v3 v4  
    1 = Web-based job submission =
     1= Local web-based job submission =
    22
    3 You can develop web pages, run on your BOINC server, for submitting jobs.
    4 These pages are application-specific,
     3A '''local web-based job submission system'''
     4is a set of scripts that run on your BOINC server,
     5allowing users to submit and monitor jobs without login access to the BOINC server.
     6
     7Note: consider using [RemoteOverview remote job submission] instead;
     8this lets you put the job-submission web interface on a computer other than the BOINC server,
     9and lets you use either Python or PHP.
     10
     11These scripts are application-specific,
    512since the way that users specify parameters and input files depends on the application.
    6 
    7 These pages are easiest to implement in PHP.
     13These scripts are easiest to implement in PHP.
    814BOINC provides [RemoteOverview#LocalPHPinterfaces PHP APIs] to
    9 stage files, authenticate users,
    10 create jobs and batches, and so on.
     15stage files, authenticate users, create jobs and batches, and so on.
    1116
    1217 * '''inc/util.inc''': utility functions
     
    1924Input files can be handled in any of several ways:
    2025
    21  * Uploading them (from the submitter's computer) as part of the submission form.
    22    The submission script would then [JobStage stage them].
    23  * Using the [RemoteInputFiles#Per-userfilesandbox user file sandbox] mechanism.
    24  * Serving them from a remote server.
     26 * Upload them (from the submitter's computer) as part of the submission form.
     27   The submission script must then [JobStage stage them].
     28 * Use the [RemoteInputFiles#Per-userfilesandbox user file sandbox] mechanism.
     29 * Serve them from a remote server.
    2530
    2631== Authorizing requests ==