Custom HTTP correlation support #297
stijnmoreels
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
@fgheysels @pim-simons @gverstraete @meersschautarnaud, would this be a valuable addition? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, we don't allow custom HTTP correlation. This, because we wanted to have a stable functionality when Web API and Messaging is used at the same time. We created dedicated interfaces for this so the application always gets the right kind of correlation info accessor.
But, we received a request to use custom HTTP correlation by @carolinasantos0. This raises the question: should we come up with a way to allow custom HTTP correlation, while still being strict when using with Messaging?
We could make our dedicated interfaces an open-generic one, and make sure that the custom correlation model is either inheriting from
HttpCorrelationInfo
orMessageCorrelationInfo
, so we're still always sure from where the correlation comes.Beta Was this translation helpful? Give feedback.
All reactions