
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 12-04-2018 06:19 AM
Create a SOAP message - CA SDM / CA Service Desk Manager - LOGOUT method
After the soap message... SOAP message function
Create a SOAP message - CA SDM / CA Service Desk Manager
01. Navigate to / Navegue em:
System web Services > Outbound > SOAP Message
02. Open your message
03. On SOAP Message Functions click New
04. Type
function:login
SOAP Action: Logout
Authentication type:none
Envelope:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://www.ca.com/UnicenterServicePlus/ServiceDesk">
<soapenv:Header/>
<soapenv:Body>
<ser:logout>
<sid>${logout.sid}</sid>
</ser:logout>
</soapenv:Body>
</soapenv:Envelope>
05. Auto-generate variables
06. type the credential on test Value
07. Click test, follow a sample
Sample Script how to use it:
try {
var s = new sn_ws.SOAPMessageV2('CA SDM', 'logout');
s.setStringParameterNoEscape('logout.sid', '773608655');
var response = s.execute();
var responseBody = response.getBody();
var status = response.getStatusCode();
}
catch(ex) {
var message = ex.message;
}
Update set Planejando e executando mudanças no ambiente.
Create a SOAP message - CA SDM / CA Service Desk Manager - Login Method
How to test the CA Service Desk Login Method
Was useful, please leave your feedback!
- 830 Views