- 06 Dec 2024
- 1 Minute à lire
- SombreLumière
- PDF
SOAP Provisioning Wrappers
- Mis à jour le 06 Dec 2024
- 1 Minute à lire
- SombreLumière
- PDF
The SOAP provisioning wrapper maps all commands defined in the OneSpan Authentication Server provisioning WSDL file in a class called .
The provisioning commands return a ProvisioningCommandResponse object that wraps the server’s response. For a list of different methods defined by this class, see Overview of SOAP wrappers.
Object model
In order to comply with the object-oriented aspect of the used programming language, the OneSpan Authentication Server Administration entity is wrapped by an object model. This object is essentially a container for the entities’ properties, since it has no logic.
These properties can be accessed using a specialized getter, e.g. getUserID(). To set these properties, use a specialized setter, e.g. setUserID(String userID).
Mobile Authenticator Studio4.0 provisioning
Configuration
To provision Mobile Authenticator Studio 4.0 authenticators, the configuration file must be updated as described in the OneSpan Authentication Server SDK Programmer's Guide, Section "Mobile Authenticator Studio 4.0 configuration". In that case, the configuration file is used as the input to the Mobile Authenticator Studio Midlet Customization Tool.
After updating the required binaries, the SMS gateway needs to be updated to enable Mobile Authenticator Studio provisioning.
To enable distribution of the Mobile Authenticator Studio midlet, the Web.config file must be defined at the following location:
sdk_install_dir\ASP.Net\src\IdentikeySampleSite\Web.config
<setting name="SMS_Request_URL" serializeAs="String"> <!-- SMS Gateway address: This must contain the following substitution strings: phone_id : mobile phone number sms_text : message text e.g: http://www.smsgateway.com/http/sendmsg?user=user&password=password&api_id=123456&to=%phone_id%&text=%sms_text% --> <value /> </setting> <setting name="SMS_Fail_Text" serializeAs="String"> <!-- The text pattern used to match the SMS gateway server error response. --> <value /> </setting>