marcinczeczko on 398-config-defaults
marcinczeczko on backpressure-and-configs
Reorganized standaolone & examp… Merge branch 'milestone/backpre… Set a version of target release and 16 more (compare)
marcinczeczko on 398-config-defaults
Set target version for this bra… Merge branch 'milestone/backpre… (compare)
marcinczeczko on backpressure-and-configs
Set target version for this bra… (compare)
marcinczeczko on 398-config-defaults
Documentation fix. #394 Added encoding of uri para… Write a test case for requestin… and 5 more (compare)
For instance, on the adapter verticle, add option logActivity: true
on clientOptions
object, as follows
"options": {
"config": {
"clientOptions": {
...
"logActivity": true
}
}
}
then in logback.xml set DEBUG level for netty handler:
<logger name="io.netty.handler.logging" level="DEBUG"
additivity="false">
<appender-ref ref="STDOUT"/>
</logger>
Is it possible to refer to the query string or form parameters inside a Template?
@toniedzwiedz it is not possible currently to access query parameters inside the template, however you have full access to query parameters inside Adapter via ClientRequest object
in template, you can operate over _result
(contains data from service call) and _response
(contains service response metadata, as e.g. status code) scopes
_request
with request parameters - guys what do you think?