SAS/IntrNet 1.2: Xplore |
1. |
If you install a copy of the Xplore sample application at your site,
you must ensure that the parameters inside
Xplore's main HTML file
( |
2. |
To enable Xplore to display thin-client graphics, you must also modify the
configuration file for the Application Broker ( |
3. |
To run Xplore, point your browser at the http://yoursrv/sasweb/xplore where |
The xplibs.html
or xplibs.htm
file is located on your Web server in
a directory that you created when you installed the Application Broker.
You can modify the values for the following
parameters. Do not modify any of the
other parameters in the file.
You must set the following parameters in order to run Xplore:
brokername = '/cgi-bin/broker'
/cgi-bin/broker
to the pathname for your Application
Broker CGI code. The sample value above
specifies the UNIX name for the Application Broker program.
If your Application Broker code is located in a Windows environment, then
use broker.exe
instead of broker
(for example,
brokername='/cgi-bin/broker.exe'
).
servicename = 'default'
default
is the default service that is defined for the
Application Server. Change this value only if you define another
service for the Application Server.
xplorelocation = 'sample.websamp'
sample.websamp
library.
If you do not want to use an optional parameter,
then set the parameter value to ' '
.
debugvalue = '2'
bgtype = 'COLOR'
COLOR
. To specify
that the background is an image, specify a value of IMAGE
.
bg = '%23ffffe7'
Specify a background color if the value of the
bgtype
parameter is COLOR
. Specify the
hexadecimal value of the color, and precede it with an NCR code of
%23
(the NCR code for the pound sign (#)). For an example,
see the default value for the bg
parameter.
Specify a URL for
the background image if the value of bgtype
is
IMAGE
.
giflocation = ' '
xplibs.html
or xplibs.htm
file.memtypes = new Array()
Array ()
), then all member types are included. If
you specify specific member types (for example,
Array ('data','view')
), then only members of
the specified types are included.include = new Array()
Array ()
), then all libraries are included
except for the libraries that are
specified by the exclude
parameter. If
you specify specific libraries (for example,
Array ('sasuser')
), then only those libraries
are included.
Notes:
WORK
library.
include
parameter if you use the exclude
parameter.
exclude = new Array('sashelp')
Array ()
), then no libraries are excluded. The default
value for this parameter excludes the SASHELP
library.
Note: You cannot use the exclude
parameter if you use the include
parameter.
To enable Xplore to display thin-client graphics
(generated by Graph Applet), you must set the
macro variable _grfaplt
to
the location of Graph Applet's archive file (GraphApp.jar
).
To set this variable, you must modify the broker.cfg
file that comes with the Application Broker.
broker.cfg
:
Set _grfaplt http://web_server_name/sasweb/graph/GraphApp.jar
where web_server_name
is the host name of your
Web server.
broker.cfg
,
within the definition of the service for which
you are setting the variable:
ServiceSet _grfaplt http://web_server_name/sasweb/graph/GraphApp.jar
where web_server_name
is the host name of your
Web server.
SAS/IntrNet 1.2: Xplore |