Hello everyone,
I've been working with the framework to do a number of different tasks. Today I was trying to add a Dicom Echo to one of the tools I was creating and ran into the following problem:
I used the VerificationScu.cs code from the Samples in the source code. The first time I ran the code it ran fine, but each subsequent request returns a Failed response, even though the log shows "Success status received in sending verification" I ran the sample application unchanged and ran into the same results, The first time I clicked "Verify" I received a "Verify result: Success", but the next time I clicked "Verify" I recieved "Verify result: Failed".
I'm copying the data from the log as the order of the messages is different in the first runthrough vs. the second run.
[First Run]
(7) 4/13/2009 5:22:15 PM (Info) Preparing to connect to AE MYSERVER_SCP on host 192.168.6.121 on port 104 for verification.
(14) 4/13/2009 5:22:15 PM (Info) Association Accepted when QuerySCU connected to remote AE MYSERVER_SCP
(14) 4/13/2009 5:22:16 PM (Info) Success status received in sending verification!
(7) 4/13/2009 5:22:16 PM (Info) Verify result: Success
(14) 4/13/2009 5:22:16 PM (Info) Association released to MYSERVER_SCP
[Second Run]
(7) 4/13/2009 5:22:31 PM (Info) Preparing to connect to AE MYSERVER_SCP on host 192.168.6.121 on port 104 for verification.
(7) 4/13/2009 5:22:31 PM (Info) Verify result: Failed
(15) 4/13/2009 5:22:31 PM (Info) Association Accepted when QuerySCU connected to remote AE MYSERVER_SCP
(15) 4/13/2009 5:22:31 PM (Info) Success status received in sending verification!
(15) 4/13/2009 5:22:31 PM (Info) Association released to MYSERVER_SCP
As you can see the failure happens before the association is accepted. Any thoughts would be appreciated