Giter Site home page Giter Site logo

Comments (4)

ChrisNewell-Inari avatar ChrisNewell-Inari commented on May 25, 2024

In the API Documentation, the DicomClient constructonr lets you set the AssociationRequestTimeoutInMs via the DicomClientOptions hope this helps!

from fo-dicom.

mohantyytasre avatar mohantyytasre commented on May 25, 2024

Thanks for reply....
I did used it and found that default Association Request Time Out duration is 5000 ms. I have added the Eventhandler with client as

        client.AssociationRequestTimedOut += (sender, e) =>
        {
            UpdateServerStatus($"Association requested for server time out: "+e.String());
        };

But even after no response from server after 5 sec. this event handler is not getting accessed by program. But also the system.exception error is getting logged as Exception thrown: 'System.Net.Sockets.SocketException' in System.dll.
So is it that where it is not allowing and exiting the current thread.
Also is there a way to cancel a request sent by client because in some discussions I have read that C-Cancel is not supported by fo-dicom.

from fo-dicom.

ChrisNewell-Inari avatar ChrisNewell-Inari commented on May 25, 2024

Maybe A-Abort?

from fo-dicom.

gofal avatar gofal commented on May 25, 2024

Take a look at this class: Tests/FO-DICOM.Tests/Network/Client/DicomClientTimeoutTests.cs
This are the unit tests about timeouts in clients. There you also find a method that tests the AssociationRequestTimeout:

public async Task AssociationRequestTimeOutExceptionShouldThrowAfterMaxRetry()

Basically, you have to wrap your await client.SendAsync() in a try-catch-block and catch the DicomAssociationRequestTimeOutException instead of only adding a handler to the event. You should catch all exceptions, also the SocketException.

You also can cancel requests. You can pass a CancellationToken as parameter to client.SendAsync(cancellationToken).

from fo-dicom.

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.