To run Rweb gateway, just type the R (or Splus) code you want to execute into the text code window, choose one of Rweb servers, and then click on the Run button. You will get a new html page with the text output of your code followed by the graphical output (if any) from your code.
Below the text code window is the Ex.Data fields where you can enter the URL for a Web-accessible dataset or browse a dataset file on your computer for sending. Either way, the dataset will be read in using read.table
with header=TRUE
and stored in a dataframe called X. The dataframe, X, will then be attach
ed so you can use the variable names.
I have no doubt that all of you will allow everyone to use your Rweb as a public resource because actually you made it accessible from anywhere in the internet.
To deny that your Rweb would be accessed from external clients,
you should check $ENV{'HTTP_REFERER'}
, $ENV{'REMOTE_ADDR'}
, and the other environment variables in your Rweb.cgi script,
or adopt an alternative to block possible access by outsiders, such as using .htaccess
file.