Store(DicomScp,string) Method

Summary
Sends a C-STORE-REQ message to a peer member of a connection defined by Scp.
Syntax
C#
VB
C++
public void Store( 
   DicomScp Scp, 
   string DicomFile 
) 
  
Public Overloads Sub Store( _ 
   ByVal Scp As DicomScp, _ 
   ByVal DicomFile As String _ 
)  
public: 
void Store(  
   DicomScp^ Scp, 
   String^ DicomFile 
)  

Parameters

Scp
The peer connection to send the C-STORE-REQ to.

DicomFile
The DICOM file to send.

Exceptions

ExceptionDescription
System.IO.FileNotFoundException Thrown when DicomFile does not exist
System.ArgumentNullException Thrown when SCP is null.
Remarks

The file can be a single DICOM file or a DICOMDIR file. If the file is a DICOMDIR all files in the DICOM will be sent.

Example

Stores a local file to a remote DICOM server.

C#
VB
using Leadtools; 
using Leadtools.Dicom.Scu; 
using Leadtools.Dicom.Scu.Common; 
using Leadtools.Dicom; 
using Leadtools.Dicom.Common.DataTypes; 
using Leadtools.Dicom.Common.DataTypes.Status; 
 
 
 
public void StoreFile() 
{ 
   DicomEngine.Startup(); 
   DicomNet.Startup(); 
 
   StoreScu storeFile = new StoreScu(); 
   DicomScp scp = new DicomScp(); 
 
   // 
   // Change these parameters to reflect the calling AETitle. 
   // 
 
   storeFile.AETitle = "LEAD_CLIENT"; 
   storeFile.HostPort = 1000; 
   storeFile.HostAddress = Dns.GetHostEntry(Dns.GetHostName()).AddressList.FirstOrDefault(ip => ip.AddressFamily == AddressFamily.InterNetwork); 
 
   // 
   // Change these parameters to reflect the called AETitle (server). 
   // 
 
   scp.AETitle = "MI_SERVER"; 
   scp.Port = 104; 
   scp.Timeout = 60; 
   scp.PeerAddress = IPAddress.Parse("10.1.1.96"); 
 
   storeFile.ReceiveBuffer += new ReceiveBufferDelegate(storeFile_ReceiveBuffer); 
   storeFile.BeforeCStore += new BeforeCStoreDelegate(storeFile_BeforeCStore); 
   storeFile.AfterCStore += new AfterCStoreDelegate(storeFile_AfterCStore); 
   storeFile.Compression = Compression.Lossless; 
   string fileName = Path.Combine(LEAD_VARS.ImagesDir, "DICOM", "Image1.dcm"); 
   storeFile.Store(scp, fileName); 
 
   DicomNet.Shutdown(); 
   DicomEngine.Shutdown(); 
} 
 
void storeFile_ReceiveBuffer(object sender, ReceiveBufferEventArgs e) 
{ 
   Console.WriteLine("{0} bytes of data received", e.BufferSize); 
} 
 
void storeFile_BeforeCStore(object sender, BeforeCStoreEventArgs e) 
{ 
   // 
   // Stop storing if we received an error 
   // 
 
   if (e.Error != null) 
      e.Skip = SkipMethod.AllFiles; 
} 
 
void storeFile_AfterCStore(object sender, AfterCStoreEventArgs e) 
{ 
   string msg; 
 
   msg = string.Format("{0} store complete. Status: {1}", e.FileInfo.FullName, e.Status); 
   Console.WriteLine(msg); 
 
   if (e.Status != DicomCommandStatusType.Success) 
   { 
      string statusAllString = e.StatusAll.ToString(StatusFormatFlags.IgnoreStatus, "\n", "\t"); 
      Console.WriteLine(statusAllString); 
   } 
} 
 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images"; 
} 
Imports Leadtools 
Imports Leadtools.Dicom.Scu 
Imports Leadtools.Dicom.Scu.Common 
Imports Leadtools.Dicom 
Imports Leadtools.Dicom.Common.DataTypes 
 
 
Public Sub StoreFile() 
    DicomEngine.Startup() 
    DicomNet.Startup() 
 
    Dim cstore As StoreScu = New StoreScu() 
    Dim scp As DicomScp = New DicomScp() 
 
    ' 
    ' Change these parameters to reflect the calling AETitle. 
    ' 
    cstore.AETitle = "LEAD_CLIENT" 
    cstore.HostPort = 1000 
    cstore.HostAddress = Dns.GetHostEntry(Dns.GetHostName()).AddressList.FirstOrDefault(Function(ip) ip.AddressFamily = AddressFamily.InterNetwork) 
 
    ' 
    ' Change these parameters to reflect the called AETitle (server). 
    ' 
    scp.AETitle = "MI_SERVER" 
    scp.Port = 104 
    scp.Timeout = 60 
    scp.PeerAddress = IPAddress.Parse("10.1.1.96") 
 
    AddHandler cstore.ReceiveBuffer, AddressOf cstore_ReceiveBuffer 
    AddHandler cstore.BeforeCStore, AddressOf cstore_BeforeCStore 
    AddHandler cstore.AfterCStore, AddressOf cstore_AfterCStore 
    cstore.Compression = Compression.Lossless 
    cstore.Store(scp, Path.Combine(LEAD_VARS.ImagesDir, "Image1.dic")) 
 
    DicomNet.Shutdown() 
    DicomEngine.Shutdown() 
End Sub 
 
Private Sub cstore_ReceiveBuffer(ByVal sender As Object, ByVal e As ReceiveBufferEventArgs) 
    Console.WriteLine("{0} bytes of data received", e.BufferSize) 
End Sub 
 
Private Sub cstore_BeforeCStore(ByVal sender As Object, ByVal e As BeforeCStoreEventArgs) 
    ' 
    ' Stop storing if we received an error 
    ' 
    If Not e.Error Is Nothing Then 
        e.Skip = SkipMethod.AllFiles 
    End If 
End Sub 
 
Private Sub cstore_AfterCStore(ByVal sender As Object, ByVal e As AfterCStoreEventArgs) 
    Dim msg As String 
 
    msg = String.Format("{0} store complete. Status: {1}", e.FileInfo.FullName, e.Status) 
    Console.WriteLine(msg) 
End Sub 
 
 
Public NotInheritable Class LEAD_VARS 
   Public Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images" 
End Class 
Requirements

Target Platforms

Help Version 21.0.2021.6.30
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Dicom.Scu Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.