C-MOVE operating locally only #1036
Closed
MatheusVieira2001
started this conversation in
General
Replies: 1 comment 1 reply
-
Don't You don't need to do this: ae, assoc = prepare_association(destination_info)
if not assoc or not assoc.is_established:
yield 0xA801, None
return
total_sent = send_files(datasets, assoc)
assoc.release()
yield (0x0000, None) At this stage you should just be iterating through and yielding the matching instances as Have you seen the Move SCP example? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm implementing a C-MOVE operation using the pynetdicom library. However, the process only works correctly in a local environment. When an external medical device attempts to retrieve the images, the operation fails.
The C-FIND operation is working perfectly. The issue occurs exclusively with C-MOVE, and only when the destination is not the local machine itself.
my handle_c_move
Locally it works perfectly as I mentioned only when I move to any other IP the image is not received, test carried out by radiant/sant free/orthanc
Configuration - SCP
Is there something I'm forgetting to make it work from anywhere, not just on the server itself?
pydicom: 3.0.1 pynetdicom: 3.0.3
Beta Was this translation helpful? Give feedback.
All reactions