Many Pies

Many Pies

Monday, February 21, 2005

Ajax - more than a kitchen cleaner, a summary of the innovative stuff being done by Google amongst others.

Friday, January 21, 2005

The Amazon Web services conference has some fascinating talks.

Monday, December 20, 2004

My first Perl script to use Soap. On the way I discovered that the FTP client built into IE uses binary mode for transfers, so edit your files in an editor that can use Unix format, like PFE, or use a better FTP client.

#!/usr/bin/perl


use CGI qw(:standard);
use Data::Dumper;

use SOAP::Lite;
use SOAP::Lite +autodispatch =>
uri => 'http://www.allconsuming.net/AllConsumingAPI',
proxy => 'http://www.allconsuming.net/soap.cgi',
on_fault => sub {
my($soap, $res) = @_;
die ref $res ? $res->faultstring : $soap->transport->status, "\n";
};

$AllConsumingObject = AllConsumingAPI->new('12','20','12','2004');

$tmpl_var = $AllConsumingObject->GetCurrentlyReadingList('paulm');

print "Content-type: text/html\n\n";
print Dumper($tmpl_var);

Thursday, December 09, 2004

Java isn't always a good solution for cross-platform development because you have to go all Java all the way to the wire, but things are changing.

Friday, November 05, 2004

As Tim says, when Adam writes, you really want to read it.

Wednesday, October 13, 2004

Here's an overview of XML-RPC, SOAP and REST based on a little bit of research.

XML-RPC
is RPC over XML. It's simple.
SOAP is simple, but is the foundation for all the Webservice stuff (now there's a phrase).
REST is even simpler, back to basics, using http things like GET and PUT and URIs.

Thursday, September 23, 2004

Tim dares to speak out. Is there an alternative?