Commit 06678cd 1 parent c67d7b4 commit 06678cd Copy full SHA for 06678cd
File tree 5 files changed +12
-6
lines changed
backend/matchmaker-soap/src/main
kotlin/ru/ifmo/se/dating/matchmaker/soap
5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,9 @@ class RestClientConfiguration {
16
16
17
17
ssl : RestClientSsl ,
18
18
): MatchmakerRestClient = RestClient .builder()
19
- .baseUrl(baseUrl)
19
+ .baseUrl(" $ baseUrl/api " )
20
20
.messageConverters { it.add(MappingJackson2HttpMessageConverter ()) }
21
+ .apply (ssl.fromBundle(" internal" ))
21
22
.build()
22
23
.let { MatchmakerRestClient (it) }
23
24
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class WebServiceConfiguration {
20
20
service : ITMODatingMatchmakerPortType ,
21
21
): Endpoint {
22
22
val endpoint = EndpointImpl (bus, service)
23
- endpoint.publish(" /" )
23
+ endpoint.publish(" /matchmaker " )
24
24
return endpoint
25
25
}
26
26
}
Original file line number Diff line number Diff line change 1
1
spring :
2
+ config :
3
+ import : application-tls.yml
2
4
application :
3
5
name : matchmaker-soap
4
6
ssl :
5
7
bundle :
6
8
jks :
7
9
internal :
8
10
keystore :
11
+ type : PKCS12
9
12
location : classpath:keystore/itmo-dating-backend.p12
10
13
password : ${ITMO_DATING_KEY_STORE_PASSWORD}
11
14
truststore :
12
- location : ${spring.ssl.bundle.jks.internal.keystore.location}
13
- password : ${spring.ssl.bundle.jks.internal.keystore.password}
15
+ type : PKCS12
16
+ location : classpath:keystore/itmo-dating-backend.p12
17
+ password : ${ITMO_DATING_KEY_STORE_PASSWORD}
14
18
itmo-dating :
15
19
matchmaker :
16
20
url : https://matchmaker-0.dating.se.ifmo.ru:8080
Original file line number Diff line number Diff line change 303
303
304
304
<wsdl : service name =" ITMODatingMatchmakerService" >
305
305
<wsdl : port name =" ITMODatingMatchmakerPort" binding =" tns:ITMODatingMatchmakerSoapBinding" >
306
- <soap : address location =" https://localhost:8458" />
307
- <soap : address location =" http ://matchmaker-soap.dating.se.ifmo.ru:8080" />
306
+ <soap : address location =" https://localhost:8458/services/matchmaker " />
307
+ <soap : address location =" https ://matchmaker-soap.dating.se.ifmo.ru:8080/services/matchmaker " />
308
308
</wsdl : port >
309
309
</wsdl : service >
310
310
</wsdl : definitions >
Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ services:
187
187
- " 127.0.0.1:8455:8455"
188
188
- " 127.0.0.1:8456:8456"
189
189
- " 127.0.0.1:8457:8457"
190
+ - " 127.0.0.1:8458:8458"
190
191
restart : unless-stopped
191
192
node-exporter :
192
193
image : prom/node-exporter:latest
You can’t perform that action at this time.
0 commit comments