Starting TLS failed
LDAP: couldn't connect to LDAP server
Differences
This shows you the differences between two versions of the page.
public:start [2017-04-05 12:55:10] – rihooks | public:start [2024-09-06 08:26:14] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Getting started | + | ====== Getting started |
- Install **Security Server** and setup **Trust Services**: | - Install **Security Server** and setup **Trust Services**: | ||
Line 9: | Line 9: | ||
**Tips:** | **Tips:** | ||
- | * You can use ready **RoksNet Portal** | + | * You can install |
- | * Unordered List ItemUse | + | * You can use **RoksNet Portal** |
{{: | {{: | ||
+ | |||
+ | |||
+ | ---- | ||
Line 22: | Line 25: | ||
{{ : | {{ : | ||
- | ===== Important (to get a unique Member/User Code for RoksNet) ====== | + | ===== Important (to get a unique Member/User Code for RoksNet |
Before setting up your Security Server, please provide the following information to us: | Before setting up your Security Server, please provide the following information to us: | ||
Line 44: | Line 47: | ||
| Ubuntu 14.04 LTS x86-64 | | Ubuntu 14.04 LTS x86-64 | ||
| 2 GB RAM, 10 GB disk space | Minimum system requirements | | 2 GB RAM, 10 GB disk space | Minimum system requirements | ||
- | | http://apt.roksnet.com/xroad6-debs | + | | http://x-road.eu/packages |
- | | http://apt.roksnet.com/xroad6-debs/roksnet_repo.gpg | The repository key | | + | | http://x-road.eu/packages/xroad_repo.gpg | The repository key | |
| TCP 5500 | Port inbound & outbound for message exchange between security servers | | | TCP 5500 | Port inbound & outbound for message exchange between security servers | | ||
| TCP 5577 | Port inbound & outbound for querying OCSP responses between security servers | | | TCP 5577 | Port inbound & outbound for querying OCSP responses between security servers | | ||
Line 78: | Line 81: | ||
INSTALLATION | INSTALLATION | ||
- | 3. Add the address of the RoksNet | + | 3. Add the address of the X-Road |
- | < | + | < |
deb http:// | deb http:// | ||
deb http:// | deb http:// | ||
- | 4. Add RoksNet's repository' | + | 4. Add X-Road's repository' |
- | < | + | < |
< | < | ||
< | < | ||
Line 90: | Line 93: | ||
5. Install the security server software: | 5. Install the security server software: | ||
< | < | ||
+ | < | ||
< | < | ||
Line 240: | Line 244: | ||
6. Install postgreSQL | 6. Install postgreSQL | ||
+ | For ubuntu 16.04 LTS | ||
+ | <code bash> | ||
+ | vi / | ||
+ | </ | ||
+ | add line: | ||
+ | <code bash> | ||
+ | deb http:// | ||
+ | </ | ||
+ | Add key | ||
+ | <code bash> | ||
+ | wget --quiet -O - https:// | ||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | apt-get update | ||
+ | apt-get install postgresql-9.3 | ||
+ | </ | ||
+ | |||
+ | For ubuntu 14.04 LTS | ||
< | < | ||
Line 384: | Line 407: | ||
=== Python example === | === Python example === | ||
- | Source code of example: | + | Source code of example: |
- | + | The example contains library and two examples. Installation instructions are in included in the package. | |
- | The demo application is written in Python. Installation instructions are in included in the package | + | |
- | + | ||
- | The example SOAP server accepts input messages in both X-road protocol 3.1 and 4.0 and formats response message according | + | |
- | to the same protocol which was used by the client. | + | |
- | The application contains source code of Population Registry, Passport database, Vehicle database, Company database and Prescription database demo services which are available in RoksNet Development Environment. | + | |
- | + | ||
- | To create a new SOAP server for Content Service provider: | + | |
- | * create SOAP server instance for SOAP server (example: pyxadapter/ | + | |
- | * include service registration function and define routing for new SOAP server in pyxadapter/ | + | |
To create a new service in the SOAP server: | To create a new service in the SOAP server: | ||
- | * create service implementation function | + | * create service implementation function (example: |
- | * import and registrate | + | * import and register |
- | * create service description WSDL (example: | + | * create service description WSDL (example: |
* publish service in Security Server and grant access to clients | * publish service in Security Server and grant access to clients | ||
To create SOAP client: | To create SOAP client: | ||
- | * create X-road client class (corresponding to a service provider) with methods corresponding to services and start calling those methods (example: | + | * create X-road client class (corresponding to a service provider) with methods corresponding to services and start calling those methods (example: |
=== Java adapter example === | === Java adapter example === | ||
- | GitHub link: [[https:// | + | GitHub link: [[https:// |
All of the related documentation is on the GitHub page | All of the related documentation is on the GitHub page | ||
+ | |||
+ | Since the example is not created by Roksnet, we do not guarantee the operation of the example with the Roksnet Portal. | ||
=== C# example with X-tee.NET === | === C# example with X-tee.NET === | ||
Line 547: | Line 563: | ||
* message-path-format - message log filename format | * message-path-format - message log filename format | ||
* temporaryStoragePath - optional path for saving attachments (if not provided, storagePath will be used). If value is :inmemory: then attachments will be handled in memory only | * temporaryStoragePath - optional path for saving attachments (if not provided, storagePath will be used). If value is :inmemory: then attachments will be handled in memory only | ||
+ | |||
+ | |||
+ | Since the example is not created by Roksnet, we do not guarantee the operation of the example with the Roksnet Portal. | ||