Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending cookie as request header in SOAP UI request for rest web service

I am testing a Rest API using SOAP UI tool.

First, I hit another API which gave me the jSessionid and then in my actual request I added a parameter to the request header by the name "Cookie" and provide it the above extracted jsessionid value. Everything worked fine.

What I want is to somehow dynamically set the cookie/jessionid in request header without explicitly/manually doing it.

How can it be done?

like image 635
Anand Avatar asked Jan 19 '15 10:01

Anand


1 Answers

You can create a application session from the UI and use cookies that save the session. Get the session cookie details from the browser using the developer tools of the browser. The image shows where the cookies are available in the browser :Getting cookie header parameter

In soapUI create a header attribute with the same value you obtained from the browser and run the request. The request will use the same session id(JSESSIONID) that is saved in the cookie to run the request. The below images shows how to add the cookie value to the header.Adding cookie value o request header

like image 78
kirancodify Avatar answered Sep 18 '22 22:09

kirancodify