File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
client/src/main/java/io/netifi/proteus/quickstart/client
service/src/main/java/io/netifi/proteus/quickstart/service Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ public static void main(String... args) {
25
25
.accessToken ("kTBDVtfRBO4tHOnZzSyY5ym2kfY=" )
26
26
.host ("localhost" ) // Proteus Broker Host
27
27
.port (8001 ) // Proteus Broker Port
28
+ .disableSsl () // Disabled for parity with Javascript Tutorial
28
29
.build ();
29
30
30
31
// Connect to Netifi Proteus Platform
Original file line number Diff line number Diff line change @@ -9,14 +9,16 @@ services:
9
9
- netifi
10
10
environment :
11
11
BROKER_SERVER_OPTS : >
12
+ '-Dnetifi.broker.console.enabled=true'
13
+ '-Dnetifi.broker.ssl.disabled=true'
12
14
'-Dnetifi.authentication.0.accessKey=9007199254740991'
13
15
'-Dnetifi.authentication.0.accessToken=kTBDVtfRBO4tHOnZzSyY5ym2kfY='
14
16
'-Dnetifi.broker.admin.accessKey=9007199254740991'
15
17
'-Dnetifi.broker.admin.accessToken=kTBDVtfRBO4tHOnZzSyY5ym2kfY='
16
- '-Dnetifi.broker.console.enabled=true'
17
18
ports :
18
19
- " 7001:7001"
19
20
- " 8001:8001"
21
+ - " 8101:8101"
20
22
- " 9000:9000"
21
23
networks :
22
24
netifi :
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ public static void main(String... args) throws Exception {
22
22
.accessToken ("kTBDVtfRBO4tHOnZzSyY5ym2kfY=" )
23
23
.host ("localhost" ) // Proteus Broker Host
24
24
.port (8001 ) // Proteus Broker Port
25
+ .disableSsl () // Disabled for parity with Javascript Tutorial
25
26
.build ();
26
27
27
28
// Add Service to Respond to Requests
You can’t perform that action at this time.
0 commit comments