Search found 11 matches

by jb1989
Thu, 2013-01-10, 12:28
Forum: DCMTK - General
Topic: Reading dicom file from data
Replies: 1
Views: 2486

Reading dicom file from data

Hi everyone, Is there a way to read a dicom file when you don't have the file saved on your harddrive but only in the memory of a device? I downloaded it with IOS code and now i got the DICOM file in a property of the file type NSData, i prefer a solutions that does not create an actual file first b...
by jb1989
Thu, 2012-11-22, 14:45
Forum: DCMTK - General
Topic: dcmtk DcmScu timeout
Replies: 1
Views: 2618

dcmtk DcmScu timeout

Hello everyone, I got a problem with the timeout of DcmScu (programmming in IOS) i try to set it with the following code scu->setDIMSEBlockingMode(DIMSE_NONBLOCKING); scu->setDIMSETimeout(3); scu->setACSETimeout(3); But it doesn't have any effect on scu->negotiateAssociation () Whenever i try to set...
by jb1989
Tue, 2012-11-13, 13:24
Forum: DCMTK - General
Topic: dcmtk ssl?
Replies: 3
Views: 3992

Re: dcmtk ssl?

i'm creating a ios version for an android application that supports sslv3
by jb1989
Fri, 2012-11-09, 22:09
Forum: DCMTK - General
Topic: dcmtk ssl?
Replies: 3
Views: 3992

dcmtk ssl?

Hello,

I have compiled dcmtk for the ios.
And while trying to create a secured connection i can only find TLS connection.

Is it also possible to create a SSLv3 connection with DCMTK?

With kind regards,

jb1989
by jb1989
Wed, 2012-11-07, 10:56
Forum: DCMTK - General
Topic: dcmTLSSCU class not found
Replies: 1
Views: 2540

Re: dcmTLSSCU class not found

Nevermind i found the problem,

I used the old osconfig.h in this osconfig.h openssl was not enabled
by jb1989
Tue, 2012-11-06, 16:30
Forum: DCMTK - General
Topic: dcmTLSSCU class not found
Replies: 1
Views: 2540

dcmTLSSCU class not found

Hello all i have compiled the dcmtk library for IOS. (with openssl) And i want to use the dcmTlSSCU but even after importing the tlsscu.h I still get the error Unknown type name 'DcmTLSSCU'; did you mean 'DcmSCU'? (I got also imported scu.h, because i made a unsecure echo function before trying to m...
by jb1989
Tue, 2012-11-06, 12:48
Forum: DCMTK - General
Topic: ios secured echo?
Replies: 1
Views: 2432

Re: ios secured echo?

I think i need to use TLSScu but for some unknown reason ios does not recognize DcmTLSSCU when i try to use it.
i did import tlsscu.h but it stil does not recognize DcmTLSSCU

does someone know this problem?
by jb1989
Mon, 2012-11-05, 15:50
Forum: DCMTK - General
Topic: ios secured echo?
Replies: 1
Views: 2432

ios secured echo?

Hi all im currently developing for IOS And I'm doing a echo with the following code DcmSCU *scu = new DcmSCU(); scu->setAETitle([_aetitle.text UTF8String]); scu->setPeerHostName([_pacsip.text UTF8String]); scu->setPeerPort(atoi([_pacsport.text UTF8String])); scu->setPeerAETitle([_pacsaetitle.text UT...
by jb1989
Tue, 2012-05-15, 15:01
Forum: DCMTK - Installation
Topic: DCMTK for iOS
Replies: 27
Views: 54490

Re: DCMTK for iOS

Okay what I have done is this: I have installed the library in /usr/local/include which worked fine after I used the command I posted earlier twice. After this I still couldn't access the library from Xcode so I decided to skip Mac OS X implementation and go straight to my final goal: iOS. I have ac...
by jb1989
Mon, 2012-05-14, 16:42
Forum: DCMTK - Installation
Topic: DCMTK for iOS
Replies: 27
Views: 54490

Re: DCMTK for iOS

Hello, First of all, thank you for your answer. I realize that this may be the problem and by the install target I assume you mean in the DCMTK Xcode project, generated by CMake. I tried running the target and it gives me the following error: /Applications/CMake\ 2.8-8.app/Contents/bin/cmake -DBUILD...
by jb1989
Mon, 2012-05-14, 09:52
Forum: DCMTK - Installation
Topic: DCMTK for iOS
Replies: 27
Views: 54490

Re: DCMTK for iOS

Hello everyone, I'm a software engineering student currently trying to get the DCMTK library to work on iOS. I have compiled the library with some succes on a Mac OS X environment and I'm currently trying to get dcmdata to read some data from a dicom file. Basically this is a first test to get the h...