home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / sambar / _setup.1 / url2file.stm < prev    next >
Text File  |  2001-02-18  |  2KB  |  82 lines

  1. <HTML>
  2. <HEAD>
  3. <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
  4. <META HTTP-EQUIV="Expires" CONTENT="-1">
  5. <TITLE>URL2FILE Generation</TITLE>
  6. </HEAD>
  7. <BODY bgcolor=#ffffff>
  8. <SCRIPT language="JavaScript">
  9. <!--
  10. function Form_Validator(theForm)
  11. {
  12.     if (theForm.fname.value == "")
  13.     {
  14.         alert("Please enter a value for the \"File Name\" field.");
  15.         theForm.fname.focus();
  16.         return (false);
  17.     }
  18.  
  19.     if (theForm.url.value == "")
  20.     {
  21.         alert("Please enter a value for the \"URL\" field.");
  22.         theForm.url.focus();
  23.         return (false);
  24.     }
  25. }
  26. //-->
  27. </SCRIPT>
  28.  
  29. <A HREF="/sysadmin/index.stm" TARGET=_top>
  30. <IMG border=0 ALIGN=left SRC="/sysimage/system/console.gif"></A>
  31. <CENTER><FONT SIZE=6>URL2FILE Generation</FONT>
  32. </CENTER>
  33. <BR>
  34. <BR>
  35. The <B><CODE>url2file</CODE></B> RPC process the URL request and
  36. writes the output to the file specified.  This mechanism can be useful
  37. in running reports periodically from a CGI or RDBMS script and generating
  38. a static HTML file.   See the <A HREF="/syshelp/sched.htm">Scheduler</A>
  39. documentation for examples of how to use the <CODE>url2file</CODE>
  40. RPC to periodically regerate dynamic content;  once generated, the
  41. HTML page can even be uploaded to another (production) HTTP server or 
  42. mailed out as an attachment.
  43. <BR>
  44. <BR>
  45. <FORM METHOD=POST ACTION="/session/url2file" TARGET=_top onsubmit="return Form_Validator(this)">
  46. <INPUT TYPE=hidden NAME="RCpage" VALUE="/sysadmin/reports/reports.stm">
  47.  
  48. <TABLE border=0 cellspacing=20>
  49.  
  50. <TR valign=top><TD width=20%><FONT SIZE=+1>URL</FONT>
  51. <BR>
  52. <INPUT TYPE=text NAME="url" SIZE=30>
  53. </TD>
  54. <TD>The URL to execute.  The URL must begin with a slash and
  55. appear as it would in the HTTP request
  56. (i.e. <I>/samples/inline.stm</I>  or  <I>/cgi-bin/dumpenv?foo=bar&x=y</I>).
  57. </TD></TR>
  58.  
  59. <TR valign=top><TD width=20%><FONT SIZE=+1>File Name</FONT>
  60. <BR>
  61. <INPUT TYPE=text NAME="fname" SIZE=30>
  62. </TD>
  63. <TD>The file to write the URL output to.  If not
  64. preceeded by a drive letter (i.e. d:\windir), this directory is assumed
  65. to be relative to the installation directory of the Sambar Server
  66. (<RCErootdir>).
  67. </TD></TR>
  68.  
  69. </TABLE>
  70. <P>
  71. <CENTER>
  72. <HR>
  73. <INPUT TYPE=submit VALUE="Generate File">
  74. </FORM>
  75. <P>
  76. <HR>
  77. </CENTER>
  78. <BR>
  79. <A HREF="/"><IMG border=0 SRC="/sysimage/system/powerby.gif"></A>
  80. </BODY>
  81. </HTML>
  82.