grafl has asked for the wisdom of the Perl Monks concerning the following question:

Hi, is it possible to start a non TCP server what after initialisation starts up an HTTPD and an FTP server? How should I procide? grafl

Replies are listed 'Best First'.
Re: Server of servers
by Anonymous Monk on Mar 08, 2014 at 21:31 UTC

    Hi, is it possible to start a non TCP server what after initialisation starts up an HTTPD and an FTP server?

    No, both HTTP and FTP protocols rely on TCP

    How should I procide? grafl

    ?? learn about the internet ?? Something else??? Plack?

Re: Server of servers
by CountZero (Bishop) on Mar 09, 2014 at 08:55 UTC
    What do you mean by "a non TCP server"? Can you give an example?

    CountZero

    A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

    My blog: Imperial Deltronics
      Usualy the server concept is related to network (TCP/IP or UDP). What I would like is a Perl script (module) what after start-up remain resident and if it configured starts an HTTP server and an FTP server.
        You mean you want just a resident program that upon some kind of trigger starts a HTTP server and FTP server?

        CountZero

        A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

        My blog: Imperial Deltronics