Class wwProcess

Handling requests and serving as the developer's entry point for Web requests. Most of your Web interface coding will occur at this class level.

The wwProcess class is the heart of Web Connection from the developer's point of view. This class serves as your code entry point where custom logic occurs. Each request in your Web application maps to a method in a wwProcess subclass. To add new functionality you simply add a method to your implementation of the process class. The simplest implementation looks like this:

foxpro
foxpro
************************************************************* DEFINE CLASS YourProcess AS WWC_PROCESS ************************************************************* ********************************************************************* FUNCTION HelloWorld() ********************* THIS.StandardPage("Hello World from the " + THIS.Class + " process",; "If you got here, everything should be working fine. The time is: " + TIME()) ENDFUNC * EOF HelloWorld ********************************************************************* FUNCTION QuickData() ******************** IF !USED('tt_cust') USE (THIS.cAppStartPath + "tt_cust") ENDIF Response.HTMLHeader("Customer List") Response.Write("Filename: " + DBF() ) Response.ShowCursor() Response.HTMLFooter() ENDFUNC ENDDEFINE

which can be accessed with a URL like this:

Full Url Syntax

undefined
undefined
wc.wc?YourProcess~HelloWorld

Script Map syntax(where wc.dll is mapped to .YP)

undefined
undefined
HelloWorld.yp

Each additional method you add can be referenced in the same manner. Note that in the above StandardPage() is quick method that creates a fully self contained HTML page. For a more customized page you can use the wwResponse object (THIS.oResponse.Write() for example) to create programmatic output or expand template/script pages using the ExpandTemplate/ExpandScript methods of the wwResponse object.

The easiest way to create a new process class is to use the New Process Wizard from the Web Connection Management Console, which hooks up new process entries to the mainline and creates a skeleton class that you can simply start adding methods to.

Exposed generic objects

wwProcess exposes several objects as PRIVATE variables for easier reference:
  • Request
    This object is mapped to wwProcess::oRequest.

  • Response
    This object is mapped to wwProcess::oResponse

  • Server
    This object is mapped to wwProcess::oServer

  • Process
    The wwProcess object that is running the current request. In code this would be referenced as THIS, but in script and templates that value is not valid - use Process instead.

  • Session
    The wwSession object if you created one. This maps to wwProcess::oSession, and is only valid if you either call InitSession or manually create a session and assign it to this property. Otherwise the value is .NULL..

These objects are available everywhere in your applications since they sit at the top of the call stack when your code gets called. This means these objects are in scope in your request methods, as well as further down in your business objects. They are also in scope in in Script and Template files where you can do things like the following:

undefined
undefined
<%= Request.GetBrowser() %>

Class Members

MemberDescription
OnAuthenticateUser This method/event is called when a user actually logs in with a username and password. The method receives a username and password and optionally an error message string by reference. This method…
OnAuthenticated Event called after a user has been authenticated. Use this method to retrieve values from Session() and store to process properties. The following example demonstrates in a Process…
OnCheckForAuthentication Checks to see if a user is logged in when running in **UserSecurity** authentication mode. Use this method if you just want to check if a user is logged in, without forcing them to actually login.…
OnLogout Hook method that is called after a user has been logged out with a call to `Authenticate("LOGOUT")`. This functionality allows you to hook up additional logic to clear session values or other…
OnShowAuthenticationForm Event that is fired when an authentication form should be displayed to prompt for login information. Hook this method to override the behavior of the user interface. The form displayed should have…
OnError Occurs when an error occurs in the Web Connection Process handling and Server.lDebugMode is set to .T. This method is the core error handler in Web Connection that gets fired when any error in…
OnProcessInit The OnProcessInit method is a hook that can be used to initialize a process class. Here you can create custom objects, run additional configuration tasks that apply to every request that hits this…
OnProcessComplete This event is fired after the request processing has completed, but before the Process object is disposed and the response is sent back to the client. When this event fires all the intrinsic…
OnRouting This method allows you to add a custom route condition into your process class. It makes it possible to apply custom rules for method or page routing that overrides the default behavior that maps to…
OnUrlRewrite Use this method if you're using[ URL rewriting to create extensionless URLs](VFPS://Topic/_3K812UDQ3). This method can intercept request routing and take action based on the extensionless path…
OnWebSocket Allows you to interact with Web Connection Web Sockets using a custom hybrid message protocol. This method lets you handle Web Socket messages from clients by accessing the `loSocket.oMessage`…
Authenticate Authenticates a user based on the Authentication method specified in the [cAuthentionMode](vfps://Topic/_1P10UWX36). The method handles the entire Web process of Authentication and tracking a user…
o.Authenticate(lcUserName,lcErrorMessage,llNoForcedLogin)
AddAntiForgeryToken Creates an anti-forgery token that prevents cross site scripting attacks. To use embed the code generated by this method into the page like this: ```html ``` which creates a **hidden form field…
o.AddAntiForgeryToken(llAsHtml)
CaptchaImage Dual purpose function that is used to set a CAPTCHA image and then also serve the image to the client. CAPTCHA can be used to validate a request and ensure that a user enters the data as opposed to a…
o.CaptchaImage(lcText,lcFont,lnFontSize)
CheckAntiForgeryToken Used to check an AntiForgeryToken injected into the page via [AddAntiForgeryToken()](vfps://Topic/_3ZA03T1US). Used to prevent Cross-site scripting attacks by preventing remote domain submission…
o.CheckAntiForgeryToken(lnTimeoutSeconds)
WebResource Generic output method can be used to serve embedded resources like related image, css, javascript or other files through the application This routine can be called with a URL like…
o.WebResource()
GetWebResourceUrl Returns a URL to retrieve a Web Resource that is embedded in the application or served by the application dynamically. The URL can be used to embed the resource into the page. WebResources are…
o.GetWebResourceUrl(lcResourceKey)
ErrorMsg This method is a simple way to create a fully self contained HTML page with just a couple of lines of code. This is great for testing output or error messages that let the user know of certain…
o.ErrorMsg(lcHeader, lcBody, lvHeader, lnRefresh, lcRefreshUrl, lcIcon)
GetAppSetting Returns a setting from the application's INI file.
o.GetAppSetting(lcKey,lcSection)
GetUrlBasePath Retrieves the virtual path of the current request. The value is provided with leading and trailing forward slashes. This path is used to resolve paths for…
o.GetUrlBasePath()
GetWCIniSetting This method can be used to read values from the wc.ini file. Note that this method relies on the wcConfig key passed back from the wc.dll request to figure out the location of the INI file. This…
o.GetWCIniSetting(lcKey,lcSection)
InitSession Sessions are used to keep a server side *session* for a particular user. They use a Cookie to track the user, and a database record to store any data you attach to the session. Sessions have a…
o.InitSession(lcSessionCookieName, lnTimeoutSeconds, llPersist, llSecure)
PageHeaderTemplate Renders a standard page header based on the default header template located in `Views\_PageHeaderTemplate.html`.
o.PageHeaderTemplate(lcTitle, lcTemplatePath)
PageTemplate Renders a complete page template into which you can embed HTML template. It uses the template stored at `Views\_PageTemplate.html` to render the default template and you can customize this template
o.PageTemplate(lcTitle,lcContent,lcTemplatePath)
PageFooterTemplate Renders a default footer template that is found in `Views\_PageFooterTemplate.html`.
o.PageFooterTemplate(lcTemplatePath)
ReleaseSession Releases the specified session by removing expiring and clearing the session cookie and deleting the session record.
o.ReleaseSession(lcSessionId)
LogError Method that is used to log an error into the Web Connection Error Log. This method should be called from the OnError event of this class.
o.LogError(loException)
Process Use of this method is deprecated. You should use [OnProcessInit](vfps://Topic/_1LS0UIHYW) instead. The Process method is the core processing method of the wwProcess class that initiates and…
o.Process()
ResolveUrl This method resolves a Url that starts with a generic ~/ prefix and replaces this with the base virtual path of the application. This method is used extensively by the Web Control Page framework to…
o.ResolveUrl()
ResolveServerUrl Resolves a virtual path that includes ~ at the beginning to a fully qualified HTTP url. Use this method to get a fully qualified Web URL when you need to create links for externally sent links like…
o.ResolveServerUrl(lcVirtualUrl, lcPrefix)
ResolvePath Resolves `~/` in a URL like `~/page.wc` or `~/subfolder/page.wc` to a site relative path like `/wconnect/page.wc` or `/wconnect/subfolder.wc`. Using `~/` allows for running a site in a virtual…
o.ResolvePath(lcPath)
SendErrorEmail This method sends email to the assigned administrator that is configured in the Web Connection configuration in `app.ini`. Specifically it uses the various `AdminEmail*` values in the configuration…
o.SendErrorEmail(lcSubject, lcMessage, lcRecipient, lcSender, llForce)
SendAdminEmail Sends an email using the configured Email settings in `.ini` file. You can use this method to easily send emails from your process class code as long as you can use the credentials from from…
o.SendAdminEmail(lcTitle,lcMessage, lcRecipients,lcSender, llHtml,llAsync, @lcRefErrorMessage)
StandardPage This method is identical in behavior to the [ErrorMsg() method](vfps://Topic/wwProcess%3A%3AErrorMsg) and the default implementation simply calls back to the ErrorMsg() method. Please see the…
o.StandardPage(lcHeader, lcBody, lvHeader, lnRefresh, lcRefreshUrl,lcIcon)
cAuthenticationMode The method used to authenticate requests. Supported methods: Basic, UserSecurity, Custom
cAuthenticatedName When authenticated holds the users display name.
cAuthenticatedUser The authenticated user id after the user has been authenticated by either a success call to Authenticate() or OnCheckForAuthentication().
cAuthenticationUserSecurityClass The class used for Authentication when the [cAuthenticationMode](vfps://Topic/_S8X02FE4U) is set to *UserSecurity*.
cAuthenticationUserSecurityKey The session key that is used to hold the UserSecurity authentication value. Defaults to: _LoginName
cAuthenticationUserMessage Message displayed on the Authentication dialog for the user when cAuthenticationMode is *UserSecurity*.
lIsAuthenticated Determines if the current user has been authenticated after a call to **Authenticate()** or **OnCheckForAuthentication()**. Determines if the current request has been successfully authenticated and…
cSessionKey The name of the Session Cookie used for this application. This is the default Session value. This value defaults to the WWWC_DEFAULT_SESSIONCOOKIE_NAME defined in wconnect.h. It's recommended that…
cUrlBasePath The Web Application Virtual Path that marks the base path of this application. This path is used internally by ResolveUrl() to define the base path for a URL and the resolving of the ~ character in a…
cErrorTemplate This method allows overriding the default error display page using a template page called through ExpandTemplate. If set specifies a full physical disk path to a page that is used for ErrorMsg and…
cMethodExecutionExclusions Allows exluding of class methods that are executed as methods on the process class. This allows executing of script pages even if a matching method exists on the wwProcess subclass. This method is…
lEnableSessionState Turns on Session Handling for this request. This code eliminates the need to call this.InitSession explicitly and assigning it to the Session object instance. This eliminates the need to call…
lShowRequestData Flag that when set causes the current request data - Form Variables, ServerVariables, Session Vars - to be displayed at the end of the current request. Only applies if the content type of the…
nPageScriptMode Determines the script mode used when a matching method is not found in the class. 1. Template (`ExpandTemplate()`) 2. Web Control Framework Page 3. Script (`ExpandScript()`) The default value is…
nAuthenticationTimeoutSeconds Specifies the Session timeout in minutes when you check the **Remember Me** checkbox on the authentication dialog. The default is 5 days. This value is specified in minutes so you can specify this…
oConfig The oConfig member maps to the server's configuration object for this project. You can access any custom configuration settings you've defined on the object through the following interfaces from…
oRequest Object reference to a ready to use [wwRequest](vfps://Topic/Class%20wwRequest) object, which is used for all inputs of your application. This object is preset by the Init method of this class. When…
oResponse Object reference to a ready to use [wwResponse](vfps://Topic/Class%20wwResponse) object, which is used for all HTTP output. This object is preset by the Init method of this class. When Process or…
oServer Object reference to a ready to use [wwServer](vfps://Topic/Class%20wwServer) object, which is passed down from the wwServer Process method which calls into your wwProcess subclass. This object is…
oSession If you use the [InitSession()](vfps://Topic/wwProcess%3A%3AInitSession) method the oSession object will be loaded for you during the call to that method. Once loaded you can access the oSession…
oUserSecurity If a request Authenticated using cAuthenticationMode of *UserSecurity* you can access the user security object directly from here, with the appropriate user selected. ```foxpro FUNCTION…
oUser If a request Authenticated using cAuthenticationMode of *UserSecurity* you can access the User Security's ```foxpro FUNCTION OnLoad() IF !Process.Authenticate() …

Assembly: wwProcess.prg


See also

Class wwProcess
New Process Wizard

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