Skip to main content
Solved

Async Job Submitter Service

  • September 24, 2014
  • 2 replies
  • 17 views

Hello,

 

 

I have published a wrokflow as Job Submitter Service and I am sending a service request with service mode as ASYNC. I get immidiate response that job submitted successfuly. I am not sure how should I capture the response from the actual execution of service whether it's successful or failed. Is the notification service is only solution?

Best answer by david_r

Hi,

 

 

your answer from the JobSubmitter will contain a JobID, which you can use to poll the job status:

 

 

http://myserver/transformations/jobs/id/<jobid>

 

 

Also look at the API documentation where this call is explained in detail:

 

http://docs.safe.com/fme/html/FME_REST/#

 

 

David
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

david_r
Celebrity
  • 8394 replies
  • Best Answer
  • September 24, 2014
Hi,

 

 

your answer from the JobSubmitter will contain a JobID, which you can use to poll the job status:

 

 

http://myserver/transformations/jobs/id/<jobid>

 

 

Also look at the API documentation where this call is explained in detail:

 

http://docs.safe.com/fme/html/FME_REST/#

 

 

David

  • Author
  • 55 replies
  • September 24, 2014
Thanks David.