# HG changeset patch # User Alain Mazy # Date 1648626851 -7200 # Node ID 281a599f533812e3e049ee5f3f41140ba39a702e # Parent 723d4535252e1955075f6cebebfe587e7f740a48 fix diff -r 723d4535252e -r 281a599f5338 Plugins/WSI/Run.py --- a/Plugins/WSI/Run.py Wed Mar 30 09:35:35 2022 +0200 +++ b/Plugins/WSI/Run.py Wed Mar 30 09:54:11 2022 +0200 @@ -109,7 +109,7 @@ def CallDicomizer(suffix): CallCommand([ args.dicomizer, - '--orthanc=%s' % args.server, + '--orthanc=http://%s:%s' % (args.server, args.rest), '--username=%s' % args.username, '--password=%s' % args.password ] + suffix ) @@ -117,7 +117,7 @@ def CallDicomToTiff(suffix): CallCommand([ args.to_tiff, - '--orthanc=%s' % args.server, + '--orthanc=http://%s:%s' % (args.server, args.rest), '--username=%s' % args.username, '--password=%s' % args.password ] + suffix)