Posted to tcl by jdc at Wed Jan 05 14:29:39 GMT 2011view raw

  1. proc /testsuspend { req } {
  2. after 10000 [ list WikitWub::slowrequest $req]
  3. return [Httpd Suspend $req]
  4. }
  5.  
  6. proc slowrequest { req } {
  7. set C {}
  8. append C [<h1> "Download XML-File"]
  9. dict set req -content $C
  10. Httpd Resume [Http Ok $req]
  11. return $req
  12. }
  13.