[Catalyst] Failing tests in Catalyst::Controller::SOAP

2008-09-12 Thread Zbigniew Lukasiak
Dear all, I have tried to install Catalyst::Controller::SOAP on both an Open SUSE 10.3 with Perl 5.8.8 and Ubuntu Hardy with the same Perl version. Both give the same errors as in the report at: http://www.nntp.perl.org/group/perl.cpan.testers/2008/09/msg2179625.html Can anyone with more

[Catalyst] Pushing data to Catalyst powered web page

2008-09-12 Thread Supra, Morne
Good afternoon all I am busy with a project where I need to read an RFID tag, get the data associated with the tag and then push the data to a web page for a security person to monitor. I can successfully read the tag by using LogicAlloy's ALE server. It then calls my Catalyst application at

Re: [Catalyst] Pushing data to Catalyst powered web page

2008-09-12 Thread cranky
Supra, Morne wrote: sub notifier : Private { my ( $self, $c ) = @_; #$c-stash-{template} = 'notifier.tt2'; $c-stash-{tagdata} = $c-request-params-{tagdata}; open (TagData, 'C:\Eclipse Projects\Asset Tracker\AssetTracker\lib\AssetTracker\tagdata.txt');

Re: [Catalyst] Pushing data to Catalyst powered web page

2008-09-12 Thread Moritz Onken
Good afternoon all I am busy with a project where I need to read an RFID tag, get the data associated with the tag and then push the data to a web page for a security person to monitor. I can successfully read the tag by using LogicAlloy's ALE server. It then calls my Catalyst application

Re: [Catalyst] Multiple DB, single instance of Cat

2008-09-12 Thread James R. Leu
To get rid of the ACCEPT_CONTEXT redefined messages I modified that last for loop in Catalyst::Model::DBIC::Schema::new() to be: foreach my $moniker ($self-schema-sources) { my $classname = ${class}::$moniker; if (!defined(*{${classname}::ACCEPT_CONTEXT})) {

Re: [Catalyst] Pushing data to Catalyst powered web page

2008-09-12 Thread Bill Moseley
On Fri, Sep 12, 2008 at 02:15:23PM +0200, Supra, Morne wrote: The problem that I have is that I have no idea how to push the data to a web page instead of pulling. Pull with an AJAX update, perhaps. -- Bill Moseley [EMAIL PROTECTED] Sent from my iMutt

Re: [Catalyst] Pushing data to Catalyst powered web page

2008-09-12 Thread Wade . Stuart
Bill Moseley [EMAIL PROTECTED] wrote on 09/12/2008 02:45:42 PM: On Fri, Sep 12, 2008 at 02:15:23PM +0200, Supra, Morne wrote: The problem that I have is that I have no idea how to push the data to a web page instead of pulling. Pull with an AJAX update, perhaps. Or, if you control