/[notice-sender]/trunk/soap-client.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/soap-client.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 33 by dpavlin, Tue May 17 11:09:08 2005 UTC revision 79 by dpavlin, Thu Aug 25 11:58:15 2005 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use SOAP::Lite; # +trace => 'debug';  use SOAP::Lite;
4    use Data::Dumper;
5    
6    my $debug = 0;
7    $debug = 1 if (@ARGV);
8    
9  my $HOST   = "http://localhost/~dpavlin/notice-sender/soap.cgi";  my $HOST   = "http://localhost/~dpavlin/notice-sender/soap.cgi";
10  my $NS     = "http://localhost/Nos/SOAP/";  my $NS     = "http://localhost/Nos/SOAP/";
11  my $soap = SOAP::Lite  my $soap = SOAP::Lite
# Line 8  my $soap = SOAP::Lite Line 13  my $soap = SOAP::Lite
13          ->uri($NS)          ->uri($NS)
14          ->proxy($HOST);          ->proxy($HOST);
15    
16    $soap->on_debug(sub{print "# ",@_}) if ($debug);
17    
18  my $list_id = $soap->NewList({  my $list_id = $soap->CreateList({
19                  list => 'My list',                  list => 'My list',
20                  email => 'my-soap@example.com',                  email => 'my-soap@example.com',
21          })->result || die "can't add list";          })->result || die "can't add list";
# Line 38  This is a dummy test Line 44  This is a dummy test
44    
45  print "added message ID $message_id\n";  print "added message ID $message_id\n";
46    
47    my $result = $soap->ListMembers({
48                    list => 'My list',
49    });
50    
51    die "can't list members ".$result->faultcode.": ".$result->faultstrig if ($result->fault);
52    
53    print "members:\n";
54    foreach my $m (@{$result->result}) {
55            print "\t",$m->{'email'},"\n";
56    }
57    
58    my @r = $soap->MessagesReceived({
59            list => 'My list',
60    })->result;
61    print "received messages: ", Dumper(\@r);
62    
63    $soap->DeleteMemberFromList({
64            list => 'My list',
65            email => 'dpavlin@rot13.org',
66    })->result || die "can't delete member";
67    
68    print "deleted member\n";
69    
70    $soap->DropList({
71            list => 'My list'
72    });
73    
74    print "delete list\n";
75    
76  1;  1;

Legend:
Removed from v.33  
changed lines
  Added in v.79

  ViewVC Help
Powered by ViewVC 1.1.26