movescu can not retrieve image file

All other questions regarding DCMTK

Moderator: Moderator Team

Message
Author
ligangs
Posts: 8
Joined: Thu, 2009-11-19, 07:45

movescu can not retrieve image file

#1 Post by ligangs »

Dear all
I follow the sample in viewtopic.php?t=1333&highlight=movescu
Damien said he had used dcmqrscp + findscu + movescu running good, i just follow his 2 samples(begin and end) ALL same as him(only my computer name is MyDesk), after run movescu no image retrieved.

the reture is:
C:\QR>movescu --aetitle MOVESCU --call COMMON --move SCP --port 1000 --key 0008,0052=PATIENT --key 0010,0010="Z*" MyDesk 104 -v
Requesting Association
Association Accepted (Max Send PDV: 16372)
================================
Sending query
Move SCU RQ: MsgID 1
Request:

# Dicom-Data-Set
# Used TransferSyntax: UnknownTransferSyntax
(0008,0052) CS [PATIENT] # 8, 1 QueryRetrieveLe
vel
(0010,0010) PN [Z*] # 2, 1 PatientsName
C-Move RSP: MsgID: 1 [Status=Success]
AffectedSOPClassUID: =MOVEPatientRootQueryRetrieveInformationModel
Data Set: Not Present
NumberOfCompletedSubOperations: 0
NumberOfFailedSubOperations: 0
NumberOfWarningSubOperations: 0
Releasing Association
i found "# Used TransferSyntax: UnknownTransferSyntax", is that wrong?

I use windows xp sp3, patched the findscu & movescu from FAQ,
but i test wlmscpfs + findscu, they are running good.

I really dont know what is wrong. :cry:

Nils

Jörg Riesmeier
ICSMED DICOM Services
ICSMED DICOM Services
Posts: 2217
Joined: Fri, 2004-10-29, 21:38
Location: Oldenburg, Germany

#2 Post by Jörg Riesmeier »

Your C-MOVE command is not correct, you have to provide the unique key on the retrieve level with a valid value, e.g. PatientID=01234. Further details can be found in part 4 of the DICOM standard.

ligangs
Posts: 8
Joined: Thu, 2009-11-19, 07:45

#3 Post by ligangs »

Thank you!

I read the part 4 you tell me. And I try use PatientID to test, and alse try --study . but they all incorrect. c-find also not work.

I totally follow the sample in viewtopic.php?t=1333&highlight=movescu
maybe I lost some steps?

this is my movescu test:
C:\QR>movescu --aetitle MOVESCU --call COMMON --move SCP --port 1000 --patient --key 0008,0052=PATIENT --key 0010,0020="70201" MyDesk 104 -v

aviraldwivedi
Posts: 6
Joined: Thu, 2018-11-01, 11:57

Re: movescu can not retrieve image file

#4 Post by aviraldwivedi »

Hi Fellows

I am trying to query/retrieve from PACS server (www.dicomserver.co.uk) using DCMTK tools. Find query is working perfectly but retrieve not working i am getting following error every time


E:\DCMTK_Test\dcmtk-3.6.3-win64-dynamic\bin>movescu -v -S -aec ACME_STORE -aet ACME1 --port 11112 -od E:/tmp/ www.dicomserver.co.uk 11112 -k QueryRetrieveLevel=STUDY -k StudyInstanceUID=1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19 -k PatientID=rasul123
I: Requesting Association
I: Association Accepted (Max Send PDV: 65524)
I: Sending Move Request (MsgID 1)
I: Request Identifiers:
I:
I: # Dicom-Data-Set
I: # Used TransferSyntax: Little Endian Explicit
I: (0008,0052) CS [STUDY] # 6, 1 QueryRetrieveLevel
I: (0010,0020) LO [rasul123] # 8, 1 PatientID
I: (0020,000d) UI [1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19] # 56, 1 StudyInstanceUID
I:
W: Move response with error status (Failed: UnableToProcess)
I: Received Final Move Response (Failed: UnableToProcess)
I: Releasing Association


I dont find any problem with my move query
movescu -v -S -aec ACME_STORE -aet ACME1 --port 11112 -od E:/tmp/ www.dicomserver.co.uk 11112 -k QueryRetrieveLevel=STUDY -k StudyInstanceUID=1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19 -k PatientID=rasul123

Can anyone tell me why its not working at all??

Michael Onken
DCMTK Developer
Posts: 2048
Joined: Fri, 2004-11-05, 13:47
Location: Oldenburg, Germany
Contact:

Re: movescu can not retrieve image file

#5 Post by Michael Onken »

Hi,

you have to tell the server where to send the images by providing a "Move Destination AE Title". This is done with option -aem in movescu, so try "-aem ACME1" since this is how you call yourself (Option -aet).

Normally, a C-MOVE server needs to figure out via configuration which IP address and port that AE Title you provided is but dicomserver.co.uk is configured to use the IP address of the connecting party and the port itself is listening on when connecting back to you, if you provide your own AE Title as a target (what you didnt do so far since the default move destination (i..e no -aem provided) is "MOVESCU" not "ACME1". It's also described on dicomserver.co.uk's homepage.

Best,
Michael

Marco Eichelberg
OFFIS DICOM Team
OFFIS DICOM Team
Posts: 1437
Joined: Tue, 2004-11-02, 17:22
Location: Oldenburg, Germany
Contact:

Re: movescu can not retrieve image file

#6 Post by Marco Eichelberg »

Also note: the retrieve request is not well-formed. A study level retrieve request in the Study Root Q/R model must not contain a Patient ID.

aviraldwivedi
Posts: 6
Joined: Thu, 2018-11-01, 11:57

Re: movescu can not retrieve image file

#7 Post by aviraldwivedi »

Hey Michael

I just tried it. let me know if its the correct query?

Also note: the retrieve request is not well-formed. A study level retrieve request in the Study Root Q/R model must not contain a Patient ID.

E:\dcmtk-3.6.3-win64-dynamic\dcmtk-3.6.3-win64-dynamic\bin>movescu -d -v -S -aec ACME_STORE -aem ACME1 -aet ACME1 --port 11112 -od E:/tmp/ www.dicomserver.co.uk 11112 -k QueryRetrieveLevel=STUDY -k StudyInstanceUID=1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19 -k PatientID=rasul123
I: Requesting Association
I: Association Accepted (Max Send PDV: 65524)
I: Sending Move Request (MsgID 1)
I: Request Identifiers:
I:
I: # Dicom-Data-Set
I: # Used TransferSyntax: Little Endian Explicit
I: (0008,0052) CS [STUDY] # 6, 1 QueryRetrieveLevel
I: (0010,0020) LO [rasul123] # 8, 1 PatientID
I: (0020,000d) UI [1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19] # 56, 1 StudyInstanceUID
I:
W: Move response with error status (Failed: UnableToProcess)
I: Received Final Move Response (Failed: UnableToProcess)
I: Releasing Association

Still the result is same after adding -aem

@Marco
I tried removing patientID too it didnt work either.

Still thanks for help.

Michael Onken
DCMTK Developer
Posts: 2048
Joined: Fri, 2004-11-05, 13:47
Location: Oldenburg, Germany
Contact:

Re: movescu can not retrieve image file

#8 Post by Michael Onken »

dicomserver.co.uk also has a log. Make sure you are not behind a firewall (though the error message should be different then).

aviraldwivedi
Posts: 6
Joined: Thu, 2018-11-01, 11:57

Re: movescu can not retrieve image file

#9 Post by aviraldwivedi »

Hi Michael

just checked sever logs.
i don't much understand them, can you see any problem.


12:01:43 (94102) IN Q/R request received
12:01:43 (-) ===RemoteIP is 202.54.73.227 ===
12:01:43 (-) ===CallingAET is ACME1 ===
12:01:43 (-) ===Destination is ACME1 ===
12:01:43 (-) Select DISTINCT SOPClassUID from ImageRetrievalView WHERE StudyUID = '1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19'
12:01:43 (94103) OUT About to create socket
12:01:43 (94103) OUT Connecting to 202.54.73.227, Port : 11112
12:01:52 (-) IN New TCP Connection received
12:01:52 (94104) IN TCP connection from 167.183.216.11, Port : 50344 to local port : 11112
12:01:52 (94104) IN Association request
12:01:52 (94104) IN Initiating AET=AZPRTG
12:01:52 (94104) IN Called AET=APZT
12:01:52 (94104) IN Application Context=1.2.840.10008.3.1.1.1 (DICOM30)
12:01:52 (94104) IN Presentation Context 1
12:01:52 (94104) IN Abst Syntax=1.2.840.10008.5.1.4.31 (ModalityWorklistQRFIND)
12:01:52 (94104) IN Transfer Syntax=1.2.840.10008.1.2.1 (ExplicitVRLittleEndian)
12:01:52 (94104) IN Transfer Syntax=1.2.840.10008.1.2 (ImplicitVRLittleEndian)
12:01:52 (94104) IN User information
12:01:52 (94104) IN Max length= 16384
12:01:52 (94104) IN Imp UID= 1.3.6.1.4.1.30071.8
12:01:52 (94104) IN Imp Name= fo-dicom 2.0.2
12:01:52 (94104) OUT Association acceptance
12:01:52 (94104) OUT Initiating AET=AZPRTG
12:01:52 (94104) OUT Called AET=APZT
12:01:52 (94104) OUT Application Context=1.2.840.10008.3.1.1.1 (DICOM30)
12:01:52 (94104) OUT Presentation Context 1
12:01:52 (94104) OUT Accepted
12:01:52 (94104) OUT Transfer Syntax=1.2.840.10008.1.2.1 (ExplicitVRLittleEndian)
12:01:52 (94104) OUT User information
12:01:52 (94104) OUT Max length= 65536
12:01:52 (94104) OUT Imp UID= 1.2.826.0.1.3680043.1.2.100.8.40.37.0
12:01:52 (94104) OUT Imp Name= DicomObjects.NET
12:01:52 (94104) IN (0000,0000) UL : 70 (46H)
12:01:52 (94104) IN (0000,0002) UI : 1.2.840.10008.5.1.4.31 (ModalityWorklistQRFIND)
12:01:52 (94104) IN (0000,0100) US : 32 (20H)
12:01:52 (94104) IN (0000,0110) US : 1 (1H)
12:01:52 (94104) IN (0000,0700) US : 0 (0H)
12:01:52 (94104) IN (0000,0800) US : 514 (202H)
12:01:52 (94104) IN (0008,0020) DA : {null}
12:01:52 (94104) IN (0008,0030) TM : {null}
12:01:52 (94104) IN (0008,0050) SH : {null}
12:01:52 (94104) IN (0008,0080) LO : {null}
12:01:52 (94104) IN (0008,0090) PN : {null}
12:01:52 (94104) IN (0008,1030) LO : {null}
12:01:52 (94104) IN (0008,1032) SQ : Sequence Start
12:01:52 (94104) IN (0008,1032) SQ : Sequence End - 0 Items
12:01:52 (94104) IN (0008,1080) LO : {null}
12:01:52 (94104) IN (0008,1110) SQ : Sequence Start
12:01:52 (94104) IN (0008,1110) SQ : Sequence End - 0 Items
12:01:52 (94104) IN (0010,0010) PN : {null}
12:01:52 (94104) IN (0010,0020) LO : {null}
12:01:52 (94104) IN (0010,0021) LO : {null}
12:01:52 (94104) IN (0010,0030) DA : {null}
12:01:52 (94104) IN (0010,0040) CS : {null}
12:01:52 (94104) IN (0010,1000) LO : {null}
12:01:52 (94104) IN (0010,1030) DS : {null}
12:01:52 (94104) IN (0010,2000) LO : {null}
12:01:52 (94104) IN (0010,2110) LO : {null}
12:01:52 (94104) IN (0010,21C0) US : {null}
12:01:52 (94104) IN (0010,4000) LT : {null}
12:01:52 (94104) IN (0020,000D) UI : {null}
12:01:52 (94104) IN (0020,0010) SH : {null}
12:01:52 (94104) IN (0032,1032) PN : {null}
12:01:52 (94104) IN (0032,1060) LO : {null}
12:01:52 (94104) IN (0032,1064) SQ : Sequence Start
12:01:52 (94104) IN (0032,1064) SQ : Sequence End - 0 Items
12:01:52 (94104) IN (0038,0010) LO : {null}
12:01:52 (94104) IN (0038,0050) LO : {null}
12:01:52 (94104) IN (0038,0300) LO : {null}
12:01:52 (94104) IN (0038,0500) LO : {null}
12:01:52 (94104) IN (0040,0100) SQ : Sequence Start
12:01:52 (94104) IN >(0008,0060) CS : CT


I traced this using my IP.

Michael Onken
DCMTK Developer
Posts: 2048
Joined: Fri, 2004-11-05, 13:47
Location: Oldenburg, Germany
Contact:

Re: movescu can not retrieve image file

#10 Post by Michael Onken »

The log shows a worklist request, not one that could be made by movescu.

aviraldwivedi
Posts: 6
Joined: Thu, 2018-11-01, 11:57

Re: movescu can not retrieve image file

#11 Post by aviraldwivedi »

I tried to query again and collected logs again.


13:08:23 (-) IN New TCP Connection received
13:08:23 (94470) IN TCP connection from 202.54.73.227, Port : 51366 to local port : 11112
13:08:23 (94470) IN Association request
13:08:23 (94470) IN Initiating AET=ACME1
13:08:23 (94470) IN Called AET=ACME_STORE
13:08:23 (94470) IN Application Context=1.2.840.10008.3.1.1.1 (DICOM30)
13:08:23 (94470) IN Presentation Context 1
13:08:23 (94470) IN Abst Syntax=1.2.840.10008.5.1.4.1.2.2.1 (StudyRootQR_FIND)
13:08:23 (94470) IN Transfer Syntax=1.2.840.10008.1.2.1 (ExplicitVRLittleEndian)
13:08:23 (94470) IN Transfer Syntax=1.2.840.10008.1.2.2 (ExplicitVRBigEndian)
13:08:23 (94470) IN Transfer Syntax=1.2.840.10008.1.2 (ImplicitVRLittleEndian)
13:08:23 (94470) IN Presentation Context 3
13:08:23 (94470) IN Abst Syntax=1.2.840.10008.5.1.4.1.2.2.2 (StudyRootQR_MOVE)
13:08:23 (94470) IN Transfer Syntax=1.2.840.10008.1.2.1 (ExplicitVRLittleEndian)
13:08:23 (94470) IN Transfer Syntax=1.2.840.10008.1.2.2 (ExplicitVRBigEndian)
13:08:23 (94470) IN Transfer Syntax=1.2.840.10008.1.2 (ImplicitVRLittleEndian)
13:08:23 (94470) IN User information
13:08:23 (94470) IN Max length= 16384
13:08:23 (94470) IN Imp UID= 1.2.276.0.7230010.3.0.3.6.3
13:08:23 (94470) IN Imp Name= OFFIS_DCMTK_363
13:08:23 (94470) OUT Association acceptance
13:08:23 (94470) OUT Initiating AET=ACME1
13:08:23 (94470) OUT Called AET=ACME_STORE
13:08:23 (94470) OUT Application Context=1.2.840.10008.3.1.1.1 (DICOM30)
13:08:23 (94470) OUT Presentation Context 1
13:08:23 (94470) OUT Accepted
13:08:23 (94470) OUT Transfer Syntax=1.2.840.10008.1.2.1 (ExplicitVRLittleEndian)
13:08:23 (94470) OUT Presentation Context 3
13:08:23 (94470) OUT Accepted
13:08:23 (94470) OUT Transfer Syntax=1.2.840.10008.1.2.1 (ExplicitVRLittleEndian)
13:08:23 (94470) OUT User information
13:08:23 (94470) OUT Max length= 65536
13:08:23 (94470) OUT Imp UID= 1.2.826.0.1.3680043.1.2.100.8.40.37.0
13:08:23 (94470) OUT Imp Name= DicomObjects.NET
13:08:23 (94470) IN PCID = 3
13:08:23 (94470) IN (0000,0000) UL : 90 (5AH)
13:08:23 (94470) IN (0000,0002) UI : 1.2.840.10008.5.1.4.1.2.2.2 (StudyRootQR_MOVE)
13:08:23 (94470) IN (0000,0100) US : 33 (21H)
13:08:23 (94470) IN (0000,0110) US : 1 (1H)
13:08:23 (94470) IN (0000,0600) AE : ACME1
13:08:23 (94470) IN (0000,0700) US : 0 (0H)
13:08:23 (94470) IN (0000,0800) US : 1 (1H)
13:08:23 (94470) IN (0008,0052) CS : STUDY
13:08:23 (94470) IN (0020,000D) UI : 1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19
13:08:23 (94470) IN Command = C_MOVE
13:08:23 (94470) IN SOP Class = 1.2.840.10008.5.1.4.1.2.2.2
13:08:23 (94470) IN Q/R request received
13:08:23 (-) ===RemoteIP is 202.54.73.227 ===
13:08:23 (-) ===CallingAET is ACME1 ===
13:08:23 (-) ===Destination is ACME1 ===
13:08:23 (-) Select DISTINCT SOPClassUID from ImageRetrievalView WHERE StudyUID = '1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19'
13:08:23 (94471) OUT About to create socket
13:08:23 (94471) OUT Connecting to 202.54.73.227, Port : 11112

Michael really thanks for helping me out with this problem. I am still getting same error no improvements. Let me know if it is a firewall issue?

Michael Onken
DCMTK Developer
Posts: 2048
Joined: Fri, 2004-11-05, 13:47
Location: Oldenburg, Germany
Contact:

Re: movescu can not retrieve image file

#12 Post by Michael Onken »

Hi,

so 202.54.73.227 is your IP, right?

Then, if the log is complete, the server does not seem to be able to connect to you. The most obvious reason is that you are behind a firewall, or in a NAT network.

Best,
Michael

aviraldwivedi
Posts: 6
Joined: Thu, 2018-11-01, 11:57

Re: movescu can not retrieve image file

#13 Post by aviraldwivedi »

Hey Thanks Michael

for all your help. Can you confirm that following query is correct and working on your end?
E:\dcmtk-3.6.3-win64-dynamic\dcmtk-3.6.3-win64-dynamic\bin>movescu -d -v -S -aec ACME_STORE -aem ACME1 -aet ACME1 --port 11112 -od E:/tmp/ www.dicomserver.co.uk 11112 -k QueryRetrieveLevel=STUDY -k StudyInstanceUID=1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19 -k PatientID=rasul123

because we're not able to test it with any computer or a different network setup too.

Michael Onken
DCMTK Developer
Posts: 2048
Joined: Fri, 2004-11-05, 13:47
Location: Oldenburg, Germany
Contact:

Re: movescu can not retrieve image file

#14 Post by Michael Onken »

Hi,

the call works for me. I used another study (i used StudyInstanceUID=1.2.826.0.1.3680043.11.123 and atientID=PAT018 instead of your values. Note there is no need to include PatientID at all).

Using the Study you posted the call works but the server sends 0 images; there are also no images on the server for that patient (which is normally not possible but probably they have not been cleaning up the server correctly as part of their weekly? schedule). You can find out with findscu like this:

Code: Select all

findscu -S -aec ACME_STORE -aet ACME1  -k QueryRetrieveLevel=STUDY -k StudyInstanceUID=1.2.826.0.1.3680043.6.10857.19884.20170614134629.308.19 www.dicomserver.co.uk 11112 -k NumberOfStudyRelatedInstances -k PatientID
Best,
Micahel

aviraldwivedi
Posts: 6
Joined: Thu, 2018-11-01, 11:57

Re: movescu can not retrieve image file

#15 Post by aviraldwivedi »

Hi Michael

I am following this tutorial to setup a pacs server and query it using DCMQRSCP.exe.
It's failing with errors i have disabled the windows firewall and antivirus.

https://support.dcmtk.org/redmine/proje ... gWithDCMTK

here are the steps i am following:

Step 1:
I added a dcmqrscp.cfg (config file) with following code.

***********************************************************************
NetworkTCPPort = 11112
MaxPDUSize = 16384
MaxAssociations = 16

HostTable BEGIN
acme1 = (ACME1, localhost, 1234)
acme2 = (ACME2, localhost, 5678)
acmeCTcompany = acme1, acme2
HostTable END

VendorTable BEGIN
"Acme CT Company" = acmeCTcompany
VendorTable END

AETable BEGIN
ACME_STORE /OD RW (100, 1024mb) acmeCTcompany
AETable END

******************************************************************************

Step2:
Started the dcmqrscp.exe with following command:

******************************************************************************
dcmqrscp --debug --config dcmqrscp.cfg
******************************************************************************
Step3:

Testing the connection with ecoscu.exe as follows:
******************************************************************************
echoscu -d localhost 11112 -aec ACME_STORE -aet ACME1
******************************************************************************


Following is the output on Client....

*****************************************************************************************************
Request Parameters:
D: ====================== BEGIN A-ASSOCIATE-RQ =====================
D: Our Implementation Class UID: 1.2.276.0.7230010.3.0.3.6.4
D: Our Implementation Version Name: OFFIS_DCMTK_364
D: Their Implementation Class UID:
D: Their Implementation Version Name:
D: Application Context Name: 1.2.840.10008.3.1.1.1
D: Calling Application Name: ACME1
D: Called Application Name: ACME_STORE
D: Responding Application Name: ACME_STORE
D: Our Max PDU Receive Size: 16384
D: Their Max PDU Receive Size: 0
D: Presentation Contexts:
D: Context ID: 1 (Proposed)
D: Abstract Syntax: =VerificationSOPClass
D: Proposed SCP/SCU Role: Default
D: Proposed Transfer Syntax(es):
D: =LittleEndianImplicit
D: Requested Extended Negotiation: none
D: Accepted Extended Negotiation: none
D: Requested User Identity Negotiation: none
D: User Identity Negotiation Response: none
D: ======================= END A-ASSOCIATE-RQ ======================
I: Requesting Association
D: setting network send timeout to 60 seconds
D: setting network receive timeout to 60 seconds
D: Constructing Associate RQ PDU
F: Association Rejected:
F: Result: Rejected Permanent, Source: Service User
F: Reason: Called AE Title Not Recognized

*****************************************************************************************************

Output on the DCMQRSCP server:
*****************************************************************************************************

Association Received: AVIRAL
D: setting network send timeout to 60 seconds
D: setting network receive timeout to 60 seconds
D: PDU Type: Associate Request, PDU Length: 205 + 6 bytes PDU header
D: 01 00 00 00 00 cd 00 01 00 00 41 43 4d 45 5f 53
D: 54 4f 52 45 20 20 20 20 20 20 41 43 4d 45 31 20
D: 20 20 20 20 20 20 20 20 20 20 00 00 00 00 00 00
D: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
D: 00 00 00 00 00 00 00 00 00 00 10 00 00 15 31 2e
D: 32 2e 38 34 30 2e 31 30 30 30 38 2e 33 2e 31 2e
D: 31 2e 31 20 00 00 2e 01 00 ff 00 30 00 00 11 31
D: 2e 32 2e 38 34 30 2e 31 30 30 30 38 2e 31 2e 31
D: 40 00 00 11 31 2e 32 2e 38 34 30 2e 31 30 30 30
D: 38 2e 31 2e 32 50 00 00 3a 51 00 00 04 00 00 40
D: 00 52 00 00 1b 31 2e 32 2e 32 37 36 2e 30 2e 37
D: 32 33 30 30 31 30 2e 33 2e 30 2e 33 2e 36 2e 34
D: 55 00 00 0f 4f 46 46 49 53 5f 44 43 4d 54 4b 5f
D: 33 36 34
D: Parsing an A-ASSOCIATE PDU
I: Association Received (AVIRAL:ACME1 -> ACME_STORE)
D: Parameters:
D: ====================== BEGIN A-ASSOCIATE-RQ =====================
D: Our Implementation Class UID: 1.2.276.0.7230010.3.0.3.6.4
D: Our Implementation Version Name: OFFIS_DCMTK_364
D: Their Implementation Class UID: 1.2.276.0.7230010.3.0.3.6.4
D: Their Implementation Version Name: OFFIS_DCMTK_364
D: Application Context Name: 1.2.840.10008.3.1.1.1
D: Calling Application Name: ACME1
D: Called Application Name: ACME_STORE
D: Responding Application Name:
D: Our Max PDU Receive Size: 16384
D: Their Max PDU Receive Size: 16384
D: Presentation Contexts:
D: Context ID: 1 (Proposed)
D: Abstract Syntax: =VerificationSOPClass
D: Proposed SCP/SCU Role: Default
D: Proposed Transfer Syntax(es):
D: =LittleEndianImplicit
D: Requested Extended Negotiation: none
D: Accepted Extended Negotiation: none
D: Requested User Identity Negotiation: none
D: User Identity Negotiation Response: none
D: ======================= END A-ASSOCIATE-RQ ======================
D: Peer AVIRAL:ACME1 is not not permitted to access ACME_STORE (see configuration file)

*****************************************************************************************************

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot], Google [Bot], Semrush [Bot] and 1 guest