Bric::SOAP::ATType

Name

Bric::SOAP::ATType - SOAP interface (deprecated) to Bricolage element type sets

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

# get a list of all element type sets
my $ids = $soap->list_ids()->result;

Description

This module provides a SOAP interface to manipulating Bricolage element type sets. This interface is deprecated and will be removed in version 1.12.

Interface

Public Class Methods

Private Class Methods

Author

Scott Lanning

See Also

Bric::SOAP, Bric::SOAP::Asset