Bric::SOAP::ElementType

NAME

Bric::SOAP::ElementType - SOAP interface to Bricolage element type definitions.

VERSION

$LastChangedRevision$

DATE

$LastChangedDate$

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

# get a list of all element types
my $element_type_ids = $soap->list_ids()->result;

DESCRIPTION

This module provides a SOAP interface to manipulating Bricolage element types.

INTERFACE

Public Class Methods

Private Class Methods

AUTHOR

Sam Tregar

SEE ALSO

Bric::SOAP