BookmarkSubscribeRSS Feed
Quentin
Super User

Hi,

I'm trying to understand the REPLAY stored process that is used by lightweight sessions.

Inspired by an example in Don Henderson's building Wed Apps for SAS/IntrNet where he writes pdf and rtf output to &_tmpcat, then uses REPLAY in links to let user download the files (p.144), without actually re-running the stored process.

I'm working on 9.3 BI stored process server with streaming results.

I couldn't find much in the docs about the REPLAY stored process to describe how it works, just this bit in Stored Process Developer's Guide:

The image URL in the tag is actually a reference to the SAS Stored Process Web Application that uses the special stored process named REPLAY. The REPLAY stored process takes two parameters, _SESSIONID and ENTRY. _SESSIONID is new, unique value each time the original stored process is executed. ENTRY is the name of a temporary SAS catalog entry that contains the generated image. Image replay uses a special, lightweight version of the stored process sessions feature to hold image files temporarily until the Web browser retrieves them. For more information, see “Using Sessions” on page 43.

You can use the REPLAY stored process to replay entries other than embedded images, such as CSS style sheets, JavaScript include files, PDF files, and HTML or XML files to be displayed in a pop-up window, frame or

The special macro variable _TMPCAT contains the name of the temporary catalog that is used for REPLAY entries. The variable _REPLAY contains the complete URL that is used to reference the REPLAY stored process (except the actual entry name).

Did find some SAS IntrNet docs which describe the replay program (not a STP at that point, I guess):

If you are using the _REPLAY program with Microsoft Office, then you need to build a URL that uses the _OUTPUTAPP= parameter. Supported values for the _OUTPUTAPP= parameter include EXCEL, WORD, and POWERPOINT. For example, if you specify _OUTPUTAPP=EXCEL in the URL, then the content type for the replayed output is application/vnd.ms-excel.

If you need to specify the name of the file that the _REPLAY program returns, use the _CONTDISP parameter in the URL. The value of this parameter is returned as a content-disposition header.

So I'd like to get a sense of what parameters REPLAY takes, and how it works.  If I can get it to trigger a file download dialog box from IE, allowing use to download rtf/pdf/tagsets.excelxp and have the header reflect Word/Acrobat/Excel, I'd be happy. And seems pretty close from just playing a bit.

Or perhaps better than documentation would be if the SAS code behind REPLAY is available somewhere?  If this is really a stored process, then there is SAS code behind, it, right?


Kind Regards,

--Q.

BASUG is hosting free webinars Next up: Mike Sale presenting Data Warehousing with SAS April 10 at noon ET. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.
7 REPLIES 7
boemskats
Lapis Lazuli | Level 10

Hi Quentin,

I've not used that _REPLAY catalog thing, but I often use a slightly simpler method to make datasets/rtfs/workbooks/whatever available as a proper pop-up download in the browser after a STP has finished executing / creating the output.

Have a look at this post:

It works well, you just might have to implement your own cleanup routines to get rid of the packages for download as and when you want to get rid of them.

Hope it helps.

Nik

Quentin
Super User

Thanks Nik,

That's  a nifty approach.  I was thinking my options were to use light weight sessions, real sessions, or just write the reports somewhere and stream them back, as your are doing.  And even if I could get the lightweight sessions working, I don't think I would trust it that much.

But your approach of having the STP call itself recursively in an iframe is nicer than my plan to have the first stored process return an html file with a link that says "download", which when clicked would invoke second stored process that streams the file back to the user.  I guess the recursive part isn't actually essential.  I could have a generic StreamFile stored process called in the iframe, right?  So the key insight is that invoking a secondary stored process in an iframe  is a way to deliver both html file and a file to download when a user submits a STP.

Had spent a while googling stuff like "serve two pages" trying to find a way to return an html file and then a pdf/excel/etc, but didn't come up with much.  So thanks for this approach.  Will be fun to play with.

--Q.

BASUG is hosting free webinars Next up: Mike Sale presenting Data Warehousing with SAS April 10 at noon ET. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.
natechamplin
Fluorite | Level 6

Hi Nik,

 

I'm interested in the the method you described here, but the link to the post is missing. Is it still available at a different link?

 

Nate

boemskats
Lapis Lazuli | Level 10

Just found this message after @JRoman PM'd me to ask me the same thing - sorry.

 

Original message is here.

 

Nik

natechamplin
Fluorite | Level 6
Hi Nik,
Thanks for the link and the post. Your method gives me some really good options for my reports, and the .js static file suggestion should save a lot of work!
Thanks again!
Nathan
boemskats
Lapis Lazuli | Level 10

Yeah, you don't need the recursive part at all - obviously you just have to make sure that your code generates the output file prior to the data step that outputs the html for the iframe, as this is the point where your second stp will be called. Also you'll need to set appropriate MIME content-type headers each time if you're using a generic StreamFile stp to serve up different file types - I think IE8 is particularly picky.

It's pretty cool though - I remember we built a pretty full on file manager using this technique a few years ago...

Quentin
Super User

Nice.  I've already got a %StreamFile macro that sets the content-type headers as I want them, according to the extension of the file being streamed.  I use it in just about all of my stored processes, to enable real-time log checking.   My stored process runs, and writes results to a temp file (typically html/pdf/rtf/xml) in work directory, then I check the log to see if any error messages, and if the log is clean, I call %streamfile to send the file back to _webout.  I blogged about that approach on bi-notes.com (but didn't have it macroized at that point).

So with that, I should be able to make the generic StreamFile stored process pretty quickly.  And will just have to add to it to do the cleanup bit, since that wasn't needed when I was writing the files to WORK directory.

Thanks again.

BASUG is hosting free webinars Next up: Mike Sale presenting Data Warehousing with SAS April 10 at noon ET. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 7 replies
  • 2263 views
  • 6 likes
  • 3 in conversation