...
- LifeTime — RKeeper 7 Write XML Order — a license is purchased once for a specific object and does not imply any restrictions on requests within this object.
After purchasing a license, you need to generate a license key and add it to the restaurant properties in the manager station. Read more in the article Saving Orders XML Interface - Subscription based — a license for the integration of external applications for 1 or 12 months. SaveOrder, PayOrder, MakeRetunGoods requests must be signed and verified by the licensing system. For more information, see Using the XML Interface by Subscription.
Methods of Data Exchange with XML Interface
There are two ways to exchange data with the XML interface:
- Using the HTTPS protocol — available from r_keeper version 7.05.03 and later
- Using rk7xml.dll — in this case, you need to add an XML interface to the cash server, data exchange will be performed through the port specified in the server properties. To test the process, you may use the special utility XMLTEST.exe. Read more about the settings below in the Setting up the XML interface using Configuring XML Interface Using rk7xml.dll section.
Configuring XML Requests Work via HTTPS
...
- Go to Service > Stations and Devices
- Select a required restaurant and go to the cash server
- In the server properties:
- Specify a free port in the HTTP Data Port field. Optionally, enable the Use Free Listen Port setting to make the server choose a different port when the port specified in the HTTP Data Port property is busy.
- In the HTTP Restrictions Rights section, select the HTTP _ Access privilege in all fields
- Save Changesthe changes
- Reboot Restart the cash server.
If you want need to create a separate privilege and role with HTTPS access right, click below.
Expand | ||
---|---|---|
| ||
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
Requests to the cash server should be sent to the following URL:
Code Block |
---|
https://*IP:HTTPDataPort*/rk7api/v0/xmlinterface.xml |
IP:HTTPDataPort you You need to specify your own IP:HTTPDataPort.
To access the interface, you must need to send a login and password — the name and password of an employee — of the Basic Authorization type when sending each request.
Data exchange with the cash server must should be performed in UTF-8 encoding.
...
Testing XML Interface with Built-in
...
Utility
To validate an test the XML interface over an via the HTTPS interface:
- Visit https://ip:port/webgui/iserxmltest.htm. For example, https://127.0.0.1:13665/webgui/iservxmltest.htm
- Enter the
...
- login information of the created employee: the username and the password
- Enter the text of the XML request to execute
- Click the Execute button
The result should be like the picture below:
Authentication and
...
Request Execution
For authentication and authorization, the name and the password of the employee from r_keeper 7 are used.
The WEB interface at the time of this writing has the following limitations:
- New WEB interface: https://ip:port/webgui/, for example: https://ip:port/webgui/index.htm
- API version 0
...
- — the XML interface and r_keeper 7 internal procedures: https://ip:port/rk7api/v0, for example: https://ip:port/rk7api/v0/xmlinterface.xml
- API version 1
...
- — new functions for interacting with r_keeper 7: https://ip:port/rk7api/v1, for example: https://127.0.0.1:13665/rk7api/v1/serverstatus.xml
After specifying the right and assigning it to the corresponding role, you can check the correctness of the settings by opening the corresponding pages in the WEB interface.
Enter one of the options variants in the address bar, an authorization window will appear - — enter the employee's name of the employee and password. Please note that you need to enter your own IP and port.
- The
...
- WEB interface is available at: https://ip:port/webgui/
- https://ip:port/rk7api/v1
- https://ip:port/rk7api/v0
...
Executing Request
...
via wget
An example of making a request using the wget utility:
Code Block |
---|
wget.exe --secure-protocol=TLSv1 --no-check-certificate --header="Content-Type: text/xml" --http-user |
...
=9006 --http-password=9006 --post-file=requestData.xml https://127.0.0.1:20001/rk7api/v0/xmlinterface.xml |
Request parameters:
- User: --http-user=9006
- Password: --http-password=9006
- Request file: --post-file=requestData.xml
After executing such a request, its result will be saved to the xmlinterface.xml file.
...
Configuring XML Interface Using rk7xml.dll
Info | ||
---|---|---|
| ||
This way of interacting with the XML interface is not recommended due to lack of authorization. |
Expand | ||
---|---|---|
|
...
| |
The XML interface works |
...
via the iTCPXML.dll driver. When working with the XML interface via rk7xml.dll, in addition to the settings described above, you must manually add the interface to the |
...
cash server:
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
The current protocol version 2 assumes control over the execution of commands by the server. In the previous version, it was impossible to know if the last request is completed |
...
in case there was a disconnect after the request started processing. |
...
For this purpose, now there are new functions — GetLastXMLResult and GetLastXMLResultToStream |
...
. If the response could not be sent after the request was completed, it is stored on the server until a special request is made when calling these functions or until the next request. If the response was successfully sent, it is not stored on the server. In any case, you can always find out the number of the last executed request for a particular ConnectName. ConnectName |
...
— an arbitrary Null-terminated string, a connection identifier |
...
— a sequential number of the request, maintained for each connection identifier separately. You must pass 0, otherwise the passed request number will be used.
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
|
...
Testing XML Requests with TESTXML.exe
To check the request when using rk7xml.dll, use the XMLTEST.exe utility, which can be downloaded from the link or from the FTP server at: ftp://FTP.ucs.ru/rk7/ForDealers/XMLInterface/.Launch
...
Expand | ||
---|---|---|
| ||
Please note that when run without parameters, the utility displays usage information:
|
...
Parameters description:
|
...
|
...
|
...
|
...
After execution, the utility will save the response from the r_keeper 7 XML interface to the response.xml file. To check the functionality and correctness of the settings, you can use the following query, which should be saved to the xmlquery.xml file:
|
...
|
...
|
...
|
For convenience, there is a utility with a graphical interface TestXML.zip.
Request
...
Logging
Expand | ||
---|---|---|
| ||
|
...
|
...
|
...
|
Expand | ||
---|---|---|
| ||
|
...
|
...
|
...
Be sure to restart the cash server after the changes have been made. Requests will be paired |
...
— INxxxxx.XML and |
...
OUTxxxxx.XML. Additionally, you can enable the NoLogginQueries parameter |
...
— it is responsible for disabling logging of the queries specified in the parameter. Specify the required requests in the field. |