vote up 0 vote down star

Hi,

I've been O'Reilly's RESTful web services this weekend and I can't seem to find an explanation of when a client would want to kick of a business process in a server.

For example, I want to kick off administrative jobs on a given host in an enterprise, so which verb in HTTP would this fall under?

I'm thinking it would be a POST(p) (Overloaded POST) where I construct an XML request in the HTTP request body that says "Run job X for system Y with parameter Z.".

Can anyone confirm that this still conforms to REST?

Thanks, Martin

flag
Thinking about this some more, my idea there smells like RPC leak. I'm thinking it would be better to consider an additional resource on the service, something like a scheduler, that I POST a job start request, which perhaps places it in to a job scheduling factory in the service that determines when/how to start the job (example details there). Anyone? – Martin Blore Aug 30 at 19:41

1 Answer

vote up 1 vote down check

As long as you treat the job request as a resource, the result can be completely RESTful.

By POSTing to a collection of job requests you can create a jobrequest resource as a child of that collection. You would need to assign some form of identify to the job request so that you could return an URL in the Location header of the POST response. By doing a GET on that URL you can see the current status of the job request. When the job is complete, you could add a link to the job request to follow to see the results of the job.

link|flag
Thanks Darrel :), I didn't consider holding the job request for addressability reasons, that's always a good thing. – Martin Blore Aug 30 at 21:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.