Class wwPageResponse

The wwPageResponse class is Web Connection's default Response class that replaces the original wwResponse class. This class has a more modern and leaner interface using standard mechanisms for setting the ContentType, adding headers, setting cookies, adding authentication and of course writing output. This new response class is a memory only class as it can set and update headers at any time during the Request lifetime.

At the lowest level the Write() method is used to generate output. You can use the ContentType property to set the content type for the request - things like text/hml (default) or application/json for example. You can use AppendHeader() to add any HTTP header to the response and AddCookie() to add a cookie. DownloadFile() and TransmitFile() let you efficiently serve content from disk.

Higher level methods include ExpandScript() and ExpandTemplate() to parse FoxPro code and expressions inside of HTML markup templates.

This class generates string based output that can be collected using the RenderHttpHeader() and Render() methods which return the header and body output respectively. Note that you can use wwPageResponse easily outside of Web Connection to build up HTTP responses.

Output of this class is limited to 16 megabytes due to FoxPro's string length limitations. You can use TransmitFile() or DownloadFile() to send larger content to file and then serve the file from disk over HTTP which allows for larger files and responses to be returned.

wwPageResponse in wwProcess Classes

wwProcess uses the wwPageResponse class to generate request HTTP output. wwPageResponse is this the default Response object which is equivalent to the following in the class header of your Process class:

foxpro
foxpro
cResponseClass = "wwPageRepsonse"

Backwards Compatibility with wwPageResponse40

Web Connection 6.0 and later removes many legacy features that existed on the original wwResponse class which may break old applications that are upgraded. Many of these legacy functions dealt with custom headers via a clumsy function and a number of output generation routines for form controls and various high level HTML constructs like ShowCursor() and DbfPopup(). All of this functionality is now available in more modular fashion in other places in the framework. Header manipuluation has been moved to Response.AppendHeader(), Authentication() and AddCookie(), while most of the HTML generation routines can now be found in much more flexible helpers in wwHtmlHelpers.

While we recommend you replace any legacy functionality with new features for consistency and much cleaner code, you can fall back to the wwPageResponse40 class which includes all the legacy features. To use this class simply change the wwProcess::cResponseClass in your custom Process class:

foxpro
foxpro

cResponseClass = "wwPageRepsonse40"

foxpro
foxpro
> > This class should allow existing applications to use the new Page class functionality without any major changes.

Remarks

Any ~/ virtual relative paths in the final output are automatically replaced to use the Process.GetUrlBasePath() value. So any reference of < script src="~/scripts/jquery.js > fixes up to the proper virtual path like: < script src="/wconnect/scripts/jquery.js" >.

Class Members

MemberDescription
Authentication Generic, self-contained response for Authentication (HTTP 401 Status) by the server. By default this creates a bare `Status 401` request without any special protocol headers which forces the Web…
o.Authentication(tcErrorText, llBasicAuth, llWindowsAuth)
AddCacheHeader Adds an HTTP header that provides for Maximum Caching Capabilities
o.AddCacheHeader(lnExpirationSeconds)
AddCookie Adds a cookie to the current Response headers. Cookies are used to store small pieces of persistent information for the server to remember users by. Typically these values should be kept very small…
o.AddCookie(toCookie | tcCookie,tcValue, tcPath,tcExpire, tlHttpOnly, tlSecure)
DocHeader Creates an HTML document header, section and tag. **Example:** This FoxPro code: ```foxpro Response.DocHeader("Hello World","css/westwind.css,css/myapp.css") ``` creates the following HTML…
o.DocHeader(lcTitle, lcStyleSheets, lcHeaderItems, llNoOutput)
DocFooter Writes out the and tags at the end of an HTML page. Optionally allows to write out a block of HTML prior to these tags.
o.DocFooter(lcHtml, llNoOutput)
AddForceReload Adds maximum Cache Expiration headers to the current HTTP request. Essentially this forces the request to always be reloaded rather than cached.
o.AddForceReload()
AppendHeader Adds an HTTP Header to the current response. Essentially the same as `Response.Headers.Add()`, but this method is consistent with ASP.NET and shows up in IntelliSense.
o.AppendHeader(lcHeaderKey,lcHeaderValue)
BinaryWrite Same as Write() but provided for ASP.NET compatibility.
o.BinaryWrite(lcText)
Clear Clears the content of the current Response output.
o.Clear()
DownloadFile Downloads a file directly from disk to the client and displays it on the client using FileOpen dialog rather than opening in the browser. This function specifically provides a file name to the…
o.DownloadFile(lcFileName, lcContentType, lcFileDisplayName)
End Ends the current response. Any further output send to the Response object is ignored.
o.End()
ExpandPage Executes a Web Control Framework page by providing a physical path to the page allowing for parsing, compiling and running the page. This method can be used to call any Web Control Framework Page…
o.ExpandPage(lcPhysicalPath, lnPageParseMode)
ExpandScript The ExpandScript method method is used to expand script pages that contain FoxPro expressions and Code blocks using Active Server like syntax. The method generates a fully self contained HTML…
o.ExpandScript(tcPageName, tnMode, tvContentType, tlReturnAsString)
ExpandTemplate The ExpandTemplate method is used to expand template pages that contain FoxPro expressions using Active Server like syntax using `` and `` syntax inside of HTML documents. The method generates a…
o.ExpandTemplate(tcPageName, tcContentType, tlTemplateString, tlReturnAsString)
FastWrite Direct write to the output stream. This method directly writes into the response stream and bypasses any checks and flags. So it doesn't check for the ResponseEnded flag for example.
o.FastWrite(lcText)
Redirect HTTP Redirection allows you redirect the current request to another URL. A common scenario is for login operations where the user is trying to access functionality before he's logged in. When the…
o.Redirect(lcUrl,llPermanent)
Render This method is called to return the output of the Response object. It combines the headers and the body together and returns the entire response.
o.Render()
TransmitFile Allows sending large files directly from disk, bypassing FoxPro processing and instead directly serving the file very efficiently. By doing so you can easily send very large files and bypass FoxPro's…
o.TransmitFile(lcFileName, lcContentType, lcFileDisplayName)
Write Raw HTTP output function. Writes directly to the Response stream/string. This method is the lowest level method of the Response object and is used to write output directly into the stream.
o.Write(lcText, llNoOutput)
WriteFullResponse Writes full response content into the Response output, replacing any existing output.
o.WriteFullResponse(lcText, llNoOutput)
ContentType Sets the content type for the current HTTP response. This value defaults to text/html if not set. Special values that can be set: **NONE** No header is created. **FORCE RELOAD** The header is…
Encoding Sets the content encoding for the page for text content. By default no encoding is applied which means you are responsible for appropriately setting the headers and converting the…
Cookies Cookies collection that contains multiple cookies that are set for the current request. The cookies are written at the end when the headers are created and written. The cookies collection consists…
Expires The number of minutes before the page is expired. -1 can be used to force the content to expire immediately.
GZipCompression If set to .T. automatically encodes the Response output to GZip compressed format. When set Web Connection automatically checks whether the client supports GZip compression and only compresses…
Headers A collection of individual HTTP headers that are to be added to the request header. The Headers of the Response can be set at any time during the request as they are cached and written at the end of…
RawHeaders This is the low level string that is used to hold any RAW headers you want to add to a request. This is an override to Headers.Add() to allow for any headers or content that doesn't follow the…
ResponseEnded Set to turn off output that follows called by the Write method. This flag is set by Response.End() so you usually should not have to set this explicitly. However, you can use it to check whether the…
Status Allows you to specify the Response Status Code. The status code is the status number and message that follows the HTTP protocol. **Examples:** ```foxpro Response.Status = "200 OK" Response.Status =…

Assembly: wwPageResponse.prg



© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic