doubt ! help me

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chinnu2809
    New Member
    • Feb 2008
    • 5

    doubt ! help me

    my perl code:

    system("start Telnet bnaxqa14");


    here it opens the telnet page but whta i want to do is that in my perl code i must able to type login and pwd for the telnet page(dont want to type in telnet itself but in perl i have to do and reflect the change) and get inside the telnet page to access an xml



    thank you please help me!
  • npidaparthy
    New Member
    • Feb 2008
    • 14

    #2
    try the following
    [CODE=perl]
    system('plink -pw mypass username@machin e');
    [/CODE]

    let me know if it helps

    -Nagendra Pidaparthy


    Originally posted by chinnu2809
    my perl code:

    system("start Telnet bnaxqa14");


    here it opens the telnet page but whta i want to do is that in my perl code i must able to type login and pwd for the telnet page(dont want to type in telnet itself but in perl i have to do and reflect the change) and get inside the telnet page to access an xml



    thank you please help me!

    Comment

    • npidaparthy
      New Member
      • Feb 2008
      • 14

      #3
      Plink (PuTTY Link)

      In order to use Plink, the file plink.exe will need either to be on your PATH or in your current directory

      you can get the plink.exe from Internet

      -Nagendra Pidaparthy
      Last edited by eWish; Feb 23 '08, 05:12 PM. Reason: Removed quote tag

      Comment

      • KevinADC
        Recognized Expert Specialist
        • Jan 2007
        • 4092

        #4
        Look into the Net::Telnet module

        Comment

        Working...