Posts:
Replies:
Andy Stobirski · May 23
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
}
Andy Stobirski · May 19
I solved it.
I changed to OnPage() method to use a
ClassMethod OnPage() As %Status
{
set fs = ##class(%Stream.FileCharacter).%New()
set fs.Filename = %request.Get("filepath")
do fs.OutputToDevice()
quit $$$OK
}
Followers:
Andy has no followers yet.
Following:
Andy has not followed anybody yet.
Global Masters badges:
Andy has no Global Masters badges yet.
That's perfect. Thanks for taking the time to reply.