Bric::SOAP::Template

Name

Bric::SOAP::Template - SOAP interface to Bricolage templates.

Synopsis

use SOAP::Lite;
import SOAP::Data 'name';

# setup soap object to login with
my $soap = new SOAP::Lite
  uri      => 'http://bricolage.sourceforge.net/Bric/SOAP/Auth',
  readable => DEBUG;
$soap->proxy('http://localhost/soap',
             cookie_jar => HTTP::Cookies->new(ignore_discard => 1));
# login
$soap->login(name(username => USER),
             name(password => PASSWORD));

# set uri for Template module
$soap->uri('http://bricolage.sourceforge.net/Bric/SOAP/Template');

# get a list of template_ids in the root category
my $template_ids = $soap->list_ids(name(category => '/'))->result;

Description

This module provides a SOAP interface to manipulating Bricolage templates.

Interface

Public Class Methods

Private Class Methods