http://grimore.i2p/opensim/remote_admin
. */ require_once 'HTTP/Request2.php' ; require_once 'XML/Serializer.php' ; class wasRemoteAdmin { var $url ; var $raPassword ; var $options ; function wasRemoteAdmin ( $url , $raPassword ) { $this -> url = $url ; $this -> raPassword = $raPassword ; $this -> options = array ( "indent" => " " , "linebreak" => " \n " , "typeHints" => false , "addDecl" => true , "encoding" => "UTF-8" , "rootName" => "methodCall" , "defaultTagName" => "member" , "mode" => "simplexml" ) ; } function...