Search found 6 matches

by geke
Fri, 2017-09-01, 12:11
Forum: DCMTK - General
Topic: DcmFindSCU multiple queries on the same association
Replies: 1
Views: 2044

DcmFindSCU multiple queries on the same association

Hello, When doing low level queries (for exmple a imge/instance level query) many sub-queries are necessary. I use DcmFindSCU::performQuery for the queries but it creates/destroys a association on every call. This might be a reasonable overhead to create/destroys a association on every call. DcmFind...
by geke
Thu, 2017-08-31, 13:55
Forum: DCMTK - General
Topic: DIMSE_sendCancelRequest problem
Replies: 4
Views: 5272

Re: DIMSE_sendCancelRequest problem

Hello Michael, I tried it with findscu: It produces the same error. The problem is not my code/implementation. I will post this topic in the ORTHANC forum. Greeting Gerd findscu -v --cancel 10 -P -aec ORTHANC -aet MY_SCU localhost 4242 -k QueryRetrieveLevel=IMAGE I: Find Response: 280 (Pending) I: I...
by geke
Wed, 2017-08-30, 15:57
Forum: DCMTK - General
Topic: DIMSE_sendCancelRequest problem
Replies: 4
Views: 5272

Re: DIMSE_sendCancelRequest problem

Hello Michael, W: DIMSE Warning: (ISEEPROSTORESCP,ORTHANC): findUser: Status Cancel: MatchingTerminatedDueToCancelRequest, but DataSetType!=NULL W: DIMSE Warning: (ISEEPROSTORESCP,ORTHANC): Assuming no response identifiers are present E: Association Release Failed: 0006:0316 DUL P-Data PDU arrived A...
by geke
Mon, 2017-08-28, 18:24
Forum: DCMTK - General
Topic: DIMSE_sendCancelRequest problem
Replies: 4
Views: 5272

DIMSE_sendCancelRequest problem

Hello, I have a "problem" with the cancelling of an query request. i use a DcmFindScu based implementation. When cancelling the query i sent DIMSE_sendCancelRequest from the callback. Is this correct? Are there any examples i have missed (couldn't find any). void MyCallback::callback ( T_D...
by geke
Fri, 2017-08-11, 11:54
Forum: DCMTK - General
Topic: ProgressBar c-move
Replies: 3
Views: 3086

Re: ProgressBar c-move

Hello Michael, That is what i was expecting from my reading before - just wanted to make it clear that i dont have missed anything. I use only uncompressed DX images. For this use case a rough estimate based on the image size (Which i can get from the sendFINDRequest() call before doing the move) mi...
by geke
Thu, 2017-08-10, 10:03
Forum: DCMTK - General
Topic: ProgressBar c-move
Replies: 3
Views: 3086

ProgressBar c-move

Hello, I have C-Move implementation which is based on the DcmSCU example: http://support.dcmtk.org/redmine/projects/dcmtk/wiki/Howto_DcmSCU and would like to add a progess bar for a single image. I know that i can get the number of images received via remaining sub ops, but that is not what i want -...