The Configuration Manager is the tool to configure all local settings like user interface language, printers, encoding devices and SDK license. You can start it directly using the link in the Nexus Card SDK program group from the Windows Start menu or by the corresponding desktop link. Furthermore, there is the possibility to start it by a web service request. When starting it via web service request, you will not be able to change a few very basic settings like the web service port. As the request opens a user interface, it may only be called from localhost.
Expand |
---|
title | Request and Response overview |
---|
|
Code Block |
---|
| POST http://localhost:54880/ConfigManager |
Code Block |
---|
| soap operation ConfigManager |
Code Block |
---|
| <?xml version="1.0"?>
<configuration language="EN"/> |
Code Block |
---|
language | xml |
---|
title | Response Data on success |
---|
| <?xml version="1.0"?>
<status_response>
<result_id>0</result_id>
<result_text>Success</result_text>
</status_response> |
Response Data on error see Introduction to API. |
Expand |
---|
title | Request and Response in detail |
---|
|
Element | Attribute | Description |
---|
configuration
[in], Required. Root element for the ConfigurationManger request. | language
| [in] Language of the user interface. For details see the notes in Introduction to API. |
|
|