Coder Social home page Coder Social logo

Comments (4)

tomasr avatar tomasr commented on May 13, 2024 1

OK, found one possible repro scenario: This same exception will happen if the service operation that was called explicitly or implicitly ends up calling another remote service.

However, it will only happen if the calling code instantiates a new OperationContextScope and does not dispose it correctly, so something like this:

var channel = new SomeServiceClient();
// the following line should be in a using statement
var scope = new OperationContextScope((IContextChannel)channel);
// use OperationContext for something
OperationContext.Current.OutgoingMessageHeaders.Add(new SomeCustomHeader());

// call service
channel.CallSomeOperation();

Code like this causes the OperationContext for the child call to be stuck on the current thread, so when we look at OperationContext.Current later on, we're getting the wrong context.

from applicationinsights-sdk-labs.

tomasr avatar tomasr commented on May 13, 2024

@rahulrajatsingh Could you tells us a little information?

  • What .NET Version is your code compiled for, and what .NET Framework version is it running no?
  • Are you using duplex contracts?
  • Does your service code manipulate OperationContext in any way during the operation execution?
  • What behaviors are you enabling on your service?

From the stack trace, it looks like the exception is coming up when processing the response message generated by the service... it's not finding the same OperationContext as the one that was present when the request message came in, so likely the context is in the wrong state to look up the necessary information.

from applicationinsights-sdk-labs.

rahulrajatsingh avatar rahulrajatsingh commented on May 13, 2024

Please find all the requested details below:

What .NET Version is your code compiled for, and what .NET Framework version is it running no?

4.5.1

Are you using duplex contracts?

No

Does your service code manipulate OperationContext in any way during the operation execution?

Yes we are pushing claims in the OutgoingMessageHeaders for other service calls.

What behaviors are you enabling on your service?

No custom behavior. Its configured to use Single instance with Concurrency mode as Multiple and some throttling using configurations.

from applicationinsights-sdk-labs.

tomasr avatar tomasr commented on May 13, 2024

@rahulrajatsingh Can you confirm if your code suffers by any chance of the issue mentioned above of not disposing correctly the OperationContextScope object?

Also, version 0.26.0-build14298 was published yesterday with a workaround for this. Can you try it and let us know if it resolves the issue for you?

from applicationinsights-sdk-labs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.