% Generated by roxygen2: do not edit by hand % Please edit documentation in R/web-services.R \name{show_jobs_list} \alias{show_jobs_list} \title{Show all jobs} \usage{ show_jobs_list(url) } \arguments{ \item{url}{string url of server: It must contain the server address and base url; service name is added automatically} } \value{ List of jobs. Every job in the list is described by: \itemize{ \item{id: unique job identifier} } } \description{ It shows all jobs (run, succeded or failed) invoked by the user on remote server using, the proper GMQL web service available on a remote server } \details{ If error occurs, a specific error is printed } \examples{ ## Login to GMQL REST services suite as guest remote_url = "http://www.gmql.eu/gmql-rest/" login_gmql(remote_url) ## List all jobs list_jobs <- show_jobs_list(remote_url) }