00001 <?php
00002
00003 include_once('../../config-trunk/serverStandardIncludes.php5');
00004
00005 SAutoLoad::addModule('swat');
00006
00007 SAutoLoad::addModule('sdrservice');
00008 SAutoLoad::addModule('pr2');
00009 $prm = new PageRender2();
00010
00011 SDRService::init();
00012
00013 $md = new SDRMetadataObj();
00014 $md->setXML('
00015 <metadata>
00016 <Title>Hello, World.</Title>
00017 <Creator>Jack Plaque</Creator>
00018 <Url>http://www.shodor.org</Url>
00019 </metadata>
00020 ');
00021
00022
00023 $agent = new SDRAgent(array('id' => 1));
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 SDRService::submit('http://www.shodor.org', $md, $agent, 'My first submission');
00035
00036
00037
00038
00039
00040
00041
00042
00043 ?>