<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://gvwiki.greenvulcano.com/gvwiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=M.sutera</id>
	<title>GreenVulcano Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://gvwiki.greenvulcano.com/gvwiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=M.sutera"/>
	<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Special:Contributions/M.sutera"/>
	<updated>2026-04-13T08:45:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.7</generator>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4434</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4434"/>
		<updated>2015-07-15T15:07:07Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* Storage of DICOM files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - CT Image Storage - 1.2.840.10008.5.1.4.1.1.2&lt;br /&gt;
        - Enhanced CT Image Storage - 1.2.840.10008.5.1.4.1.1.2.1&lt;br /&gt;
        - MR Image Storage - 1.2.840.10008.5.1.4.1.1.4&lt;br /&gt;
        - Enhanced MR Image Storage - 1.2.840.10008.5.1.4.1.1.4.1&lt;br /&gt;
        - Secondary Capture Image Storage - 1.2.840.10008.5.1.4.1.1.7&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || The Unique Identifier of instance. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || optional || The path of a DICOM File. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_FILE_PATH&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Storage of DICOM files==&lt;br /&gt;
DICOM files are stored in the file system. The directory of local storage is configured by the [[DICOM Listener]] in '''GVAdapters'''.&lt;br /&gt;
&lt;br /&gt;
The system creates a folder named with the value of PatientID which we want to store DICOM images. In this folder the image is saved in DICOM format (.dcm) and a transformed version divided into two files : a file in XML format (.xml) for image metadata and a file in binary format (.data) containing the pixel data (the image itself).&lt;br /&gt;
Image reconstruction is possible by keeping track in the xml file the name of binary file associated.&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
The following xml code shows an exemple of element in an xml file containing the name of binary file associated:&lt;br /&gt;
        &amp;lt;entry&amp;gt;&lt;br /&gt;
         &amp;lt;OtherWordString&amp;gt;&lt;br /&gt;
           &amp;lt;elementTag&amp;gt;&lt;br /&gt;
             &amp;lt;fElement&amp;gt;16&amp;lt;/fElement&amp;gt;&lt;br /&gt;
             &amp;lt;fGroup&amp;gt;32736&amp;lt;/fGroup&amp;gt;&lt;br /&gt;
             &amp;lt;fName&amp;gt;Pixel Data&amp;lt;/fName&amp;gt;&lt;br /&gt;
             &amp;lt;fValueRepresentation&amp;gt;&lt;br /&gt;
               &amp;lt; code&amp;gt;UN&amp;lt; /code&amp;gt;&lt;br /&gt;
               &amp;lt;name&amp;gt;Unknown&amp;lt;/name&amp;gt;&lt;br /&gt;
             &amp;lt;/fValueRepresentation&amp;gt;&lt;br /&gt;
           &amp;lt;/elementTag&amp;gt;&lt;br /&gt;
           &amp;lt;fValueLength&amp;gt;204800&amp;lt;/fValueLength&amp;gt;&lt;br /&gt;
           &amp;lt;fValueMultiplicity&amp;gt;1&amp;lt;/fValueMultiplicity&amp;gt;&lt;br /&gt;
           &amp;lt;ImageData&amp;gt;1.3.46.670589.5.2.10.2156913941.892665339.718742.data&amp;lt;/ImageData&amp;gt;&lt;br /&gt;
         &amp;lt;/OtherWordString&amp;gt;&lt;br /&gt;
        &amp;lt;/entry&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example of DICOM file stored: [[File:Example dicom file.zip]]&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4433</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4433"/>
		<updated>2015-07-15T15:03:55Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - CT Image Storage - 1.2.840.10008.5.1.4.1.1.2&lt;br /&gt;
        - Enhanced CT Image Storage - 1.2.840.10008.5.1.4.1.1.2.1&lt;br /&gt;
        - MR Image Storage - 1.2.840.10008.5.1.4.1.1.4&lt;br /&gt;
        - Enhanced MR Image Storage - 1.2.840.10008.5.1.4.1.1.4.1&lt;br /&gt;
        - Secondary Capture Image Storage - 1.2.840.10008.5.1.4.1.1.7&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || The Unique Identifier of instance. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || optional || The path of a DICOM File. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_FILE_PATH&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Storage of DICOM files==&lt;br /&gt;
DICOM files are stored in the file system. The directory of local storage is configured by the [[DICOM Listener]] in '''GVAdapters'''.&lt;br /&gt;
The system creates a folder named with the value of PatientID which we want to store DICOM images. In this folder the image is saved in DICOM format (.dcm) and a transformed version divided into two files : a file in XML format (.xml) for image metadata and a file in binary format (.data) containing the pixel data (the image itself).&lt;br /&gt;
Image reconstruction is possible by keeping track in the xml file the name of binary file associated.&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
The following xml code shows an exemple of element in an xml file containing the name of binary file associated:&lt;br /&gt;
        &amp;lt;entry&amp;gt;&lt;br /&gt;
         &amp;lt;OtherWordString&amp;gt;&lt;br /&gt;
           &amp;lt;elementTag&amp;gt;&lt;br /&gt;
             &amp;lt;fElement&amp;gt;16&amp;lt;/fElement&amp;gt;&lt;br /&gt;
             &amp;lt;fGroup&amp;gt;32736&amp;lt;/fGroup&amp;gt;&lt;br /&gt;
             &amp;lt;fName&amp;gt;Pixel Data&amp;lt;/fName&amp;gt;&lt;br /&gt;
             &amp;lt;fValueRepresentation&amp;gt;&lt;br /&gt;
               &amp;lt; code&amp;gt;UN&amp;lt; /code&amp;gt;&lt;br /&gt;
               &amp;lt;name&amp;gt;Unknown&amp;lt;/name&amp;gt;&lt;br /&gt;
             &amp;lt;/fValueRepresentation&amp;gt;&lt;br /&gt;
           &amp;lt;/elementTag&amp;gt;&lt;br /&gt;
           &amp;lt;fValueLength&amp;gt;204800&amp;lt;/fValueLength&amp;gt;&lt;br /&gt;
           &amp;lt;fValueMultiplicity&amp;gt;1&amp;lt;/fValueMultiplicity&amp;gt;&lt;br /&gt;
           &amp;lt;ImageData&amp;gt;1.3.46.670589.5.2.10.2156913941.892665339.718742.data&amp;lt;/ImageData&amp;gt;&lt;br /&gt;
         &amp;lt;/OtherWordString&amp;gt;&lt;br /&gt;
        &amp;lt;/entry&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example of DICOM file stored: [[File:Example dicom file.zip]]&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=File:Example_dicom_file.zip&amp;diff=4432</id>
		<title>File:Example dicom file.zip</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=File:Example_dicom_file.zip&amp;diff=4432"/>
		<updated>2015-07-15T15:03:37Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: uploaded a new version of &amp;amp;quot;File:Example dicom file.zip&amp;amp;quot;: Example of DICOM file. 
Example of XML file with data file which represent the DICOM file.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Example of DICOM file. &lt;br /&gt;
Example of XML file with data file which represent the DICOM file.&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=File:Example_dicom_file.zip&amp;diff=4431</id>
		<title>File:Example dicom file.zip</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=File:Example_dicom_file.zip&amp;diff=4431"/>
		<updated>2015-07-15T14:16:00Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: Example of DICOM file. 
Example of XML file with data file which represent the DICOM file.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Example of DICOM file. &lt;br /&gt;
Example of XML file with data file which represent the DICOM file.&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4430</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4430"/>
		<updated>2015-07-15T13:22:08Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - CT Image Storage - 1.2.840.10008.5.1.4.1.1.2&lt;br /&gt;
        - Enhanced CT Image Storage - 1.2.840.10008.5.1.4.1.1.2.1&lt;br /&gt;
        - MR Image Storage - 1.2.840.10008.5.1.4.1.1.4&lt;br /&gt;
        - Enhanced MR Image Storage - 1.2.840.10008.5.1.4.1.1.4.1&lt;br /&gt;
        - Secondary Capture Image Storage - 1.2.840.10008.5.1.4.1.1.7&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || The Unique Identifier of instance. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || optional || The path of a DICOM File. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_FILE_PATH&amp;quot;.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Storage of DICOM files==&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4429</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4429"/>
		<updated>2015-07-15T10:36:10Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
&lt;br /&gt;
The Outbound DICOM Connector allows association verification and research,acquisition and storage of DICOM objects on PACS systems in the network.&lt;br /&gt;
&lt;br /&gt;
The Inbound DICOM Connector allows to choose which services accept , provides answers about the status of the association between the system and the system questioner and retrieval of images between them.&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[Association]] to connect to external PACS.&lt;br /&gt;
The DICOM services implemented by the outbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Find]]&lt;br /&gt;
* [[Move]]&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[DICOM Listener]] to accept requests from various external PACS.&lt;br /&gt;
The DICOM services implemented by the inbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* Find&lt;br /&gt;
* Move&lt;br /&gt;
* [[Store]]&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4428</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4428"/>
		<updated>2015-07-15T10:35:24Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* Inbound DICOM Connector */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
&lt;br /&gt;
The Outbound DICOM Connector allows association verification and research,acquisition and storage of DICOM objects on PACS systems in the network.&lt;br /&gt;
&lt;br /&gt;
The Inbound DICOM Connector allows to choose which services accept , provides answers about the status of the association between the system and the system questioner and retrieval of images between them.&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[Association]] to connect to external PACS.&lt;br /&gt;
The DICOM services implemented by the outbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Find]]&lt;br /&gt;
* [[Move]]&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[DICOM Listener]] to accept requests from various external PACS.&lt;br /&gt;
The DICOM services implemented by the inbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* Find&lt;br /&gt;
* Move&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
==Data Trasformation==&lt;br /&gt;
The {{GVESB}} DICOM connector enables data trasformation:&lt;br /&gt;
* from DICOM to XML&lt;br /&gt;
* from XML to DICOM&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4427</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4427"/>
		<updated>2015-07-15T10:28:33Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
&lt;br /&gt;
The Outbound DICOM Connector allows association verification and research,acquisition and storage of DICOM objects on PACS systems in the network.&lt;br /&gt;
&lt;br /&gt;
The Inbound DICOM Connector allows to choose which services accept , provides answers about the status of the association between the system and the system questioner and retrieval of images between them.&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[Association]] to connect to external PACS.&lt;br /&gt;
The DICOM services implemented by the outbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Find]]&lt;br /&gt;
* [[Move]]&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[DICOM Listener]] to accept requests from various external PACS.&lt;br /&gt;
The DICOM services implemented by the inbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
==Data Trasformation==&lt;br /&gt;
The {{GVESB}} DICOM connector enables data trasformation:&lt;br /&gt;
* from DICOM to XML&lt;br /&gt;
* from XML to DICOM&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM_Listener&amp;diff=4426</id>
		<title>DICOM Listener</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM_Listener&amp;diff=4426"/>
		<updated>2015-07-15T10:06:32Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
The DICOM Listener is able to accept the demands posed by external PACS and redirects them to the appropriate service able to handle the request.&lt;br /&gt;
&lt;br /&gt;
==DICOM Listener Configuration==&lt;br /&gt;
The following table shows the element's attributes. It is configured in '''GVAdapters''' in the Local element. &lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| applicationEntity || required || Local Application Entity name.&lt;br /&gt;
|-&lt;br /&gt;
| listenerPort || required || Local Association Acceptor port.&lt;br /&gt;
|-&lt;br /&gt;
| dicomStoreDirectory || required || DICOM local file store.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM_Listener&amp;diff=4425</id>
		<title>DICOM Listener</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM_Listener&amp;diff=4425"/>
		<updated>2015-07-15T10:05:41Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
The dicom listener is able to accept the demands posed by external PACS and redirects them to the appropriate service able to handle the request.&lt;br /&gt;
&lt;br /&gt;
==DICOM Listener Configuration==&lt;br /&gt;
The following table shows the element's attributes. It is configured in '''GVAdapters''' in the Local element. &lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| applicationEntity || required || Local Application Entity name.&lt;br /&gt;
|-&lt;br /&gt;
| listenerPort || required || Local Association Acceptor port.&lt;br /&gt;
|-&lt;br /&gt;
| dicomStoreDirectory || required || DICOM local file store.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM_Listener&amp;diff=4424</id>
		<title>DICOM Listener</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM_Listener&amp;diff=4424"/>
		<updated>2015-07-15T10:05:23Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: Created page with &amp;quot;==Description== The dicom listener is able to accept the demands posed by external PACS and redirects them to the appropriate service able to handle the request.  ==DICOM Listene...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
The dicom listener is able to accept the demands posed by external PACS and redirects them to the appropriate service able to handle the request.&lt;br /&gt;
&lt;br /&gt;
==DICOM Listener Configuration==&lt;br /&gt;
The following table shows the element's attributes. It is configured in '''GVAdapters'''in the Local element. &lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| applicationEntity || required || Local Application Entity name.&lt;br /&gt;
|-&lt;br /&gt;
| listenerPort || required || Local Association Acceptor port.&lt;br /&gt;
|-&lt;br /&gt;
| dicomStoreDirectory || required || DICOM local file store.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4423</id>
		<title>Association</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4423"/>
		<updated>2015-07-15T09:54:46Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* Association Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
The association contains all the information to make a direct connection with an external PACS. &lt;br /&gt;
==Association Configuration==&lt;br /&gt;
The following table shows the element's attributes. It is configured in '''GVAdapters''' in the Association element.&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Association name. &lt;br /&gt;
|-&lt;br /&gt;
| host || required || Association host.&lt;br /&gt;
|-&lt;br /&gt;
| port || required || Association port.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4422</id>
		<title>Association</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4422"/>
		<updated>2015-07-15T09:53:50Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
The association contains all the information to make a direct connection with an external PACS. &lt;br /&gt;
==Association Configuration==&lt;br /&gt;
The following table shows the element's attributes. It is configured in '''GVAdapters''' on element Association.&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Association name. &lt;br /&gt;
|-&lt;br /&gt;
| host || required || Association host.&lt;br /&gt;
|-&lt;br /&gt;
| port || required || Association port.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4421</id>
		<title>Association</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4421"/>
		<updated>2015-07-15T09:49:45Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
The association contains all the information to make a direct connection with an external PACS. &lt;br /&gt;
==Association Configuration==&lt;br /&gt;
The following table shows the element's attributes. It is configured in '''GVAdapters'''.&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Association name. &lt;br /&gt;
|-&lt;br /&gt;
| host || required || Association host.&lt;br /&gt;
|-&lt;br /&gt;
| port || required || Association port.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4420</id>
		<title>Association</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4420"/>
		<updated>2015-07-15T09:40:21Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
The association contains all the information to make a direct connection with an external PACS. It is configured in '''GVAdapters'''.&lt;br /&gt;
&lt;br /&gt;
==Association Configuration==&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Association name. &lt;br /&gt;
|-&lt;br /&gt;
| host || required || Association host.&lt;br /&gt;
|-&lt;br /&gt;
| port || required || Association port.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4419</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4419"/>
		<updated>2015-07-15T09:37:48Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* Inbound DICOM Connector */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
&lt;br /&gt;
The Outbound DICOM Connector allows association verification and research,acquisition and storage of DICOM objects on PACS systems in the network.&lt;br /&gt;
&lt;br /&gt;
The Inbound DICOM Connector allows to choose which services accept , provides answers about the status of the association between the system and the system questioner and retrieval of images between them.&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[Association]] to connect to external PACS.&lt;br /&gt;
The DICOM services implemented by the outbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Find]]&lt;br /&gt;
* [[Move]]&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[DICOM Listener]] to accept requests from various external PACS.&lt;br /&gt;
The DICOM services implemented by the inbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Store]]&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4418</id>
		<title>Association</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Association&amp;diff=4418"/>
		<updated>2015-07-15T09:27:41Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: Created page with &amp;quot;==Description== The association contains all the information to make a direct connection with an external PACS. It is configured in '''GVAdapters'''.  =={{GVESB}} Configuration==...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
The association contains all the information to make a direct connection with an external PACS. It is configured in '''GVAdapters'''.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Association name. &lt;br /&gt;
|-&lt;br /&gt;
| host || required || Association host.&lt;br /&gt;
|-&lt;br /&gt;
| port || required || Association port.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4417</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4417"/>
		<updated>2015-07-15T09:13:33Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
&lt;br /&gt;
The Outbound DICOM Connector allows association verification and research,acquisition and storage of DICOM objects on PACS systems in the network.&lt;br /&gt;
&lt;br /&gt;
The Inbound DICOM Connector allows to choose which services accept , provides answers about the status of the association between the system and the system questioner and retrieval of images between them.&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
It is necessary to set up one or more [[Association]] to connect to external PACS.&lt;br /&gt;
The DICOM services implemented by the outbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Find]]&lt;br /&gt;
* [[Move]]&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;br /&gt;
The DICOM services implemented by the inbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Store]]&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4416</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4416"/>
		<updated>2015-07-15T08:58:58Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Find service establishes an association between the client that invoked it and the provider to which the call is intended; the service requires the provider to make a match with all specified keys in the identifier of request; the provider generates a response Find for each match and displays all key fields and attributes known required. When the process is completed response is generated and sent a reply Find with a state of success ( Success). Refusal or failure to reply indicates that the provider is unable to process the request.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomFindCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || The Information Entity level. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_QUERY_LEVEL&amp;quot;. &lt;br /&gt;
    Admitted values: &lt;br /&gt;
         - PATIENT &lt;br /&gt;
         - STUDY &lt;br /&gt;
         - SERIES &lt;br /&gt;
         - INSTANCE&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional || The ID of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_ID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional || The Name of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_NAME&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientSex || optional || The Sex of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_SEX&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - Patient Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.1.1&lt;br /&gt;
        - Study Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.2.1&lt;br /&gt;
        - Modality Worklist Information Model - FIND 1.2.840.10008.5.1.4.31&lt;br /&gt;
        - Patient/Study Only Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.3.1&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || The Unique Identifier of instance. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional || The Unique Identifier of the study. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_STUDY_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional || The Unique Identifier of the series. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SERIES_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopClassUID || optional || This parameter may be included in the response/confirmation. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_AFFECTED_SOP_CLASS_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopInstanceUID || optional || This parameter specifies the SOP Instance on which the action is to be performed. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_AFFECTED_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| modalityStudy || optional || Filter using supplied single value and return studies which contain one or more series with that modality. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_MODALITY_STUDY&amp;quot;.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4415</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4415"/>
		<updated>2015-07-15T08:58:37Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - CT Image Storage - 1.2.840.10008.5.1.4.1.1.2&lt;br /&gt;
        - Enhanced CT Image Storage - 1.2.840.10008.5.1.4.1.1.2.1&lt;br /&gt;
        - MR Image Storage - 1.2.840.10008.5.1.4.1.1.4&lt;br /&gt;
        - Enhanced MR Image Storage - 1.2.840.10008.5.1.4.1.1.4.1&lt;br /&gt;
        - Secondary Capture Image Storage - 1.2.840.10008.5.1.4.1.1.7&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || The Unique Identifier of instance. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || optional || The path of a DICOM File. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_FILE_PATH&amp;quot;.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4414</id>
		<title>Move</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4414"/>
		<updated>2015-07-15T08:56:46Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Move service is the operation for the transfer of a DICOM object. The service establishes an association between the client that invoked it and the provider to which the call is intended; the service provides unique key values ​​to identify the object to be transferred; the provider generates the sub-operations [[Store]] for each identified object to be transferred; when the number of sub- operations [[Store]] reaches zero the provider generate and send a state response of success ( Success). The sub-operations [[Store]] occur on a different association than that of the Move .&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-move-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomMoveCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || The Information Entity level. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_QUERY_LEVEL&amp;quot;. &lt;br /&gt;
     Admitted values: &lt;br /&gt;
         - PATIENT &lt;br /&gt;
         - STUDY &lt;br /&gt;
         - SERIES &lt;br /&gt;
         - INSTANCE&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional || The ID of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_ID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional || The Name of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_NAME&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - Patient Root Query/Retrieve Information Model - MOVE 1.2.840.10008.5.1.4.1.2.1.2&lt;br /&gt;
        - Study Root Query/Retrieve Information Model - MOVE 1.2.840.10008.5.1.4.1.2.2.2&lt;br /&gt;
        - Patient/Study Only Query/Retrieve Information Model - MOVE 1.2.840.10008.5.1.4.1.2.3.2&lt;br /&gt;
|-&lt;br /&gt;
| sopClassUID || optional || The Service-Object Pair (SOP) Unique Identifier. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional || The Unique Identifier of the study. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_STUDY_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional || The Unique Identifier of the series. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SERIES_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4413</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4413"/>
		<updated>2015-07-15T08:49:10Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* {{GVESB}} Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Find service establishes an association between the client that invoked it and the provider to which the call is intended; the service requires the provider to make a match with all specified keys in the identifier of request; the provider generates a response Find for each match and displays all key fields and attributes known required. When the process is completed response is generated and sent a reply Find with a state of success ( Success). Refusal or failure to reply indicates that the provider is unable to process the request.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomFindCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || The Information Entity level. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_QUERY_LEVEL&amp;quot;. &lt;br /&gt;
    Admitted values: &lt;br /&gt;
         - PATIENT &lt;br /&gt;
         - STUDY &lt;br /&gt;
         - SERIES &lt;br /&gt;
         - INSTANCE&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional || The ID of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_ID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional || The Name of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_NAME&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientSex || optional || The Sex of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_SEX&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - Patient Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.1.1&lt;br /&gt;
        - Study Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.2.1&lt;br /&gt;
        - Modality Worklist Information Model - FIND 1.2.840.10008.5.1.4.31&lt;br /&gt;
        - Patient/Study Only Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.3.1&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || The Unique Identifier of Instance. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional || The Unique Identifier of the study. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_STUDY_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional || The Unique Identifier of the series. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SERIES_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopClassUID || optional || This parameter may be included in the response/confirmation. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_AFFECTED_SOP_CLASS_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopInstanceUID || optional || This parameter specifies the SOP Instance on which the action is to be performed. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_AFFECTED_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| modalityStudy || optional || Filter using supplied single value and return studies which contain one or more series with that modality. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_MODALITY_STUDY&amp;quot;.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4412</id>
		<title>Move</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4412"/>
		<updated>2015-07-14T14:41:44Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Move service is the operation for the transfer of a DICOM object. The service establishes an association between the client that invoked it and the provider to which the call is intended; the service provides unique key values ​​to identify the object to be transferred; the provider generates the sub-operations [[Store]] for each identified object to be transferred; when the number of sub- operations [[Store]] reaches zero the provider generate and send a state response of success ( Success). The sub-operations [[Store]] occur on a different association than that of the Move .&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-move-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomMoveCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || The Information Entity level. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_QUERY_LEVEL&amp;quot;. &lt;br /&gt;
     Admitted values: &lt;br /&gt;
         - PATIENT &lt;br /&gt;
         - STUDY &lt;br /&gt;
         - SERIES &lt;br /&gt;
         - INSTANCE&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional || The ID of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_ID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional || The Name of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_NAME&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - Patient Root Query/Retrieve Information Model - MOVE 1.2.840.10008.5.1.4.1.2.1.2&lt;br /&gt;
        - Study Root Query/Retrieve Information Model - MOVE 1.2.840.10008.5.1.4.1.2.2.2&lt;br /&gt;
        - Patient/Study Only Query/Retrieve Information Model - MOVE 1.2.840.10008.5.1.4.1.2.3.2&lt;br /&gt;
|-&lt;br /&gt;
| sopClassUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_STUDY_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SERIES_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4411</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4411"/>
		<updated>2015-07-14T14:21:14Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - CT Image Storage - 1.2.840.10008.5.1.4.1.1.2&lt;br /&gt;
        - Enhanced CT Image Storage - 1.2.840.10008.5.1.4.1.1.2.1&lt;br /&gt;
        - MR Image Storage - 1.2.840.10008.5.1.4.1.1.4&lt;br /&gt;
        - Enhanced MR Image Storage - 1.2.840.10008.5.1.4.1.1.4.1&lt;br /&gt;
        - Secondary Capture Image Storage - 1.2.840.10008.5.1.4.1.1.7&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || optional || The path of a DICOM File. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_FILE_PATH&amp;quot;.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4410</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4410"/>
		<updated>2015-07-14T14:18:50Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Find service establishes an association between the client that invoked it and the provider to which the call is intended; the service requires the provider to make a match with all specified keys in the identifier of request; the provider generates a response Find for each match and displays all key fields and attributes known required. When the process is completed response is generated and sent a reply Find with a state of success ( Success). Refusal or failure to reply indicates that the provider is unable to process the request.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomFindCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || The Information Entity level. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_QUERY_LEVEL&amp;quot;. &lt;br /&gt;
    Admitted values: &lt;br /&gt;
         - PATIENT &lt;br /&gt;
         - STUDY &lt;br /&gt;
         - SERIES &lt;br /&gt;
         - INSTANCE&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional || The ID of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_ID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional || The Name of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_NAME&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientSex || optional || The Sex of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_SEX&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - Patient Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.1.1&lt;br /&gt;
        - Study Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.2.1&lt;br /&gt;
        - Modality Worklist Information Model - FIND 1.2.840.10008.5.1.4.31&lt;br /&gt;
        - Patient/Study Only Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.3.1&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_STUDY_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SERIES_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopClassUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_AFFECTED_SOP_CLASS_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopInstanceUID || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_AFFECTED_SOP_INSTANCE_UID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| modalityStudy || optional || Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_MODALITY_STUDY&amp;quot;.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4409</id>
		<title>Move</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4409"/>
		<updated>2015-07-14T14:10:01Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Move service is the operation for the transfer of a DICOM object. The service establishes an association between the client that invoked it and the provider to which the call is intended; the service provides unique key values ​​to identify the object to be transferred; the provider generates the sub-operations [[Store]] for each identified object to be transferred; when the number of sub- operations [[Store]] reaches zero the provider generate and send a state response of success ( Success). The sub-operations [[Store]] occur on a different association than that of the Move .&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-move-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomMoveCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || The Information Entity level. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_QUERY_LEVEL&amp;quot;. &lt;br /&gt;
     Admitted values: &lt;br /&gt;
         - PATIENT &lt;br /&gt;
         - STUDY &lt;br /&gt;
         - SERIES &lt;br /&gt;
         - INSTANCE&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional || The ID of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_ID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional || The Name of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_NAME&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - Patient Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.1.1&lt;br /&gt;
        - Study Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.2.1&lt;br /&gt;
        - Modality Worklist Information Model - FIND 1.2.840.10008.5.1.4.31&lt;br /&gt;
        - Patient/Study Only Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.3.1&lt;br /&gt;
|-&lt;br /&gt;
| sopClassUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4408</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4408"/>
		<updated>2015-07-14T14:09:57Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - Patient Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.1.1&lt;br /&gt;
        - Study Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.2.1&lt;br /&gt;
        - Modality Worklist Information Model - FIND 1.2.840.10008.5.1.4.31&lt;br /&gt;
        - Patient/Study Only Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.3.1&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4407</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4407"/>
		<updated>2015-07-14T14:08:51Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4406</id>
		<title>Move</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4406"/>
		<updated>2015-07-14T14:08:47Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Move service is the operation for the transfer of a DICOM object. The service establishes an association between the client that invoked it and the provider to which the call is intended; the service provides unique key values ​​to identify the object to be transferred; the provider generates the sub-operations [[Store]] for each identified object to be transferred; when the number of sub- operations [[Store]] reaches zero the provider generate and send a state response of success ( Success). The sub-operations [[Store]] occur on a different association than that of the Move .&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-move-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomMoveCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || The Information Entity level. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_QUERY_LEVEL&amp;quot;. &lt;br /&gt;
     Admitted values: &lt;br /&gt;
         - PATIENT &lt;br /&gt;
         - STUDY &lt;br /&gt;
         - SERIES &lt;br /&gt;
         - INSTANCE&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional || The ID of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_ID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional || The Name of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_NAME&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClassUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4405</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4405"/>
		<updated>2015-07-14T14:08:43Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Find service establishes an association between the client that invoked it and the provider to which the call is intended; the service requires the provider to make a match with all specified keys in the identifier of request; the provider generates a response Find for each match and displays all key fields and attributes known required. When the process is completed response is generated and sent a reply Find with a state of success ( Success). Refusal or failure to reply indicates that the provider is unable to process the request.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomFindCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || The Information Entity level. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_QUERY_LEVEL&amp;quot;. &lt;br /&gt;
    Admitted values: &lt;br /&gt;
         - PATIENT &lt;br /&gt;
         - STUDY &lt;br /&gt;
         - SERIES &lt;br /&gt;
         - INSTANCE&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional || The ID of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_ID&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional || The Name of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_NAME&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| patientSex || optional || The Sex of the patient. Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_PATIENT_SEX&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional || The Service-Object Pair (SOP). Is overwritten by the value of the GVBuffer property &amp;quot;DICOM_SOP_CLASS&amp;quot;.&lt;br /&gt;
    Admitted values:&lt;br /&gt;
        - Patient Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.1.1&lt;br /&gt;
        - Study Root Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.2.1&lt;br /&gt;
        - Modality Worklist Information Model - FIND 1.2.840.10008.5.1.4.31&lt;br /&gt;
        - Patient/Study Only Query/Retrieve Information Model - FIND 1.2.840.10008.5.1.4.1.2.3.1&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional || &lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopClassUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| modalityStudy || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4404</id>
		<title>Echo</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4404"/>
		<updated>2015-07-14T13:26:21Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Echo service establishes an association between the client that invoked it and the provider that the call is intended. Its function is to verify the success or failure of the association by means of messages ( success or failure ) sent from the provider to the client.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-echo-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomEchoCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a GVBuffer property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available. The property has priority over the manual configuration.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4403</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4403"/>
		<updated>2015-07-14T13:16:45Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4402</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4402"/>
		<updated>2015-07-14T13:16:07Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Find service establishes an association between the client that invoked it and the provider to which the call is intended; the service requires the provider to make a match with all specified keys in the identifier of request; the provider generates a response Find for each match and displays all key fields and attributes known required. When the process is completed response is generated and sent a reply Find with a state of success ( Success). Refusal or failure to reply indicates that the provider is unable to process the request.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomFindCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || &lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| patientSex || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopClassUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| modalityStudy || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4401</id>
		<title>Move</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4401"/>
		<updated>2015-07-14T13:13:58Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Move service is the operation for the transfer of a DICOM object. The service establishes an association between the client that invoked it and the provider to which the call is intended; the service provides unique key values ​​to identify the object to be transferred; the provider generates the sub-operations [[Store]] for each identified object to be transferred; when the number of sub- operations [[Store]] reaches zero the provider generate and send a state response of success ( Success). The sub-operations [[Store]] occur on a different association than that of the Move .&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-move-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomMoveCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional || &lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClassUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4400</id>
		<title>Move</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4400"/>
		<updated>2015-07-14T12:53:23Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Move service is the operation for the transfer of a DICOM object. The service establishes an association between the client that invoked it and the provider to which the call is intended; the service provides unique key values ​​to identify the object to be transferred; the provider generates the sub-operations [[Store]] for each identified object to be transferred; when the number of sub- operations [[Store]] reaches zero the provider generate and send a state response of success ( Success). The sub-operations [[Store]] occur on a different association than that of the Move .&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-move-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomMoveCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || implied || &lt;br /&gt;
|-&lt;br /&gt;
| patientID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| patientName || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClassUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || implied ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4399</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4399"/>
		<updated>2015-07-14T10:39:39Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Store service is the operation that allows the storage of a DICOM object. It can be invoked by the client to ask the server to store a specific object, or is generated in response to a Move call to provide to trigger the mechanism of delivery of DICOM objects.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
|type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomStoreCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| dicomFile || implied ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4398</id>
		<title>Echo</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4398"/>
		<updated>2015-07-14T10:23:00Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Echo service establishes an association between the client that invoked it and the provider that the call is intended. Its function is to verify the success or failure of the association by means of messages ( success or failure ) sent from the provider to the client.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-echo-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomEchoCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4397</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4397"/>
		<updated>2015-07-14T10:22:41Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Find service establishes an association between the client that invoked it and the provider to which the call is intended; the service requires the provider to make a match with all specified keys in the identifier of request; the provider generates a response Find for each match and displays all key fields and attributes known required. When the process is completed response is generated and sent a reply Find with a state of success ( Success). Refusal or failure to reply indicates that the provider is unable to process the request.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomFindCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || implied || &lt;br /&gt;
|-&lt;br /&gt;
| patientID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| patientName || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| patientSex || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopClassUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| modalityStudy || implied ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4396</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4396"/>
		<updated>2015-07-14T10:21:00Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* {{GVESB}} Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Service Find establishes an association between the client that invoked it and the provider to which the call is intended; the service requires the provider to make a match with all specified keys in the identifier of request; the provider generates a response Find for each match and displays all key fields and attributes known required. When the process is completed response is generated and sent a reply Find with a state of success ( Success). Refusal or failure to reply indicates that the provider is unable to process the request. &lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomFindCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || implied || &lt;br /&gt;
|-&lt;br /&gt;
| patientID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| patientName || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| patientSex || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopClassUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopInstanceUID || implied ||&lt;br /&gt;
|-&lt;br /&gt;
| modalityStudy || implied ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4395</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4395"/>
		<updated>2015-07-14T10:03:08Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Service Find establishes an association between the client that invoked it and the provider to which the call is intended; the service requires the provider to make a match with all specified keys in the identifier of request; the provider generates a response Find for each match and displays all key fields and attributes known required. When the process is completed response is generated and sent a reply Find with a state of success ( Success). Refusal or failure to reply indicates that the provider is unable to process the request. &lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomFindCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|-&lt;br /&gt;
| queryLevel || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| patientID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| patientName || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| patientSex || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopClass || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| sopInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| studyInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| seriesInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopClassUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| affectedSopInstanceUID || optional ||&lt;br /&gt;
|-&lt;br /&gt;
| modalityStudy || optional ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4394</id>
		<title>Echo</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4394"/>
		<updated>2015-07-14T09:20:55Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* {{GVESB}} Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Service Echo establishes an association between the client that invoked it and the provider that the call is intended. Its function is to verify the success or failure of the association by means of messages ( success or failure ) sent from the provider to the client.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-echo-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomEchoCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''. This value is referenced by a property &amp;quot;DICOM_ASSOCIATION&amp;quot; or manually, choosing a value among those available.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4393</id>
		<title>Echo</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4393"/>
		<updated>2015-07-14T09:14:11Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Service Echo establishes an association between the client that invoked it and the provider that the call is intended. Its function is to verify the success or failure of the association by means of messages ( success or failure ) sent from the provider to the client.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-echo-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomEchoCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters''' through manual configuration or through the property ''' DICOM_ASSOCIATION '''.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4392</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4392"/>
		<updated>2015-07-14T09:08:12Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: /* DICOM Connector */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
&lt;br /&gt;
The Outbound DICOM Connector allows association verification and research,acquisition and storage of DICOM objects on PACS systems in the network.&lt;br /&gt;
&lt;br /&gt;
The Inbound DICOM Connector allows to choose which services accept , provides answers about the status of the association between the system and the system questioner and retrieval of images between them.&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
The DICOM services implemented by the outbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Find]]&lt;br /&gt;
* [[Move]]&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;br /&gt;
The DICOM services implemented by the inbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Store]]&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4391</id>
		<title>Move</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Move&amp;diff=4391"/>
		<updated>2015-07-14T09:04:17Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: Created page with &amp;quot;==Description==  =={{GVESB}} Configuration== The dicom-move-call Element is used by Channel and routed-call. It has the attributes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-move-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4390</id>
		<title>Store</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Store&amp;diff=4390"/>
		<updated>2015-07-14T09:04:13Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: Created page with &amp;quot;==Description==  =={{GVESB}} Configuration== The dicom-store-call Element is used by Channel and routed-call. It has the attributes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-store-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4389</id>
		<title>Find</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Find&amp;diff=4389"/>
		<updated>2015-07-14T09:01:51Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: Created page with &amp;quot;==Description==  =={{GVESB}} Configuration== The dicom-find-call Element is used by Channel and routed-call. It has the attributes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-find-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4388</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4388"/>
		<updated>2015-07-14T09:00:10Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
The Outbound DICOM Connector allows association verification and research,acquisition and storage of DICOM objects on PACS systems in the network.&lt;br /&gt;
The Inbound DICOM Connector allows to choose which services accept , provides answers about the status of the association between the system and the system questioner and retrieval of images between them.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
The DICOM services implemented by the outbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Find]]&lt;br /&gt;
* [[Move]]&lt;br /&gt;
* [[Store]]&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;br /&gt;
The DICOM services implemented by the inbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* [[Store]]&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4387</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4387"/>
		<updated>2015-07-13T16:05:40Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
The DICOM services implemented by the outbound connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* Find&lt;br /&gt;
* Move&lt;br /&gt;
* Store&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;br /&gt;
The DICOM services implemented by the inbound connector are :&lt;br /&gt;
*[[Echo]]&lt;br /&gt;
* Store&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4386</id>
		<title>DICOM</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=DICOM&amp;diff=4386"/>
		<updated>2015-07-13T15:34:02Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
[http://dicom.nema.org/ DICOM] - Digital Imaging and Communications in Medicine - is the international standard for medical images and related information (ISO 12052). It defines the formats for medical images that can be exchanged with the data and quality necessary for clinical use. DICOM is implemented in almost every radiology, cardiology imaging, and radiotherapy device (X-ray, CT, MRI, ultrasound, etc.), and increasingly in devices in other medical domains such as ophthalmology and dentistry. From the emergency department, to cardiac stress testing, to breast cancer detection, DICOM is the standard that makes medical imaging work — for doctors and for patients.&lt;br /&gt;
&lt;br /&gt;
==Data Format==&lt;br /&gt;
DICOM differs from some, but not all, data formats in that it groups information into data sets. That means that a file of a chest x-ray image, for example, actually contains the patient ID within the file, so that the image can never be separated from this information by mistake. This is similar to the way that image formats such as JPEG can also have embedded tags to identify and otherwise describe the image.&lt;br /&gt;
&lt;br /&gt;
A DICOM data object consists of a number of attributes, including items such as name, ID, etc., and also one special attribute containing the image pixel data (i.e. logically, the main object has no &amp;quot;header&amp;quot; as such: merely a list of attributes, including the pixel data). A single DICOM object can have only one attribute containing pixel data. For many modalities, this corresponds to a single image. But note that the attribute may contain multiple &amp;quot;frames&amp;quot;, allowing storage of cine loops or other multi-frame data.&lt;br /&gt;
&lt;br /&gt;
DICOM uses three different Data Element encoding schemes. With Explicit Value Representation (VR) Data Elements, for VRs that are not OB, OW, OF, SQ, UT, or UN, the format for each Data Element is: GROUP (2 bytes) ELEMENT (2 bytes) VR (2 bytes) LengthInByte (2 bytes) Data (variable length).&lt;br /&gt;
&lt;br /&gt;
==DICOM Connector==&lt;br /&gt;
The {{GVESB}} DICOM connector enables the operations that can be performed on a DICOM object.&lt;br /&gt;
The use of the connector joint with the peculiarities of the {{GVESB}} [[Virtual Layer]] allows the management of DICOM applications in a simple and efficient way, separating the logic of the process implementation from the specific management of the messages and their structure, independently from the DICOM standard used.&lt;br /&gt;
Basically the connector allows the virtualization of the input/output operations to a DICOM application, making available to the service definition process the interfaces able to hide all the technical details related to DICOM standard.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Outbound DICOM Connector==&lt;br /&gt;
The DICOM services implemented by the connector are :&lt;br /&gt;
* [[Echo]]&lt;br /&gt;
* Find&lt;br /&gt;
* Move&lt;br /&gt;
* Store&lt;br /&gt;
&lt;br /&gt;
== Inbound DICOM Connector==&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
	<entry>
		<id>https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4385</id>
		<title>Echo</title>
		<link rel="alternate" type="text/html" href="https://gvwiki.greenvulcano.com/gvwiki/index.php?title=Echo&amp;diff=4385"/>
		<updated>2015-07-13T14:54:58Z</updated>

		<summary type="html">&lt;p&gt;M.sutera: Created page with &amp;quot;==Description== Service Echo establishes an association between the client that invoked it and the provider that the call is intended. Its function is to verify the success or fa...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
Service Echo establishes an association between the client that invoked it and the provider that the call is intended. Its function is to verify the success or failure of the association by means of messages ( success or failure ) sent from the provider to the client.&lt;br /&gt;
&lt;br /&gt;
=={{GVESB}} Configuration==&lt;br /&gt;
The dicom-echo-call Element is used by [[Channel]] and [[routed-call]]. It has the attributes:&lt;br /&gt;
{|class=&amp;quot;gvtable&amp;quot;&lt;br /&gt;
! Attribute !! Type !! Description&lt;br /&gt;
|-&lt;br /&gt;
| type || fixed || This attribute must assume the value '''call'''.&lt;br /&gt;
|-&lt;br /&gt;
| class || fixed || This attribute must assume the value '''it.greenvulcano.gvesb.virtual.dicom.DicomEchoCallOperation'''.&lt;br /&gt;
|-&lt;br /&gt;
| name || required || Operation name. Used in the [[Flow]] section to associate workflow nodes to VCL operations.&lt;br /&gt;
|-&lt;br /&gt;
| nameAssociation || required || Association name. It is used for the connection to a host. It is configured in '''GVAdapters'''.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>M.sutera</name></author>
		
	</entry>
</feed>