How create the webservices session ID using tool like postman or any rest client ?
search cancel

How create the webservices session ID using tool like postman or any rest client ?

book

Article ID: 278427

calendar_today

Updated On: 06-21-2024

Products

CA Client Automation - IT Client Manager CA Client Automation

Issue/Introduction

In this article https://knowledge.broadcom.com/external/article?articleId=145261 it is explained how to call some webservices methods using Soap UI but how can create the webservices session ID using tool like postman or any rest client ?

Environment

Client Automation - All Versions

Resolution

Using PostMan
 
- Select POST method and put the mod_gsoap.dll url :
Example :
http://<domain_name>/UDSM_R11_WebService/mod_gsoap.dll
 
- Select Body - Raw and XML and put following text :
 
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <Login>
       <userName>winnt://domainname/username</userName>
       <password>password</password>
       <manager>domainname</manager>
    </Login>
  </soap12:Body>
</soap12:Envelope>
 
- Click Send button.
The sessionID is returned by Login function :
 
 
 
 
Using SoapUI
Example in SoapUI tool :