Bric::SOAP::Category

Name

Bric::SOAP::Category - SOAP interface to Bricolage categories.

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 Category module
$soap->uri('http://bricolage.sourceforge.net/Bric/SOAP/Category');

# get a list of all categories
my $category_ids = $soap->list_ids()->result;

Description

This module provides a SOAP interface to manipulating Bricolage categories.

Interface

Public Class Methods

Private Class Methods

Author

Sam Tregar

See Also

Bric::SOAP