home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 November / PCWorld_2000-11_cd.bin / Komunik / sambar444 / _SETUP.1 / url2file.stm < prev    next >
Text File  |  1999-09-13  |  2KB  |  81 lines

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