LEADTOOLS Support
General
General Questions
Re: Simple DICOM Ping and send images to third party AE Title?
This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Monday, November 21, 2011 1:40:52 AM(UTC)
Groups: Registered
Posts: 53
Hi
I am using Leadtools licensed version 15.0.
I have come across Another third party tools for sending images to 1 client to another client.
for example:(another third party tool code)
DICOM PIng:
Dim g As New DicomGlobal
Dim result As Integer
result = g.Echo("192.168.1.19", "1000", "DICOM", "AETITLE")
If hex4(result) = "0000" Then
MsgBox ("Connected")
End If
Send Images:
Dim image As dicomobjects.DicomImage
image.Send("192.168.1.19", "1000", "DICOM", "AETITLE")
Does it avalable in leadtools like this simple code to check AE title entity (Ping status) and send images to another PACS?
Kindlyhelp me.
Regards
Guna
#2
Posted
:
Tuesday, November 22, 2011 7:47:46 AM(UTC)
Groups: Registered, Tech Support
Posts: 207
Was thanked: 3 time(s) in 3 post(s)
Here is the LEADTOOLS version that will store all the DICOM files in a folder:
Public Sub StoreDirectory()
DicomEngine.Startup()
DicomNet.Startup()
Dim cstoreFolder As StoreScu = New StoreScu()
Dim scp As DicomScp = New DicomScp()
''
'' Change these parameters to reflect your Dicom server.
''
scp.AETitle = "MI_SERVER"
scp.Port = 104
scp.Timeout = 60
scp.PeerAddress = IPAddress.Parse("10.1.1.96")
cstoreFolder.Compression = Compression.Native
cstoreFolder.Store(scp, LEAD_VARS.ImagesDir, "*.*", False)
DicomNet.Shutdown()
DicomEngine.Shutdown()
End Sub
Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
Travis Montgomery
Senior Sales Engineer
#3
Posted
:
Sunday, December 11, 2011 10:46:17 PM(UTC)
Groups: Registered
Posts: 53
Hi Travis
Thanks for the response.
LEADTOOLS Support
General
General Questions
Re: Simple DICOM Ping and send images to third party AE Title?
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.