Bric::SOAP::Destination

NAME

Bric::SOAP::Destination - SOAP interface to Bricolage destinations

VERSION

$LastChangedRevision$

DATE

$LastChangedDate: 2004-09-14 02:48:55 +0200 (Tue, 14 Sep 2004) $

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

# get a list of all destination IDs
my $ids = $soap->list_ids()->result;

DESCRIPTION

This module provides a SOAP interface to manipulating Bricolage destinations.

INTERFACE

Public Class Methods

Private Class Methods

AUTHOR

Scott Lanning

SEE ALSO

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