Testing the SPD Server Quickstart Installation

Use SAS to connect to SPD Server and to verify your installation.
In the SAS Program Editor, submit and run the following:
%let spdshost=<hostname where SPD Server is running>;
%let spdsport=<your SPD Data Server port>;

libname test sasspds 'tmp' 
  host="&spdshost"
  serv="&spdsport" 
  user="anonymous";

libname testrl sasspds 'tmp' 
  host="&spdshost" 
  serv="&spdsport" 
  user="anonymous"
  locking=yes;

/* Submit the LIBNAME statements */

/* Open the program verify.sas   */
/* from InstallDir\samples\ dir  */
/* and submit it to verify data  */
/* set access to SPD Server.     */

/* Open the program verptsql.sas */
/* from InstallDir\samples\ dir  */
/* and submit it to verify SQL   */
/* access to SPD Server.         */

: