Return to 4th Dimension's Design environment. Bring up the Explorer, click on the Methods tab, and expand Database Methods. Highlight the "On Web Authentication" method, and click the Edit button. Alternatively, you can just double-click "On Web Authentication" to edit it. Again, you will probably be asked if you want a Listing or a Flowchart. Always choose Listing.

Please type (or copy-and-paste) the following text into On Web Authentication:
C_TEXT($1;$2;$3;$4;$5;$6)
C_BOOLEAN($0)
$0:=True

Your On Web Authenication method should now look like the one in the picture above.
So what is the On Web Authentication method? This is a method (script, program) that 4D will execute before it executes any other method that it has been requested to execute. It allows you to check to see if the request to execute the method is valid or not. On Web Authentication is actually a function; that is, it returns a boolean value (in $0) of True or False. True if it is OK to go ahead and execute the requested method, or False if it is not OK. We will examine the workings of On Web Authentication in greater detail later in the tutorial.
Please close the On Web Authentication method before proceeding. This will automatically save it.