-3

I need a code for this using webservice.

Post url is http://172.25.183.183:8080/jiraservice/rest/create/ and post parameters are Summary Desc Type Acc_cr

Explanation: Desc:"As a"+whoTextField.text +"\n I want"+whatTextView.text+"\n so that"+outputTextField.text

Type:"story"

  • If you are passing parameters in the URL you should use GET rather than POST. Then you can simply add a query string at the end of your URL. Here's a good article. http://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript – Mark Bellamy Apr 12 '17 at 17:31

1 Answers1

0

Another method without sending parameters in URL, you can use RESTClient to call the endpoint of your service and send the parameters in request body in form of the object your service consumes.

Agam
  • 1,109
  • 9
  • 10