Search found 15 matches

by kpandrew
Thu, 2018-11-08, 17:53
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

You're right, I don't. Thanks for clearing it up!
by kpandrew
Wed, 2018-11-07, 21:33
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

Oh. Cool. I thought Pending meant it hadn't decided yet. Does Pending actually mean that it's confirmed that the study present on the called AE? That's actually all I'm looking for anyway. Thanks!
by kpandrew
Tue, 2018-11-06, 23:13
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

So I was wrong before. I am getting exactly the same result whether the study UID exists on the called AET or not. What am I doing wrong? Thanks again!
by kpandrew
Mon, 2018-11-05, 20:39
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

I tried a new, verified study UID and then took out one character to make it fail. This was my command line: for /f %i in (suid.txt) do findscu -v -S -aec ebp-da01FIR -k QueryRetrieveLevel=STUDY -k (0020,000d)="%i" 10.183.4.239 104 >> temp.txt Here's what I got: I: Requesting Association I...
by kpandrew
Mon, 2018-11-05, 20:04
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

Well, just for grins, let me double-check that the study I believe to exist really does exist. I think I checked that at the beginning, but one can never be too sure. :-)
by kpandrew
Mon, 2018-11-05, 19:41
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

I don't use any additional parameters. Did you also test against an SUID that exists and one that does not? What did your output look like?
by kpandrew
Mon, 2018-11-05, 19:10
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

Correct. Even if I don't redirect the input, the +sr appears to do nothing.
by kpandrew
Mon, 2018-11-05, 18:50
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

If I do that, I get no output whatsoever. Also, yielding the same output whether or not the study exists differs substantially from "working." :-)
by kpandrew
Mon, 2018-11-05, 18:11
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

Thanks for reminding me. I fixed it: P:\>for /f %i in (suid3.txt) do findscu -v -d -S -aec ebp-da01FIR -k QueryRetrieveLevel=STUDY -k (0020,000d)="%i" 10.183.4.239 104 >> temp.txt and now I get a 190-line response, but except for the two lines that echo back the SUID, all of the lines are ...
by kpandrew
Mon, 2018-11-05, 17:33
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

So I've changed the query to this: P:\>findscu -v -d -aec ebp-da01FIR -k QueryRetrieveLevel=STUDY -k (0020,000d)="2.16.80.1.114151.2.60.8.39875.4551.1414209" 10.183.4.239 104 1>>temp.txt and still I get the same result. No difference between querying for the study which exists and the one ...
by kpandrew
Wed, 2018-10-31, 20:39
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

I changed the command to: for /f %i in (suid3.txt) do findscu -v -d -S -aec ebp-da01FIR -k (0020,000d)="%i" 10.183.4.239 104 as you suggested. I believe the -S should indicate study level query, no? Is there a better way to specify it? The result appears to be the same: D: $dcmtk: findscu ...
by kpandrew
Fri, 2018-10-26, 17:21
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

Re: How to query using FINDSCU for a specific study UID

This is my command line: for /f %i in (suid3.txt) do findscu -v -d -S aec ebp-da01FIR -k (0020,000d)="%i" 10.183.4.239.104 suid3.txt contains two SUIDs, one which should exist and one which should not, one per line: 2.16.840.1.114151.2.60.8.39875.4551.1414209 2.16.80.1.114151.2.60.8.39875....
by kpandrew
Thu, 2018-10-25, 00:01
Forum: DCMTK - General
Topic: How to query using FINDSCU for a specific study UID
Replies: 26
Views: 11551

How to query using FINDSCU for a specific study UID

I would like to query a PACS system for a specific study uid. So far, I've only figured out a way to dump ALL the UIDs on the PACS system, which is extremely cumbersome. This is what I'm using to do that: findscu -S -aec ebp-da01FIR 10.183.4.239 104 -k QueryRetrieveLevel=STUDY -k (0020,000d) If I ha...