Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TCL TLS

Status
Not open for further replies.

ipz8

Programmer
Joined
Jan 10, 2007
Messages
4
Location
US
Hello out there. I am working on a pretty obscure part of TCL where I want to encrypt an API between a client and server. Basically on the server I have openssl running. On my client I want to create a TCL interface to the API. Now since encryption is a requirement, I'm banging my head trying to get this all to work. When I use openssl directly as a client, everything works magically. Using the tls1.5 package in TCL, I am having less to no luck. I was wondering if anyone out there could generically explain what I need to do to get this all running (without copying over the PEM files from the server).
 
Hi all
I've some problems in embedding a ds9 application (ds9 is a software for visualize astronomical images) into a window tcl/tk.
My script is :

package require BLT
namespace import blt::*
toplevel .ds9
wm title .ds9 "QuickLook DS9"
wm geometry .ds9 800x860
set Ds9 "/usr/local/bin/ds9 -view buttons no"
pack [frame .ds9.fr1] -anchor nw -fill y
container .ds9.fr1.c -takefocus 1 -width 620 -height 860 -bg white
eval bgexec MyVar $Ds9 &
.ds9.fr1.c find -command "$Ds9"
update
.ds9.fr1.c configure -relief raised -bd 0 -name "SAOImage ds9"
pack .ds9.fr1.c -fill both

Sometime this procedure work without problems and some other the ds9 result not docked.
I don't know how to solve this!
Help me please!
 
Please create a post of your own for this problem. This doesn't have anything to do with the OP.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top