go to post Andy Stobirski · Jun 30 I've found out what I need to do with the following link, a section titled "Predicate Conditions and Streams" from the page "Storing and Using Stream Data (BLOBs and CLOBs)" https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...
go to post Andy Stobirski · May 19 I solved it. I changed to OnPage() method to use a %Stream.FileCharacter as follows: ClassMethod OnPage() As %Status { set fs = ##class(%Stream.FileCharacter).%New() set fs.Filename = %request.Get("filepath") do fs.OutputToDevice() quit $$$OK }
go to post
I've found out what I need to do with the following link, a section titled "Predicate Conditions and Streams" from the page "Storing and Using Stream Data (BLOBs and CLOBs)"
https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...
go to post
I solved it.
I changed to OnPage() method to use a %Stream.FileCharacter as follows:
ClassMethod OnPage() As %Status { set fs = ##class(%Stream.FileCharacter).%New() set fs.Filename = %request.Get("filepath") do fs.OutputToDevice() quit $$$OK }