L_DicomSendCEchoRequest

#include "ltdic.h"

L_INT EXT_FUNCTION L_DicomSendCEchoRequest(hNet, nPresentationID, nMessageID, pszClass)

HDICOMNET hNet;

/* a DICOM Network handle */

L_UCHAR nPresentationID;

/* presentation ID */

L_UINT16 nMessageID;

/* message ID */

L_CHAR * pszClass;

/* class type */

Sends a C-ECHO-REQ message to a peer member of a connection. This function is available in the Medical Suite Toolkit.

Parameter

Description

hNet

A DICOM Network handle to the peer member of the connection.

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.

Returns

0

SUCCESS

>0

An error occurred. Refer to Return Codes.

Comments

Calling this function generates a call to RECEIVECECHOREQUESTCALLBACK on the SCP. The SCP should respond by calling L_DicomSendCEchoResponse which will generate a call to RECEIVECECHORESPONSECALLBACK.

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

See Also

Functions:

L_DicomSendCEchoResponse, RECEIVECECHOREQUESTCALLBACK, RECEIVECECHORESPONSECALLBACK

Topics:

Working with DICOM Network Connections

Example

HWND hList; /* handle to list box */
HDICOMNET hNet;

L_VOID TestSendCEcho(L_VOID)
{
   L_CHAR    szUID[200];
   L_CHAR    szMsg[200];
   L_UCHAR   nID;
   HDICOMPDU hPDU;

   /* send an Echo Request Command to the server */

   lstrcpy(szUID, UID_VERIFICATION_CLASS);

   hPDU = L_DicomGetAssociate(hNet);

   nID = L_DicomFindAbstract(hPDU, szUID);
   if(nID == 0)
   {
      wsprintf(szMsg, "Abstract Syntax %s Not Supported by Association!", szUID);
      MessageBox(NULL, szMsg, "Error", MB_OK);
   }
   else
   {
      /* now, use the high-level method to send the command set */
      L_DicomSendCEchoRequest(hNet, nID, 1, szUID);
   }
}