1<?php 2/* Configure session cache */ 3session_cache_limiter('nocache'); 4session_start(); 5 6include_once "gda-utils.php"; 7include_once "gda-config.php"; 8 9header('Content-type: text/plain; charset=UTF-8'); 10 11$cmdfile = get_command_filename (session_id ()); 12$replyfile = get_reply_filename (session_id ()); 13 14@unlink ($cmdfile); 15@unlink ($replyfile); 16 17/* all cleaned */ 18$reply = new SimpleXMLElement("<reply></reply>"); 19$reply->addChild ("status", "OK"); 20echo gda_add_hash ($init_shared, $reply->asXml()); 21session_destroy (); 22 23?> 24