Skip to content

Commit aea03a3

Browse files
authored
Add files via upload
1 parent c824fe3 commit aea03a3

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

README.MD

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,24 @@ Use or operation of this code is subject to acceptance of the license available
22

33
Download this sample to your system.
44

5-
You can find instructions on setting up the production for this sample in: [First Look: Connecting Systems in InterSystems IRIS Using Java Business Hosts](http://docs.intersystems.com/iris20181/csp/docbook/DocBook.UI.Page.cls?KEY=AFL_javabusinesshosts).
5+
You can find instructions on setting up the production for this sample in: <a href="http://docs.intersystems.com/iris201811/csp/docbook/DocBook.UI.Page.cls?KEY=AFL_javabusinesshosts">First Look: Connecting Systems in InterSystems IRIS Using Java Business Hosts</a>.
66

7-
## Note:
8-
The `.classpath` file has the following line
9-
```
10-
<classpathentry kind="lib" path="C:/InterSystems/IRIS/dev/java/lib/JDK18/isc-gateway-3.0.0.jar"/>
11-
```
7+
The jar files in the repository Releases were created using the following jdk commands:
128

13-
You should modify it to reflect the directory where InterSystems IRIS is installed.
14-
9+
mkdir JavaHostsOperationOut
10+
mkdir JavaHostsServiceOut
11+
12+
javac -classpath C:\InterSystems\IRIS\dev\java\lib\JDK18\intersystems-gateway-3.0.0.jar -d JavaHostsOperationOut src\JavaHosts\JavaHostsOperation.java
13+
14+
javac -classpath C:\InterSystems\IRIS\dev\java\lib\JDK18\intersystems-gateway-3.0.0.jar -d JavaHostsServiceOut src\JavaHosts\JavaHostsService.java
15+
16+
cd JavaHostsOperationOut
17+
18+
jar cf ..\Releases\JavaHostsOperation.jar JavaHosts
19+
20+
cd ..\JavaHostsServiceOut
21+
22+
jar cf ..\Releases\JavaHostsService.jar JavaHosts
23+
24+
You should modify the classpath to reflect the directory where InterSystems IRIS is installed.
25+

0 commit comments

Comments
 (0)