Locate the SystemConnection.ConnectionOptions.getConnectionString()
method and put your
hostname, username, and password in the non-IBMi leg of code.
For the love of all things good, do not commit your changes
In pom.xml, look for the jt400
dependency declaration, which will look something like this:
<dependency>
<groupId>net.sf.jt400</groupId>
<artifactId>jt400</artifactId>
<version>11.2</version>
<!-- comment the <scope> tag for local development -->
<scope>provided</scope>
</dependency>
As the comment suggests, comment out the scope tag.
The test input file is simple a set of JSON requests as you would expect to receive from a client, for instance:
{"id":"boop","type":"connect","technique":"cli", "props":"libraries=QIWS;naming=system;full open=true"}
{"id": "dovetail", "type":"dove", "sql": "select * from sample.employee", "run": true}
Either by:
a. Setting the test.file
system property in your debug configuration
b. Changing the code in CodeForiServer.java to point at your test file (search for System.getProperty("test.file"
). Remember to not commit this change.
- Edit the
<version>
tag value inpom.xml
and commit reasonably