-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NullReferenceException in TelemetryDispatchMessageInspector.BeforeSendReply when operation is OneWay #229
Labels
comp:instrumentation.wcf
Things related to OpenTelemetry.Instrumentation.Wcf
Comments
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 13, 2022
open-telemetry#229: Check if reply is not null
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 15, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 15, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 16, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 16, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 17, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 17, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 17, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 17, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 17, 2022
IevgenPlatonov
added a commit
to IevgenPlatonov/opentelemetry-dotnet-contrib
that referenced
this issue
Mar 17, 2022
CodeBlanch
pushed a commit
that referenced
this issue
Mar 17, 2022
…oreSendReply when operation is OneWay (#237) * Update TelemetryDispatchMessageInspector.cs #229: Check if reply is not null * #229: Added TelemetryDispatchMessageInspectorForOneWayOperationsTests * #229: Rename parameters * #229: Added new "1.0.0-rc6" version to CHANGELOG.md * #229: Fix text formatting * #229: Fix CHANGELOG formatting. Added extra asserts to the test * #229: Fix formatting * #229: Fix formatting in GHANGELOG.md Co-authored-by: iepl <[email protected]> Co-authored-by: Ievgen Platonov <[email protected]>
swetharavichandrancisco
pushed a commit
to swetharavichandrancisco/opentelemetry-dotnet-contrib
that referenced
this issue
Apr 4, 2022
…eInspector.BeforeSendReply when operation is OneWay (open-telemetry#237) * Update TelemetryDispatchMessageInspector.cs open-telemetry#229: Check if reply is not null * open-telemetry#229: Added TelemetryDispatchMessageInspectorForOneWayOperationsTests * open-telemetry#229: Rename parameters * open-telemetry#229: Added new "1.0.0-rc6" version to CHANGELOG.md * open-telemetry#229: Fix text formatting * open-telemetry#229: Fix CHANGELOG formatting. Added extra asserts to the test * open-telemetry#229: Fix formatting * open-telemetry#229: Fix formatting in GHANGELOG.md Co-authored-by: iepl <[email protected]> Co-authored-by: Ievgen Platonov <[email protected]>
reyang
added
the
comp:instrumentation.wcf
Things related to OpenTelemetry.Instrumentation.Wcf
label
Apr 27, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When a service operation is OneWay (
IsOneWay = true
)then reply parameter in
BeforeSendReply(ref Message reply, object correlationState)
equals null (https://www.hummingbird-alm.com/docs/html/M_Hummingbird_TestFramework_Services_WcfMessageInspector_BeforeSendReply.htm)
that causes NullReferenceException in
reply.IsFault
checkPossible solution:
Check reply object if it is not Null
then process current activity (set tags, process Enrich)
otherwise just stop activity (as it's now)
Q: Do we need to set Tag that request is OneWay (if it's possible of course)?
The text was updated successfully, but these errors were encountered: