Search found 9 matches

by yiorgos
Fri, 2017-06-02, 16:27
Forum: DCMTK - General
Topic: DCMTK changes that help subclassing
Replies: 2
Views: 3165

Re: DCMTK changes that help subclassing

These are the changes we have done: diff --git a/dcmqrdb/include/dcmtk/dcmqrdb/dcmqrcbf.h b/dcmqrdb/include/dcmtk/dcmqrdb/dcmqrcbf.h index cf420c935..d1fc74fba 100644 --- a/dcmqrdb/include/dcmtk/dcmqrdb/dcmqrcbf.h +++ b/dcmqrdb/include/dcmtk/dcmqrdb/dcmqrcbf.h @@ -75,7 +75,7 @@ public: DcmDataset **...
by yiorgos
Fri, 2017-06-02, 16:26
Forum: DCMTK - General
Topic: DCMTK changes that help subclassing
Replies: 2
Views: 3165

DCMTK changes that help subclassing

Hello, My name is Yiorgos and I work as a developer at Advantis Medical Imaging. We have developed a tool based on dcmtk that works as a DICOM to DICOMweb proxy, which we plan to release as free and open source software. The implementation has been based on a modified version of dcmqrscp. Now our to...
by yiorgos
Tue, 2017-03-14, 14:12
Forum: DCMTK - General
Topic: Adding SSL support to another tool (i.e. dcmqrscp)
Replies: 0
Views: 62487

Adding SSL support to another tool (i.e. dcmqrscp)

Hi all! I'm trying to add SSL/TLS layer to dcmqrscp. I have read the code on how storescp uses SSL, actually by creating an DcmTLsTransportLayer. I have actually copy/pasted this procedure in dcmqrscp but I have some problems. First of all i test using storescu tool. storescu localhost 5678 -d -aec ...
by yiorgos
Tue, 2016-11-15, 11:40
Forum: DCMTK - Installation
Topic: Dcmtk's build system and directory structure
Replies: 11
Views: 17095

Re: Dcmtk's build system and directory structure

A workaround would be to delete (remove) the executable binary and call "make". Alternatively, you could call "make clean all" in the affected directory, e.g. "(cd dcmnet/apps/ && make clean all)". PS: I don't hink that this is a "bug" as Jan assumed....
by yiorgos
Tue, 2016-11-15, 11:27
Forum: DCMTK - Installation
Topic: Dcmtk's build system and directory structure
Replies: 11
Views: 17095

Re: Dcmtk's build system and directory structure

The "Makefile.dep" files in the "apps" subdirectory do not contain any reference to the library files (e.g. "libdcmnet.a"). In other words, if the "libdcmnet.a" changes, the command line tools in "dcmnet/apps" are not re-linked. Weeeeell that's the ...
by yiorgos
Tue, 2016-11-15, 11:12
Forum: DCMTK - Installation
Topic: Dcmtk's build system and directory structure
Replies: 11
Views: 17095

Re: Dcmtk's build system and directory structure

J. Riesmeier wrote:If you use GNU Autoconf (aka "./configure"): there are no dependencies in the "apps/Makefile.dep" file for the respective libraries.
I'm not so sure if I have understand your point of view :oops:
by yiorgos
Mon, 2016-11-14, 17:08
Forum: DCMTK - Installation
Topic: Dcmtk's build system and directory structure
Replies: 11
Views: 17095

Re: Dcmtk's build system and directory structure

Jan Schlamelcher wrote:This seems like a bug as it normally shouldn't happen. Are you perhaps using a network drive where the server might use different timestamps than the client etc.?
Unfortunately No! The whole building process is being held on my pc.
by yiorgos
Mon, 2016-11-14, 16:55
Forum: DCMTK - Installation
Topic: Dcmtk's build system and directory structure
Replies: 11
Views: 17095

Re: Dcmtk's build system and directory structure

In order not opening a new thread a post a second question here. Which make (or generally build command) should I use in order to recompile a dcmtk's static libraries. The use case is that I make changes to file "dcmnet/libsrc/dimstore.cc" which when compiled is linked with "libdcmnet...
by yiorgos
Mon, 2016-11-14, 11:38
Forum: DCMTK - Installation
Topic: Dcmtk's build system and directory structure
Replies: 11
Views: 17095

Dcmtk's build system and directory structure

Ηi, I want to implement a new dcmtk's module, It would be nice to use the directory structure and the build system of dcmtk in order to automate the procedure. So is anyone available in giving a short tutorial on that? The module I'm trying to implement will allow dcmtk to optionally send dicom mess...