<?php // ####################################################### // Author: Markus Widmer // Creation date: 18.07.2007 // Modification date: 18.07.2007 // Version: 0.1.0 // ####################################################### require_once( "../soapTypes.inc.php" ); // ----------------------------------------------------- // You'll need these services // ----------------------------------------------------- $soapExtra = new SoapClient( "http://rbac.textgrid.daasi.de/wsdl/tgextra.wsdl" ); echo "<BODY><HTML>"; if( isset( $_POST['auth'] ) ) { // ----------------------------------------------------- // If this was successfull you can add a the user you // wish to create // ----------------------------------------------------- $regReq = new tgAddActiveRoleRequest(); $regReq->auth = $_POST['auth']; $regReq->log = ""; $regReq->role = $_POST['role']; echo "<HR/>"; echo "Adding role...<BR/>"; try { $addActiveRoleResponse = $soapExtra->tgAddActiveRole( $regReq ); if( $addActiveRoleResponse->result ) { echo "DONE.<BR>"; } else { echo "UNABLE to commit!<BR>"; } } catch( SoapFault $f ) { echo "SOAP FAULT!: " . $f->faultcode . " / " . $f->faultstring . " / " . $f->detail; } } echo "<FORM action=\"tgAddActiveRole.php\" method=\"post\" enctype=\"multipart/form-data\">\n"; echo "Auth: <INPUT type=\"text\" name=\"auth\" value=\"\"><BR>\n"; echo "Role: <INPUT type=\"text\" name=\"role\" value=\"\"><BR>\n"; echo "<INPUT type=\"submit\" value=\"Commit...\">\n"; echo "</FORM>\n"; echo "</BODY></HTML>"; ?>