[Bangalore-pm] Bangalore-pm Digest, Vol 35, Issue 4

Satish satsbmp at gmail.com
Thu Sep 15 00:05:21 PDT 2011


Hi Shantanu,

I think 'IO::Socket' works!!, I tried few times, just to test...you can try
it... it doesn't take much time to test.
It's a CPAN module.

Regards,
Satish

On Wed, Sep 14, 2011 at 10:00 PM, <bangalore-pm-request at pm.org> wrote:

> Send Bangalore-pm mailing list submissions to
>        bangalore-pm at pm.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://mail.pm.org/mailman/listinfo/bangalore-pm
> or, via email, send a message with subject or body 'help' to
>        bangalore-pm-request at pm.org
>
> You can reach the person managing the list at
>        bangalore-pm-owner at pm.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Bangalore-pm digest..."
>
>
> Today's Topics:
>
>   1. Socket Programming anyone? (Shantanu Bhadoria)
>   2. Re: Socket Programming anyone? (Anil Menon)
>   3. Re: Socket Programming anyone? (Kiran Kumar)
>   4. Re: Socket Programming anyone? (abhishek jain)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 14 Sep 2011 17:55:49 +0530
> From: Shantanu Bhadoria <shantanu at cpan.org>
> To: bangalore-pm at pm.org
> Subject: [Bangalore-pm] Socket Programming anyone?
> Message-ID:
>        <CACFkGktSyosekRPD4cfd-03vjiRxnYM_HOp=FnTO2omirSRSpg at mail.gmail.com
> >
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi Folks,
> Anyone here has dealt with socket programming? I am thinking of writing a
> server that might handle specific requests on a custom port on a specified
> protocol(undecided yet) and generate responses based on that request. Any
> pointers to detailed documentations ?
> cheers,
> -Shantanu
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mail.pm.org/pipermail/bangalore-pm/attachments/20110914/4dc94800/attachment-0001.html
> >
>
> ------------------------------
>
> Message: 2
> Date: Wed, 14 Sep 2011 17:58:07 +0530
> From: Anil Menon <anilcmenon at gmail.com>
> To: Shantanu Bhadoria <shantanu at cpan.org>
> Cc: bangalore-pm at pm.org
> Subject: Re: [Bangalore-pm] Socket Programming anyone?
> Message-ID:
>        <CACi4h7iU_4k43+1GTGB99Sm6WAo2E+F=uxVZSxgFohJagPVpmA at mail.gmail.com
> >
> Content-Type: text/plain; charset=ISO-8859-1
>
> IO::Socket
> IO::Socket::INET
>
> -Anil Menon
>
>
>
> 2011/9/14 Shantanu Bhadoria <shantanu at cpan.org>:
> > Hi Folks,
> > Anyone here has dealt with socket programming? I am thinking of writing a
> > server that might handle specific requests on a custom port on a
> specified
> > protocol(undecided yet) and generate responses based on that request. Any
> > pointers to detailed documentations ?
> > cheers,
> > -Shantanu
> >
> > _______________________________________________
> > Bangalore-pm mailing list
> > Bangalore-pm at pm.org
> > http://mail.pm.org/mailman/listinfo/bangalore-pm
> >
>
>
> ------------------------------
>
> Message: 3
> Date: Wed, 14 Sep 2011 09:13:37 -0500
> From: Kiran Kumar <mkirank at gmail.com>
> To: Shantanu Bhadoria <shantanu at cpan.org>
> Cc: bangalore-pm at pm.org
> Subject: Re: [Bangalore-pm] Socket Programming anyone?
> Message-ID:
>        <CAPR+Hq-9NYTKqFE3vGPbqukzStU55XcoLfAkz+kc5HbFh_MZNg at mail.gmail.com
> >
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi Shantanu,
>   I have some experience in this, Look at Net::Server it is pretty neat ,
> If you want to write an event based look at Anyevent although it was not
> much help for me for writing a UDP server.  if you want message based look
> at ZeroMQ (publisher and subscriber and very fast). There are other options
> like POE or wrapping something around plack handlers.
>
>
> -Kiran
>
>
> 2011/9/14 Shantanu Bhadoria <shantanu at cpan.org>
>
> > Hi Folks,
> > Anyone here has dealt with socket programming? I am thinking of writing a
> > server that might handle specific requests on a custom port on a
> specified
> > protocol(undecided yet) and generate responses based on that request. Any
> > pointers to detailed documentations ?
> > cheers,
> > -Shantanu
> >
> > _______________________________________________
> > Bangalore-pm mailing list
> > Bangalore-pm at pm.org
> > http://mail.pm.org/mailman/listinfo/bangalore-pm
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mail.pm.org/pipermail/bangalore-pm/attachments/20110914/ea3a7474/attachment-0001.html
> >
>
> ------------------------------
>
> Message: 4
> Date: Wed, 14 Sep 2011 20:18:25 +0530
> From: abhishek jain <mail at webbee.biz>
> To: Kiran Kumar <mkirank at gmail.com>
> Cc: Shantanu Bhadoria <shantanu at cpan.org>, bangalore-pm at pm.org
> Subject: Re: [Bangalore-pm] Socket Programming anyone?
> Message-ID:
>        <CAPsOTdub8yqFO5j78ziZ-FsGg7Jpsxs5vRT4af1tdx+px9=eKQ at mail.gmail.com
> >
> Content-Type: text/plain; charset="iso-8859-1"
>
> i would suggest POE, as it also do non blocking operations,
>
> 2011/9/14 Kiran Kumar <mkirank at gmail.com>
>
> > Hi Shantanu,
> >    I have some experience in this, Look at Net::Server it is pretty neat
> ,
> > If you want to write an event based look at Anyevent although it was not
> > much help for me for writing a UDP server.  if you want message based
> look
> > at ZeroMQ (publisher and subscriber and very fast). There are other
> options
> > like POE or wrapping something around plack handlers.
> >
> >
> > -Kiran
> >
> >
> > 2011/9/14 Shantanu Bhadoria <shantanu at cpan.org>
> >
> >> Hi Folks,
> >> Anyone here has dealt with socket programming? I am thinking of writing
> a
> >> server that might handle specific requests on a custom port on a
> specified
> >> protocol(undecided yet) and generate responses based on that request.
> Any
> >> pointers to detailed documentations ?
> >> cheers,
> >> -Shantanu
> >>
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mail.pm.org/pipermail/bangalore-pm/attachments/20110914/1f4f4625/attachment-0001.html
> >
>
> ------------------------------
>
> _______________________________________________
> Bangalore-pm mailing list
> Bangalore-pm at pm.org
> http://mail.pm.org/mailman/listinfo/bangalore-pm
>
> End of Bangalore-pm Digest, Vol 35, Issue 4
> *******************************************
>



-- 
Regards,

Satish

"Live with Love and Humanity"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.pm.org/pipermail/bangalore-pm/attachments/20110915/91175f27/attachment.html>


More information about the Bangalore-pm mailing list