Jul 30, 2003 #1 techgump Technical User Apr 23, 2003 3 US Is there a command for connecting a telnet session manually. The help files suggest the following code would work: connectmanual telnet 255.255.255.255 But it dosen't. Any ideas?
Is there a command for connecting a telnet session manually. The help files suggest the following code would work: connectmanual telnet 255.255.255.255 But it dosen't. Any ideas?
Jul 30, 2003 #2 knob Programmer Oct 31, 2001 2,573 US Try using a script of this form, it worked for me: proc main connectmanual telnet "255.255.255.255" while $DIALING yield endwhile endproc aspect@aspectscripting.com http://www.aspectscripting.com Upvote 0 Downvote
Try using a script of this form, it worked for me: proc main connectmanual telnet "255.255.255.255" while $DIALING yield endwhile endproc aspect@aspectscripting.com http://www.aspectscripting.com
Jul 31, 2003 Thread starter #3 techgump Technical User Apr 23, 2003 3 US Thanks, works great. I wasn't treating it as a string. Upvote 0 Downvote