|
Macros for SAS Application Developers
https://github.com/sasjs/core |
Create a web service in SAS 9, Viya or SASjs. More...
Go to the source code of this file.
Creates a SASJS ready Stored Process in SAS 9, a Job Execution Service in SAS Viya, or a Stored Program on SASjs Server - depending on the executing environment.
Usage:
%* compile macros ;
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
%inc mc;
%* write some code;
filename ft15f001 temp;
parmcards4;
%* fetch any data from frontend ;
%webout(FETCH)
data example1 example2;
set sashelp.class;
run;
%* send data back;
%webout(OPEN)
%webout(ARR,example1) * Array format, fast, suitable for large tables ;
%webout(OBJ,example2) * Object format, easier to work with ;
%webout(CLOSE)
;;;;
%* create the service (including webout macro and dependencies);
%mx_createwebservice(path=/Public/app/common,name=appInit,replace=YES)
| [in,out] | path= | The full folder path where the service will be created |
| [in,out] | name= | Service name. Avoid spaces. |
| [in] | desc= | The description of the service (optional) |
| [in] | precode= | Space separated list of filerefs, pointing to the code that needs to be attached to the beginning of the service (optional) |
| [in] | code= | (ft15f001) Space seperated fileref(s) of the actual code to be added |
| [in] | replace= | (YES) Select YES to replace any existing service in that location |
| [in] | mDebug= | (0) set to 1 to show debug messages in the log |
Definition in file mx_createwebservice.sas.