LDicomNet::SendCGetResponse

#include "ltdic.h"

L_INT LDicomNet::SendCGetResponse(nPresentationID, nMessageID, pszClass, nStatus, nRemaining, nCompleted, nFailed, nWarning, pDS)

L_UCHAR nPresentationID;

presentation ID

L_UINT16 nMessageID;

message ID

L_TCHAR * pszClass;

class type

L_UINT16 nStatus;

status of the request

L_UINT16 nRemaining;

number of remaining instances

L_UINT16 nCompleted;

number of instances completed

L_UINT16 nFailed;

number of instances that failed

L_UINT16 nWarning;

number of warnings

LDicomDS *pDS;

data set

Sends a C-GET-RSP message to a peer member of a connection. This function is available in the PACS Imaging Toolkit.

Parameter

Description

nPresentationID

Presentation ID. The presentation ID provides information about both the class type of the data and the transfer syntax to use when transferring the data.

nMessageID

Message ID. Each message sent by a member of a connection should have a unique ID. Since a member of a connection may send several messages, this ID allows that member to identify when a specific request has been completed.

pszClass

Class affected by the request. This will be an SOP Class or an SOP MetaClass.

nStatus

The status of the original request. For a list of possible values, refer to Status Constants.

nRemaining

Number of remaining instances to search.

nCompleted

Number of instances searched.

nFailed

Number of instances that failed the search.

nWarning

Number of instances in which warnings occurred.

pDS

Pointer to the data set that contains the information retrieved as a result of the call to LDicomNet::SendCGetRequest.

Returns

0

SUCCESS

>0

An error occurred. Refer to Return Codes.

Comments

LDicomNet::SendCGetResponse is sent by the SCP in response to an LDicomNet::SendCGetRequest call placed by an SCU. This generates a call to LDicomNet::OnReceiveCGetResponse on the SCU.

As an example, suppose an SCU requests an SCP to search all CT class instances for specific data. If the SCP has three CT class instances present, it must search all three instances for the required data. During the search, LDicomNet::SendCGetResponse may be called multiple times. The table below gives examples of possible parameter values for the calls made to LDicomNet::SendCGetResponse during the search:

Point within search

nStatus

nRemaining

nCompleted

nFailed

nWarning

Finished 1st instance

COMMAND_STATUS_PENDING

2

1

0

0

Finished 2nd instance

COMMAND_STATUS_PENDING

1

2

1

1

Finished the search

COMMAND_STATUS_SUCCESS

0

3

1

1

After the first instance is searched, there are 2 remaining instances to search (nRemaining), there is 1 instance that has been completed (nCompleted), no instances have failed the search (nFailed), and there are no warnings(nWarning).

After the second instance is searched, there is 1 remaining instance to search (nRemaining), there are 2 instances that have been completed (nCompleted), 1 instance has failed the search (nFailed), and there is one warning (nWarning).

After the last instance has been searched, there are 0 remaining instances to search (nRemaining), there are 3 instances that have been completed (nCompleted), 1 instance has failed the search (nFailed), and there is one warning (nWarning).

The instance that failed may have failed because one data element you were searching for was not in the instance. For example, you may have included "Patient Birth Date" in the elements to search for and one instance did not include "Patient Birth Date".

Information about the warning may be found in the data set that is returned.

Required DLLs and Libraries

LTDIC

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

Platforms

Win32, x64

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS DICOM C++ Class Library Help