This application tests connectivity to JIRA REST Web Services in a manor similar to P4DTG's JIRA-TEST plugin. To Install: Download jiraRestAccess.zip Unzip to a scratch directory. This will create two files: jiraRestAccess.jar lib/jira-rest-all-dependencies.jar To Run: From that scratch directory: To show the syntax: java -jar jiraRestAccess.jar To connect and get the Server's date - this tests connectivity to jira: java -jar jiraRestAccess.jar http:// : To retrieve an existing issue - this test permissions on the issue: java -jar jiraRestAccess.jar http:// : To update an issue. This appends the last argument to the issue's summary: java -jar jiraRestAccess.jar http:// : To run a query: java -jar jiraRestAccess.jar http://jira-host:port> : query "" The jira query language (jql) string is what you can type into the JIRA UI's Advanced search. Use -Dbatch_size=NN to alter the batch size from the default 100. Example below. This corresponds to the jira source's defect_batch attribute. Notes: If you don't provide a password on the command line then we'll prompt for it. You can test JIRA connectivity with either http or https, just provide the proper URL. If you receive SSL related exceptions with an https site, see the "Common Exceptions" section in http://answers.perforce.com/articles/KB/3578 Sample output from retrieving one issue: $ java -jar jiraRestAccess.jar http://jira-test.perforce.com:8080/ p4dtguser P4V-1146 Password: Connected to http://jira-test.perforce.com:8080/ Server Date: 2016/10/03 13:27:07 Issue 'P4V-1146' found: Crash when undoing file copy in add files wizard. $ java -Dbatch_size=20 -Dbatch_sleep=1000 -jar jiraRestAccess.jar https://jira.perforce.com:8443 jbrown query "updated >= '2018/12/17' order by key desc" Password: Time[786 ms]::Connected to https://jira.perforce.com:8443 Running query: updated >= '2018/12/17' order by key desc(batch_size=20, batch_sleep=1000) Start: Query 1 Finished: Query 1 Time[3043 ms] issues found = 20 sleeping 1000ms Start: Query 2 Finished: Query 2 Time[2759 ms] issues found = 20 sleeping 1000ms Start: Query 3 Finished: Query 3 Time[2268 ms] issues found = 11 Time[10078 ms]:51:updated >= '2018/12/17' order by key desc::P4VS-2785 <...snipped>