Skip to content

message.getCalledAET

Use when: You want to read values from the modified message during mapping. If you need the original incoming message, use source.getCalledAET.

Signature: message.getCalledAET()

Returns: String aet - the called AET from the DICOM Association

Get the called Application Entity Title (AET) from the DICOM Association.

Note

This only applies to DICOM Listener channels. A channel's Local AE Title must be '*' to allow different called AET values.

Parameters

None

Example

// Given a DICOM message received by a DICOM Listener (message)
// Get the AE title the sending system addressed (the called AET)
var calledAet = message.getCalledAET();