[Zope] images bi XML-RPC

Nuno Goncalves nuno@fccn.pt
Fri, 5 Jan 2001 16:37:37 +0000 (WET)


Hi there !
I'm trying to add imagens with a perl XML-RPC script
Does anyone knows how to do that ??
I'm tring something like this
but Zope adds a conten-type like text/x-unknown-content-type
and i wanted a image content-type !

here's the code :
-------------------------
#!/usr/bin/perl

use Frontier::Client;

$c = new
Frontier::Client(url=>"http://localhost:8888/name/Template/images");

$arr_teste[0]='primeiro';
$arr_teste[1]='segundo';

$arr = $c->call('manage_addImage',('id-img_pl','banner_bck.gif'));

----------------

thanks !!
Nuno