Creating a Static Web Page

Note

In your development or production environment, place your static HTML pages in a location where they can be read by the HTTP server process and where they are secure from unauthorized access.

To create the sample static web page for your hello.aef script, do the following:

Procedure


Step 1

Use a text or web-page editor to enter the following HTML source code:


<html>
<body>
<form action="/greeting" method=GET>
What is your name <input type="text" name="name">
<input type="submit">
</form>
</body>
</html>
Step 2

Save the file as welcome.html and upload it to the Document Management using Unified CCX Web Administration by choosing Applications > Document Management > Default > webapps > ROOT.This location with respect to installationdirectory is /webapps/ROOT.

Step 3

Test the HTML page by accessing it as http://<ipaddress>:9080/welocme.html in different web browsers.

This sample HTML code generates the web page as shown below, which prompts a user for a name.

Static HTML Page with User Prompt

You are now ready to create a dynamic web page.