Class wwResponse

Providing all HTTP output to your HTTP application. This class abstracts the output generation for the various messaging mechanisms (File, COM, ASP) and provides full control over all aspects of HTTP generation.

The Response object is very flexible in that it is designed to handle multiple different output sources via special subclasses that implement only a few methods to handle the physical output generation logistics. Web Connection implements the following:

markdown
markdown
wwResponse wwResponseFile wwResponseString wwASPResponse

The lower classes implement only a select few low level methods (Write, FastSend etc.), while the core functionality is implemented at the wwResponse level. The Web Connection framework determines which of these subclasses of the wwResponse object to implement based on the request mode of the current request.

Response Lifetime

The Response object is created whenever a wwProcess object is created, which occurs on every hit. Web Connection calls into your custom process class and passes in the Request object as a startup parameter. The request object provides the context required to determine which mechanism (File, String, ASP) is in use and based on that wwProcess creates an instance of the wwResponseXXXX object.

This newly created object becomes your main output mechanism and is passed to your code as a surrogate object of the wwProcess class as wwProcess::oResponse, or simply as a PRIVATE variable called Response(if you use the default processing of the Process method).

Functionality

The Response object is very powerful in the features it provides your application with. At the lowest level it provides the Write() method which is used for all output travelling back to the Web server. Write is the low level that all other methods in the wwResponse object call to get output sent to the server. These other methods simply create more complex HTTP output and eventually call Write() to submit the output into the HTTP output stream.

Write and its slightly more efficient FastSend companion method are the low level functions, but wwResponse also provides a number of high level features:

  • ExpandTemplate and ExpandScript can evaluate scripted HTML pages containing Visual FoxPro code and expressions.
  • ShowCursor can render a VFP cursor/table as an HTML table with a single line of code
  • Various FormXXXX methods can generate HTML input fields with a couple of parameter values.
  • Redirect allows you to send an HTTP request to another page.
  • Authenticate lets you bring up the browser's login dialog.
  • ContentTypeHeader lets you configure and manage the HTTP header directly.
  • StandardPage lets you generate a self-contained HTML page with one line of code.

HTTP Headers

Every response should have an HTTP header attached to it. By default the Response object creates a standard HTML HTTP header using a content type of text/html which is generated through Response.ContentTypeHeader(), which is implicitly called from many methods such as HTMLHeader, HTMLHeaderEx, ExpandTemplate and ExpandScript. To create headers manually use code like the following:
lcXML = 

Headers are used for custom HTTP behaviors such as content expiration, content description, cookie, security and much more. Custom headers require that you use the wwHTTPHeader object to create the header. You can then either output this header directly or pass it to one of the highlevel methods as a parameter. This example manually creates output:

oHeader = CREATE('wwHTTPHeader")
oHeader.DefaultHeader()
oHeader.AddCookie("Name","Rick")
oHeader.AddForceReload() && ExpireContent immediately

Response.Write( oHeader.GetOutput() )  && Write the header into the Response stream
Response.Write( ... content here... )

If you use one of the high level methods you'd pass the oHeader object as a parameter:

Response.HTMLHeader("Hello World","Hello World",,oHeader)

SELECT * FROM TT_Cust into cursor TQuery
Response.ShowCursor()

For more info see the wwHTTPheader documentation.

The llNoOutput parameter

The Write method is implemented like this:
wwResponse::Write(lcText,llNoOutput)

The first parameter is the text to send. The second parameter is very important, but optional and allows you to specify whether the text is sent into the HTTP output stream or returned to you as a string! Most other wwResponse object methods also include this same parameter, which allows most methods to be used as string generators rather than outputting to the HTTP stream. This also allows sophisticated nesting of method calls which would otherwise not be possible - a compound method would collect multiple HTML strings into a single string before actually sending the output to the HTTP stream.

You'll see the llNoOutput parameter in most of the wwResponse methods and the behavior is the same for all of them: If you pass it in as .T. the result is returned to you as a string and the input is not actually sent to the HTTP output source.

SubClassing

You'll undoubtably will want to subclass the wwResponse class. Note that you can also subclass the lower level methods, but it's not recommended that you do this since those are considered system classes.

When you subclass wwResponse with your own class you need to make some additional configuration settings to make sure the wwResponseFile/String/ASP classes - which are the ultimately implemented classes that the framework uses - know to use your new subclass. To do this you have to make a change in WCONNECT.H. All the Web Connection classes are created using DEFINE's that identify each class. For the wwResponse class the line is:

#DEFINE WWC_RESPONSE			wwResponse

and you need to replace the wwResponse value with the name of your subclass.

#DEFINE WWC_RESPONSE			wwCustomResponse

Once you do this, make sure you recompile your project or all PRG/VCX files. Once you do the wwResponseFile/String/ASP classes will now use your subclass.

Class Members

MemberDescription
Write The Write and FastSend methods are used for all output that is sent to the HTTP output stream. They are the low level methods through which all output from the wwResponse object flows. All other…
o.Write(lcText,llNoOutput)
FastWrite This method is very similar to the [Write](vfps://Topic/wwResponse%3A%3AWrite) method, but is more efficient as it doesn't perform any error checking on the string and doesn't handle the lNoOutput…
o.FastWrite(lcText,llNotUsed)
GetOutput This method retrieves the currently accumulated HTTP stream output as a string and clears the output stream with a call to the [Clear()](vfps://Topic/wwResponse%3A%3AClear) method. This method is…
o.GetOutput(llNoClear)
Clear Clears all current output from the HTTP output stream. The object remains valid, but output has to start over. This method is used internally to clear the output buffers when errors occur - at that…
o.Clear()
authenticate This method is used to perform a request for Web server Basic Authentication to occur. When this method is called the browser login dialog box is popped up for the user to type in a username and…
o.authenticate(lcRealm, lcErrorMsg, llNoOutput)
contenttypeheader Adds a Content Type header to a request. Use this method to create a default header or one of the common defaults. For more complex header use the wwHTTPHeader object instead. What's a content…
o.ContenttypeHeader([loHTTPHeader | lcContentType], llNoOutput)
ContentType Sets the content type of the request for example: text/plain or text/xml. If this value is not set the default content type for a request is always text/html. Note that you should always set a…
TransmitFile This method allows you send large files to the client without having to use Response.Write() to load these files into a string in Visual FoxPro. This method can get around the 16 meg limitation of…
o.TransmitFile(lcFilename,lvHeader)
DownloadFile Downloads a file to the client resulting in a File Download dialog rather than displaying the content inside of the browser. This method is a fully self contained Response action and creates the…
o.DownloadFile(lcFilename,lcContentType,lcFileDisplayName)
ExpandTemplate The ExpandTemplate method is used to expand template pages that contain FoxPro expressions using Active Server like syntax. The method generates a fully self contained HTML page/HTTP output which…
o.ExpandTemplate(lcPageName, lcContentType, llTemplateString, llReturnAsString)
ExpandTemplateToString Renders a template as a string rather than generating into the Response stream as [ExpandTemplate()](VFPS://Topic/_1O80YQ3IK) does. Please see [ExpandTemplate()](VFPS://Topic/_1O80YQ3IK) for more…
o.ExpandTemplateToString(tcScriptPage, tlIsTemplateString)
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, tlRenderAsString)
ExpandScriptToString Renders a script page to string rather than to the Response output stream. Core behavior is the same as [wwPageResponse::ExpandScript](VFPS://Topic/_1VO07HGB0).
o.ExpandScriptToString(tcScriptFile)
HRef This method creates a hyperlink string.
o.href(lcLink,lcText,llNoOutput)
htmlfooter Creates a footer for a page. Creates tags preceeded by option HTML passed as parm. Optionally pass text to display just prior to tags
o.htmlfooter(tcText,tlNoOutPut)
cStyleSheet This property is used to force the HTMLHeader method to use the specified Cascading Style Sheet. Property asks for a URL that points at the CSS file. There are two ways you can use this method: *…
HTMLHeader This method provides a high level HTML header generation routine. By default it creates the following: * HTTP Header * section with a tag * tags * HTML text in a large font of the header text The…
o.HTMLHeader(tcHeader,tcTitle,tcBackground,tcContentType,tlNoOutput)
HTMLHeaderEx This method allows you to create custom HTMLHeader and HTTPHeader objects and pass it to this method for output creation.
o.HTMLHeaderEx(lvHTMLHeader, lvHTTPHeader)
nooutput Turns off all output until the wwResponse object is destroyed. This method is used internally to handle error handling so that when an error occurs and the code continues on through the framework…
o.NoOutput()
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,llNoOutput)
ShowCursor This method allows easy display of an entire table, simply by having a table or cursor selected and calling this method. You can optionally pass an array of headers as well as a title and the option…
oHTML.ShowCursor(@aHeaders, cTitle, lSumNumbers, lNoOutput,cTableTags)
standardpage Creates a standalone HTML page. The page is a fully self contained page that looks like this by default: ![](IMAGES%5CMISC%5CRESPONSESTANDARDPAGE.GIF) You can customize this look by subclassing…
o.StandardPage(cHeader, lcBody, lvHeader,lnRefresh,lcRefreshUrl,llNoOutput)
writememo Writes memo fields to output. Formats carriage returns to and as appropriate.
o.writememo(lcText, llNoOutput)
WriteLn Writes output to the HTTP output stream with trailing carriage returns. This is identical to: Response.Write(tcText + CRLF) but is easier to type and read. Use this for convenience, but keep in…
o.WriteLn(lcText,llNoOutput)
WriteFullResponse Writes a full response into the output stream, and clears any previously written output.
o.WriteFullResponse(lcText, llNoOutput)
FormHeader Creates a tag. Note you're responsible for creating the closing tag at the end of the form.
o.FormHeader(lcAction, lcMethod, lcTarget, lcExtraTags, llNoOutput)
formbutton Creates a button HTML form element.
o.formbutton(lcName, lcCaption, lcType, lnWidth, lcCustomTags, llNoOutput)
formcheckbox Creates an HTML Form Checkbox.
o.formcheckbox(lcName, llValue, lcText, lcCustomTags, llNoOutput)
formhidden Creates a hidden HTML form field.
o.formhidden(lcName, lcValue, llNoOutput)
formradio Create a Radio Button HTML Form Field.
o.formradio(lcName, lcValue, lcText, llSelected, lcCustomTags, llNoOutput)
formtextarea Creates an HTML Form TextArea.
o.formtextarea(lcName, lcValue, lnHeight, lnWidth,lcCustomTags, llNoOutput)
formtextbox Creates an HTML TextBox element.
o.formtextbox(lcName, lcValue, lnWidth, lnMaxWidth, lcCustomTags, llNoOutput)

Assembly: wwResponse.prg, wwFileResponse.prg, wwStringResponse.prg



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