Hello,
We have a folder with 500 SHTML files. Each file is for one user.
For example my file is called VDREYM.SHTML
My metauser = vdreym.
I want to include the metauser his SHTML file into a stored process.
But this won't work, also not when I have the direct link to my board.
data _null_;
file _webout;
put '<!--#include file="http://imecwww.imec.be/~osp/fab300/user_monitor_boards/&_metauser.shtml" -->'
;
run;
data _null_;
file _webout;
put '<!--#include file="http://imecwww.imec.be/~osp/fab300/user_monitor_boards/VDREYM.shtml" -->'
;
run;
Hello,
ok the second data _null_ should work. The first one has some issues with the resolving of the macro variable. You will need to swap the single and double quotes otherwise the macro variable will not be resolved - put "<!--#include file='
and also after the &_metauser variable you will need two fullstops, one to mark the end of the macro and one for the filename extension.
is this working with static html outside of the Stored Process web application?
if not then perhaps Server Side Include has not been configured on your application server (JBoss? Tomcat?)
RMP
How can I check this SSI is configured?
I found the following:
data _null_;
file _webout;
put '<!--#echo var="DATE_LOCAL" -->';
run;
But this does not return anything. The source code seems ok:
<!--#echo var="DATE_LOCAL" -->
Sorry this is not my area, but If you do a google search for JBOSS and Server Side Include, then you will get enough information. You need to uncomment a setting in the conf.xml file.
I just checked - http://docs.jboss.org/jbossweb/2.1.x/ssi-howto.html.
Server Side Include is disabled by default on JBoss.
Message was edited by: RMP
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.