GetQuestions() webservices sample Soap request for Strong Authentication
search cancel

GetQuestions() webservices sample Soap request for Strong Authentication

book

Article ID: 112558

calendar_today

Updated On:

Products

CA Advanced Authentication CA Strong Authentication CA Risk Authentication

Issue/Introduction

Could you please provide the sample Soap Request for GetQuestions() webservices  which uses the Authentication and Authorization (AnA) headers?

Environment

Release:9.x
Component: WEBFRT

Strong Authentication

Advanced Authentication

Resolution

Here is a sample request which can be used to get the Questions using Web services. This sample uses Authentication and Authorization as well so need to pass the Admin credentials in the Header section, if that is not needed then the Header contents can be removed.

 
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:msgs="http://ws.arcot.com/WebFortAuthAPI/7.0/msgs" xmlns:xsd="http://ws.arcot.com/WebFortCommonAPI/7.0/xsd">
   <soap:Header>
                <orgname>DEFAULTORG</orgname>
                <userid><Admin-Name></userid>
                <credential><Admin-password></credential>
   </soap:Header>
   <soap:Body>
      <msgs:GetQuestionsRequest>
         <!--Optional:-->
         <xsd:clientTxnId>123456</xsd:clientTxnId>
         <msgs:userName>USERNAME</msgs:userName>
         <!--Optional:-->
         <msgs:orgName>ORGNAME</msgs:orgName>
         </msgs:GetQuestionsRequest>
   </soap:Body>
</soap:Envelope>