Getting Available Encoding Options

The API client can get the list of available encoding options (for scan configuration).

CxSDKWebService.GetConfigurationSetList Method


public CxWSResponseConfigSetList GetConfigurationSetList(
   string SessionID
);

Parameters

Return Value

Available encoding options.

Example


internal void Main(string [] args)
{
     String sessionID = args[0];
     CxSDKWebServiceSoapClient cxSDKProxy = new CxSDKWebServiceSoapClient();

     CxWSResponseConfigSetList response = cxSDKProxy.GetConfigurationSetList(sessionID);
     GetConfigurationsSucceded = response.IsSuccesfull;
}

SOAP to REST Mapping

This section covers SOAP to REST migration and mapping of our legacy SOAP based SDK to the new REST APIs. It is recommended to use this reference only once CxSAST V8.8.0 is installed.

GetConfigurationSetList

GET /sast/engineConfiguration

Get details of all engine configurations.

For more mapping information, refer to API Mapping (SOAP to REST). You can also find a summary of our REST APIs here.