Previous Topic: Before You BeginNext Topic: Quick Summary


Using RiskMinder WSDL Files

To generate client applications, you must use the WSDL documents that are shipped with RiskMinder. These documents define the request and response messages that are exchanged between your application and RiskMinder Server to perform an operation.

The following table lists the WSDL documents that RiskMinder provides. These WSDLs are available at the following location:

You can use any tool of your choice, such as Apache Axis or .NET SOAP Framework, to generate client stub classes by using the WSDL files listed in the following table. You can then use the generated stub classes to build your application and access the required Web services.

WSDL File

Description

riskfort/ArcotRiskFortEvaluate
RiskService.wsdl

Used to perform risk evaluation and post evaluation.

riskfort/ArcotRiskFortAdminWeb
Service.wsdl

Used to manage a few administrative operations.

uds/ArcotOrganizationManagementSvc.wsdl

Used to create and manage organizations in your setup.

uds/ArcotConfigManagementSvc.wsdl

Used to create and manage user account types.

uds/ArcotUserManagementSvc.wsdl

Used to create and manage users and user accounts.

Important! If you are using .NET SOAP Framework to generate the client stubs, then you must include the following line in your code before you invoke the RiskMinder operations (ArcotRiskFortAdminSvc and RiskFortEvaluateRiskSvc):

ServicePointManager.Expect100Continue = false; // which is available in System.Net;

If you do not include this line, you might see errors.