Hi,
I'm running the dcm4chee image server in my own machine. His AETitle is "DCM4CHEE", IP is "127.0.0.1" (localhost) and port is "11112". It works properly through dcm4che toolkit utilities and web interface.
I'm trying to query this server with the desktop application I'm developing using ClearCanvas DICOM Toolkit. The code (based on ClearCanvas source code) is:
FindScuBase findScu = new PatientRootFindScu();
PatientQueryIod patientQueryIod = new PatientQueryIod();
patientQueryIod.SetCommonTags();
IList results = findScu.Find("TEST", "DCM4CHEE", "127.0.0.1", 11112, patientQueryIod);
But this code throws an exception in:
- method: Connect()
- class: ScuBase
Does somebody know what it can be?
Thanks!