/**
  * Create a new callback server.
  * @param string server URI.
  */
 public function __construct($uri = null)
 {
     parent::__construct($uri);
     $this->posts = new TCollection();
     $this->posts->add(TPage::INPUT_VIEWSTATE);
     $this->response = new TCallbackResponse();
 }