Re: [Catalyst] Asynch webservices with catalyst

2017-03-01 Thread Rajesh Kumar Mallah
More material , http://www.catalystframework.org/calendar/2013 Day 10: Nonblocking and Streaming - Part 1 Day 11: Nonblocking and Streaming - Part 2 Day 12: Nonblocking and Streaming - Part 3 Day 13: Nonblocking and Streaming - Part 4 Day 14: Streaming Nonblocking Files Particularly pls read

Re: [Catalyst] complex search using Catalyst::Controller::DBIC::API::REST

2017-03-01 Thread Rajesh Kumar Mallah
Dear Petrov, Thanks i will try the JSON.stringify approach , the snippet was just for spitting out what you typed , i am not sure if it would be so easy to type out the parameters in case of complex conditions. Warm Regards Rajesh. > Hello Rajesh, > > C::C::DBIC::API supports that under the

Re: [Catalyst] complex search using Catalyst::Controller::DBIC::API::REST

2017-03-01 Thread Dimitar Petrov
Hello Rajesh, C::C::DBIC::API supports that under the hood, so not sure what are you going after. You can either use: search=JSON.stringify(object) or construct the search passing params like: search.holder.-ilike=%mis%. Both should work out of the box. Regards On Wed, Mar 1, 2017 at 10:24 AM,

Re: [Catalyst] complex search using Catalyst::Controller::DBIC::API::REST

2017-03-01 Thread Rajesh Kumar Mallah
Hi , CGI::Expand collapse_hash comes to rescue , below is a small snippet that converts the perl hash reference to the TT's dotted format using CGI::Expand. #!/usr/bin/perl -w use strict; use CGI::Expand qw(expand_hash