Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
marest94 committed Jul 11, 2024
1 parent 99bc52b commit 8f3b681
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 4 deletions.
8 changes: 8 additions & 0 deletions ci/docker/be-dataapp_resources/application-docker.properties
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,11 @@ application.security.password=$2a$10$MQ5grDaIqDpBjMlG78PFduv.AMRe9cs0CNm/V4cgUub

#checkSum verification - true | false
application.verifyCheckSum=false

#CORS configuration
#Allow specific origins
application.cors.allowed.origins=
#Allow specific HTTP methods
application.cors.allowed.methods=
#Allow specific headers
application.cors.allowed.headers=
2 changes: 1 addition & 1 deletion ci/docker/be-dataapp_resources/firewall.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ allowedHeaderNames=
#Set which values in header names should have the exact value and allowed (if want to allow any values keep it empty)
allowedHeaderValues=
#Set which HTTP methods should be allowed (if want to allow all header names, keep it empty)
allowedMethods=GET,POST
allowedMethods=GET,POST,OPTIONS
#Set if a backslash "\" or a URL encoded backslash "%5C" should be allowed in the path or not
allowBackSlash=true
#Set if a slash "/" that is URL encoded "%2F" should be allowed in the path or not
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,5 +196,13 @@ spring.h2.console.enabled=true
spring.datasource.username=sa
spring.datasource.password=file_password password

#CORS configuration
#Allow specific origins
application.cors.allowed.origins=
#Allow specific HTTP methods
application.cors.allowed.methods=
#Allow specific headers
application.cors.allowed.headers=

#For logging the response over WSS set to DEBUG, else leave empty
#logging.level.it.eng.idsa.businesslogic.processor.receiver=
2 changes: 1 addition & 1 deletion ci/docker/ecc_resources_consumer/firewall.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ allowedHeaderNames=
#Set which values in header names should have the exact value and allowed (if want to allow any values keep it empty)
allowedHeaderValues=
#Set which HTTP methods should be allowed (if want to allow all header names, keep it empty)
allowedMethods=GET,POST
allowedMethods=GET,POST,OPTIONS
#Set if a backslash "\" or a URL encoded backslash "%5C" should be allowed in the path or not
allowBackSlash=true
#Set if a slash "/" that is URL encoded "%2F" should be allowed in the path or not
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,5 +199,13 @@ spring.h2.console.enabled=true
spring.datasource.username=sa
spring.datasource.password=file_password password

#CORS configuration
#Allow specific origins
application.cors.allowed.origins=
#Allow specific HTTP methods
application.cors.allowed.methods=
#Allow specific headers
application.cors.allowed.headers=

#For logging the response over WSS set to DEBUG, else leave empty
#logging.level.it.eng.idsa.businesslogic.processor.receiver=
2 changes: 1 addition & 1 deletion ci/docker/ecc_resources_provider/firewall.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ allowedHeaderNames=
#Set which values in header names should have the exact value and allowed (if want to allow any values keep it empty)
allowedHeaderValues=
#Set which HTTP methods should be allowed (if want to allow all header names, keep it empty)
allowedMethods=GET,POST
allowedMethods=GET,POST,OPTIONS
#Set if a backslash "\" or a URL encoded backslash "%5C" should be allowed in the path or not
allowBackSlash=true
#Set if a slash "/" that is URL encoded "%2F" should be allowed in the path or not
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public class MessageWebSocketOverHttpSender {
private ResponseMessageBufferClient responseMessageBufferClient;
private InputStreamSocketListenerClient inputStreamSocketListenerWebSocketClient;

@Autowired
private TLSProvider tlsProvider;

public MessageWebSocketOverHttpSender(RejectionMessageService rejectionMessageService, FileStreamingBean fileStreamingBean,
Expand Down

0 comments on commit 8f3b681

Please sign in to comment.