/[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 25 by dpavlin, Mon May 16 13:52:43 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     = "urn:Nos";  my $NS     = "http://localhost/Nos/SOAP/";
11  my $soap = SOAP::Lite  my $soap = SOAP::Lite
12          ->readable(1)          ->readable(1)
13          ->uri($NS)          ->uri($NS)
14          ->proxy($HOST);          ->proxy($HOST);
15    
16  my $som = $soap->add_member_to_list(  $soap->on_debug(sub{print "# ",@_}) if ($debug);
17          SOAP::Data->name("list" => "My list"),  
18          SOAP::Data->name("email" => 'dpavlin@rot13.org'),  my $list_id = $soap->CreateList({
19          SOAP::Data->name("name" => 'Dobrica Pavlinusic'),                  list => 'My list',
20          );                  email => 'my-soap@example.com',
21          print "The response from the server was:\n".( $som->result || 'null' )."\n";          })->result || die "can't add list";
22    
23    print "added list ID $list_id\n";
24    
25    
26    my $member_id = $soap->AddMemberToList({
27                    list => 'My list',
28                    email => 'dpavlin@rot13.org',
29                    name => 'Dobrica Pavlinusic',
30            })->result || die "can't add user";
31    
32    print "added member ID $member_id\n";
33    
34    
35    my $message_id = $soap->AddMessageToList({
36                    list => 'My list',
37                    message => 'To: member@example.com
38    From: mylist@example.com
39    Subject: text
40    
41    This is a dummy test
42    ',
43            })->result || die "can't add message";
44    
45    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.25  
changed lines
  Added in v.79

  ViewVC Help
Powered by ViewVC 1.1.26