Logging is set in conquest.service, which I assume you use.
Were it will appear depends on your Linux flavour, you will have to google it.
Marcel
Logging is set in conquest.service, which I assume you use.
Were it will appear depends on your Linux flavour, you will have to google it.
Marcel
Hi,
you need to change the login for the conquest service to allow you access to your server. You do this from the control panel.
Marcel
Hi,
thanks for looking at this, I have done little work with Ladle on Linux. I will add you reports to the buglist, and fix them asap.
Marcel
What file?
Marcel
Hi,
conquest scripts can call external programs e.g. with the system call. I would try curl.
Marcel
Hi,
i think some system (or maybe a virus) tries to connect to conquest with non-dicom communication, and that crashes it. I have seen the same issue at my University. Can you leave it on highest debug log over the weekend when you do not expect activity?
Marcel
Hi,
It is the space you would like to have left in MB.
Marcel
Yes I think
ImportConverter1 = system filesorter.exe %VPatientID %VPatientName
Marcel
E.g.
importconverter0 = lua:if Association.ConnectedIP=='xx.xx.xx.xx' then script('reject') end
importconverter0 = lua:if Association.ConnectedIP=='xx.xx.xx.xx' and Association.Calling=='AEOFSYSTEM' then script('reject') end
I just heard that ConnectedIP is not always reliable though, but should be reasonable
Marcel
Hi,
MSSQL requires uses an ODBC connection. As long as that works and standard SQL is supported, I see no reason why they would not work. I have not tried them though.
Marcel
Hi,
Dgate should read ACRNemaMap when the server is started and the value is taken as is (including path) if there is a \ in there on windows or a / under Linux. Otherwise it is appended to the root dir. That is dgate(.exe) does that. Unfortunately the GUI does not respect the ACRNemaMap variable. So the server should work as you expected if you ignore the GUI page. I add this to the buglist.
Marcel
Hi,
Look at the file date. Then on windows search serverstatus.log or the relevant zip file.
On linux it would be in /var/log/journal/conquest.service.log
Marcel
Hi,
I am not sure, I never used Myrian. It probably is a regular DICOM storage provider, i.e. setup AE IP and port of Myrian in Conquest, and AE IP and port of Conquest in Myrian. Then you can query conquest and move images to Myrian's database from the Myrian software.
Marcel
This is the sample AE line:
#None none RemoteAE
eg
TESTAE TESTAE RemoteAE
Will block all accessesing AE (including the server itself) except TESTAE
To block all queries put # before any line you want blocked:
# PatientRootQuery 1.2.840.10008.5.1.4.1.2.1.1 sop
#PatientRootRetrieve 1.2.840.10008.5.1.4.1.2.1.2 sop
#PatientRootGet 1.2.840.10008.5.1.4.1.2.1.3 sop
#StudyRootQuery 1.2.840.10008.5.1.4.1.2.2.1 sop
#StudyRootRetrieve 1.2.840.10008.5.1.4.1.2.2.2 sop
#StudyRootGet 1.2.840.10008.5.1.4.1.2.2.3 sop
#PatientStudyOnlyQuery 1.2.840.10008.5.1.4.1.2.3.1 sop
#PatientStudyOnlyRetrieve 1.2.840.10008.5.1.4.1.2.3.2 sop
#PatientStudyOnlyGet 1.2.840.10008.5.1.4.1.2.3.3 sop
FindModalityWorkList 1.2.840.10008.5.1.4.31 sop
#PatientRootRetrieveNKI 1.2.826.0.1.3680043.2.135.1066.5.1.4.1.2.1.2 sop
#StudyRootRetrieveNKI 1.2.826.0.1.3680043.2.135.1066.5.1.4.1.2.2.2 sop
#PatientStudyOnlyRetrieveNKI 1.2.826.0.1.3680043.2.135.1066.5.1.4.1.2.3.2 sop
Marcel
Hi,
try edit the maklinux script and change -lmariadbclient into -lmysqlclient
Marcel
Hi,
Adding at least one AE title in dgatesop.lst will block all other ones. This may be what you need.
Or you can use e.g.
WorkListQueryConverter0 = lua:if Association.calling ~= 'AECT01' then script('reject') end
Marcel
Hi,
you need to fill in the worklist database from an external source, such as an HL7 file (example attached). The scanner queries this database.
Marcel
Note: If you can do SQL you can change column DEVICENAME in DICOMImages from e.g. MAG1 to MAG1.Archiving based on any query (such as on ImageDate) and then use dgate -am to move the data.
Hm, they are supposed to be.
Apparantly I forgot to update the servertask there. It lives in quite a few places.
dgate(64).exe and servertask are interchangable for sending commands but servertask starts much quicker because there is no server.
Marcel
Hi,
that file has no postgres driver, only sqlite. You need to make sure you have the lua5.1 library to link against.
This command is sometimes needed to provide the lua5.1 library:
sudo ln -s /usr/lib/x86_64-linux-gnu/liblua5.1.so.0 /usr/lib/x86_64-linux-gnu/liblua5.1.so
Marcel