Re: Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-12 Thread Andrew Solomon
Hi Ken, JSON REST services come with all three of the most popular web frameworks. Catalyst is the hardest to learn, but has more bells and whistles than you can poke a stick at; Mojo is a fairly self-contained framework which brings non-web specific functionality with it; and Dancer which is a

Re: Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-12 Thread Shlomi Fish
Hi Ken, On Tue, 11 Aug 2015 20:46:27 -0700 Kenneth Wolcott kennethwolc...@gmail.com wrote: Hello again; take a look at http://www.todobackend.com/ you can port the mojolicious one to Dancer as a learning experience. Thank you for the tips... You'd have to try any of the web

Re: Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-12 Thread Hao Wu
what you looking for is not a rest server, but rest client. For JIRA, https://metacpan.org/pod/JIRA::REST I did not check the source, but it is should be a wrapper around some http client. you can follow Shlomi Fish's link to learn more about web automation as a start and then check the

Re: Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-11 Thread Kenneth Wolcott
Hello again; take a look at http://www.todobackend.com/ you can port the mojolicious one to Dancer as a learning experience. Thank you for the tips... You'd have to try any of the web framework for creating RESTful API You can try Mojolicious http://mojolicio.us/perldoc Or you can try

Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-11 Thread Kenneth Wolcott
Hello; I'm looking for introductory to advanced examples of RESTful programming in Perl preferably with some good explanations and best practices. Thanks, Ken Wolcott -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org

Re: Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-11 Thread Raj Barath
You'd have to try any of the web framework for creating RESTful API You can try Mojolicious http://mojolicio.us/perldoc/Mojolicious http://mojolicio.us/perldoc Or you can try dancer2. https://metacpan.org/pod/Dancer2::Cookbook#Writing-a-REST-application https://metacpan.org/pod/Dancer2::Tutorial

Re: Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-11 Thread Hao Wu
take a look at http://www.todobackend.com/ you can port the mojolicious one to Dancer as a learning experience. On Tue, Aug 11, 2015 at 6:50 PM, Kenneth Wolcott kennethwolc...@gmail.com wrote: Hello; I'm looking for introductory to advanced examples of RESTful programming in Perl