Search found 112 matches

by Mitmal
Tue, 2011-11-22, 00:56
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

So here, I have a problem when I use:

Code: Select all

result = scuN.sendMOVERequest (chaired, OFmonAet, & req, & moveResponses)
OFmonAet is my AET.

Here is the error message:

Code: Select all

Passed in year DIMS Caller illegal association
Do you understand why?
by Mitmal
Tue, 2011-11-22, 00:47
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

ok, here I finally found a solution. I import the latest snapshot of dcmnet.lib IN ADDITION to the original version. (in the properties of my project of course) (Adding an N at the end of the name.) I just been obliged to comment out the function: virtual void closeAssociation (const DcmCloseAssocia...
by Mitmal
Mon, 2011-11-21, 23:48
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

I finally replaced by MOVEResponses OFList <RetrieveResponse*>, but now all the virtual methods in scuN.h (N means that it is the last version of the snapshot) are problematic. For example: 1>XXX.obj : error LNK2019: unresolved external symbol "public: __thiscall DcmSCUN::DcmSCUN(void)" (?...
by Mitmal
Mon, 2011-11-21, 23:14
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

I am looking MOVEResponses in the directory of the "new" DCMTK (last snapshot) And I find nothing more than scu.cc So until now I thought the statement was in MOVEResponses scu.cc, but not at all ... There is just a comment that talks about MOVEResponses ... So I'm lost, where the MOVEResp...
by Mitmal
Mon, 2011-11-21, 22:33
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

In fact, if I understand correctly, the old uses an object FINDResponses scu, scu the new does not use this object, but uses MOVEResponses ... So the example (DcmSCU example program) is what ????? Because I'm lost ... I try to make a mix of the two classes but I can not. Can anyone help me? I would ...
by Mitmal
Fri, 2011-11-18, 15:34
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

Nobody can help me?
No solution?
I really need to retrieve images from the network
by Mitmal
Wed, 2011-11-16, 18:32
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

And when I look in the directory DCMTK where it says the word FINDResponses there is no response .... strange ....
by Mitmal
Wed, 2011-11-16, 15:48
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

Now that I changed my version of DCMTK with the latest snapshot http://dicom.offis.de/download/dcmtk/snapshot/ I have a new error: 1> Application.cpp (431): error C2065: 'FINDResponses': undeclared identifier And line 431 there is just : FINDResponses findResponses; But I have not changed anything o...
by Mitmal
Mon, 2011-11-14, 13:38
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

Perfect, it works fine.
I would like now specify a series in my study is in perfusion, is it possible?
May be looking at the number of images ...
by Mitmal
Thu, 2011-11-10, 15:15
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

I tested with this code but it does not work :

Code: Select all

req.putAndInsertOFStringArray(DCM_StudyDate, "2003/10/01-2003/10/05");
by Mitmal
Thu, 2011-11-10, 13:48
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

Is it possible to add one, or two, Date in my request ??
( For example, if I search all the examen after 1986/01/28 but before 1986/12/31 )
by Mitmal
Wed, 2011-11-09, 14:54
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

Arf ... Do you have an example for me?
by Mitmal
Wed, 2011-11-09, 12:18
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

It should be possible to make image retrieval with my current version (3.6.0)
I guess it was possible before, right?
by Mitmal
Wed, 2011-11-09, 11:53
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

hum hum thank you Michael but it does not help me ^ ^ But that's OK, here is my code with which I can get my info: req.putAndInsertOFStringArray(DCM_QueryRetrieveLevel, "STUDY"); //req.putAndInsertOFStringArray(DCM_QueryRetrieveLevel, "SERIES"); //CONSTRUCTION DE LA REQUETE //AVE...
by Mitmal
Tue, 2011-11-08, 18:00
Forum: DCMTK - General
Topic: PACS connection
Replies: 64
Views: 6866380

I tested with: req.putAndInsertOFStringArray(DCM_QueryRetrieveLevel, "STUDY"); req.putAndInsertOFStringArray(DCM_StudyInstanceUID, ""); req.putAndInsertOFStringArray(DCM_PatientName, "DUMONT"); req.putAndInsertOFStringArray(DCM_Modality, "CT"); req.putAndInser...