Skip to content

Commit

Permalink
VertxHttpClientHTTPConduit-backed client hangs when receiving large
Browse files Browse the repository at this point in the history
responses under load, fix #1613
  • Loading branch information
ppalaga committed Nov 24, 2024
1 parent 2758acd commit df2b825
Show file tree
Hide file tree
Showing 18 changed files with 1,770 additions and 88 deletions.
15 changes: 12 additions & 3 deletions docs/modules/ROOT/examples/client-server/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ quarkus.cxf.endpoint."/addressing-anonymous".implementor = io.quarkiverse.cxf.it
quarkus.cxf.endpoint."/addressing-decoupled".implementor = io.quarkiverse.cxf.it.ws.addressing.server.decoupled.WsAddressingImpl

# XML Schema validation
quarkus.cxf.codegen.wsdl2java.includes = wsdl/*.wsdl
quarkus.cxf.codegen.wsdl2java.package-names = io.quarkiverse.cxf.it.server.xml.schema.validation.model
quarkus.cxf.codegen.wsdl2java.wsdl-location = classpath:wsdl/calculator.wsdl
quarkus.cxf.codegen.wsdl2java.schema-validation.includes = wsdl/calculator.wsdl
quarkus.cxf.codegen.wsdl2java.schema-validation.package-names = io.quarkiverse.cxf.it.server.xml.schema.validation.model
quarkus.cxf.codegen.wsdl2java.schema-validation.wsdl-location = classpath:wsdl/calculator.wsdl

# Service endpoints
quarkus.cxf.endpoint."/annotation-schema-validated-calculator".implementor = io.quarkiverse.cxf.it.server.xml.schema.validation.AnnotationSchemaValidatedCalculatorServiceImpl
Expand Down Expand Up @@ -81,4 +81,13 @@ quarkus.cxf.client.basicAuthSecureWsdl.secure-wsdl-access = true
quarkus.cxf.client.helloMock.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/helloMock
quarkus.cxf.client.helloMock.service-interface = io.quarkiverse.cxf.it.HelloService

# Large slow client
quarkus.cxf.client.largeSlow.client-endpoint-url = http://localhost:${quarkus.http.test-port}/soap/largeSlow
quarkus.cxf.client.largeSlow.service-interface = io.quarkiverse.cxf.it.large.slow.generated.LargeSlowService
# Uncomment, regenerate and copy the generated classes to /src/main/java, if needed
#quarkus.cxf.codegen.wsdl2java.large-slow.includes = wsdl/LargeSlow.wsdl
#quarkus.cxf.codegen.wsdl2java.large-slow.package-names = io.quarkiverse.cxf.it.large.slow.generated
#quarkus.cxf.codegen.wsdl2java.large-slow.additional-params = -b,src/main/resources/wsdl/LargeSlow-async-binding.xml


quarkus.default-locale = en_US
Loading

0 comments on commit df2b825

Please sign in to comment.