Hello,
I just moved from SDK 1.3 to 1.5 and notice some of the DICOM toolkit functions (MWL SCU, CStore SCU, etc) now fail with a message saying "No plugins could be found."
Is there a requirement to define plugins now? I'd like to keep using the toolkit for lower-level DICOM stuff and not have to worry about plugins, etc.
Here is the code which returns this error:
ModalityWorklistScu scu = new ModalityWorklistScu();
ModalityWorklistIod iod = new ModalityWorklistIod();
iod.SetCommonTags();
iod.RequestedProcedureModule.StudyDate = DateTime.Today;
IList results = scu.GetWorkList("myscu", "myscp", "mwlhost", 104, iod);
Exception on the GetWorkList() line. "No plugins could be found."
Thanks,
Nick