Skip to content

Files

Latest commit

 

History

History

tck

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Java SDK TCK Server

Description

This module contains implementation of the JSON-RPC server for the Java SDK to interpret and process requests from the Test Driver based on the TCK's requirements. Upon receiving a request, it executes the corresponding function or procedure associated with the method specified in the request. Subsequently, it prepares the response in JSON format and sends it back to the test driver.

Setup

1. Navigate into tck directory.

cd tck

2. Build the project using Gradle.

../gradlew build

3. Run the server.

../gradlew bootRun

By default, the server will occupy port 80. If you need to specify a different port, modify the port in the application.yml file:

server:
    port: <PORT>