AEM 6.4 has reached the end of extended support and this documentation is no longer updated. For further details, see our technical support periods. Find the supported versions here.
The Forms service renders HTML forms in response to an HTTP request from a web browser. When rendering an HTML form, the Forms service can reference a custom CSS file. You can create a custom CSS file to meet your business requirements and reference that CSS file when using the Forms service to render HTML forms.
The Forms service silently parses the custom CSS file. That is, the Forms service does not report errors that may be encountered if the custom CSS file does not comply with CSS standards. In this situation, the Forms service ignores the style and continues with the remaining styles located in the CSS file.
The following list specifies styles that are supported in a custom CSS file:
You can retrieve a sample CSS file by using the FormsIVS application. Upload the form, select it in the Test Form Design page, and click GenerateCSS. You are not required to set the HTML transformation type before clicking the button. Next select save. You can edit this CSS file to meet your business requirements.
Before rendering an HTML form that uses a custom CSS file, it is important that you have a solid understanding of rendering HTML forms. (See Rendering Forms as HTML.)
For more information about the Forms service, see Services Reference for AEM Forms.
To render an HTML form that uses a CSS file, perform the following tasks:
Include project files
Include necessary files in your development project. If you are creating a client application by using Java, include the necessary JAR files. If you are using web services, ensure that you include the proxy files.
Create a Forms Java API object
Before you can programmatically perform an operation supported by the Forms service, you must create a Forms client object.
Reference the CSS file
To render an HTML form that uses a custom CSS file, ensure that you reference an existing CSS file.
Render an HTML form
To render an HTML form, you must specify a form design created in Designer and saved as an XDP file. You must also select an HTML transformation type. For example, you can specify the HTML transformation type that renders a dynamic HTML for Internet Explorer 5.0 or later.
Rendering an HTML form also requires values, such as URI values needed to render other form types.
Write the form data stream to the client web browser
When the Forms service renders an HTML form, it returns a form data stream that you must write to the client web browser to make the HTML form visible to the user.
See also
Render an HTML form that uses a CSS file using the Java API
Including AEM Forms Java library files
Forms Service API Quick Starts
Rendering Interactive PDF Forms
Creating Web Applications that Renders Forms
Render an HTML form that uses a custom CSS file by using the Forms API (Java):
Include project files
Include client JAR files, such as adobe-forms-client.jar, in your Java project’s class path.
Create a Forms Java API object
ServiceClientFactory
object that contains connection properties.FormsServiceClient
object by using its constructor and passing the ServiceClientFactory
object.Reference the CSS file
HTMLRenderSpec
object by using its constructor.HTMLRenderSpec
object’s setCustomCSSURI
method and pass a string value that specifies the location and name of the CSS file.Render an HTML form
Invoke the FormsServiceClient
object’s (Deprecated) (Deprecated) renderHTMLForm
method and pass the following values:
Applications/FormsApplication/1.0/FormsFolder/Loan.xdp
.TransformTo
enum value that specifies the HTML preference type. For example, to render an HTML form that is compatible with dynamic HTML for Internet Explorer 5.0 or later, specify TransformTo.MSDHTML
.com.adobe.idp.Document
object that contains data to merge with the form. If you do not want to merge data, pass an empty com.adobe.idp.Document
object.HTMLRenderSpec
object that stores HTML run-time options.HTTP_USER_AGENT
header value, such as Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
.URLSpec
object that stores URI values required to render an HTML form.java.util.HashMap
object that stores file attachments. This is an optional parameter, and you can specify null
if you do not want to attach files to the form.The (Deprecated) renderHTMLForm
method returns a FormsResult
object that contains a form data stream that must be written to the client web browser.
Write the form data stream to the client web browser
com.adobe.idp.Document
object by invoking the FormsResult
object ‘s getOutputContent
method.com.adobe.idp.Document
object by invoking its getContentType
method.javax.servlet.http.HttpServletResponse
object’s content type by invoking its setContentType
method and passing the content type of the com.adobe.idp.Document
object.javax.servlet.ServletOutputStream
object used to write the form data stream to the client web browser by invoking the javax.servlet.h\ttp.HttpServletResponse
object’s getOutputStream
method.java.io.InputStream
object by invoking the com.adobe.idp.Document
object’s getInputStream
method.InputStream
object’s read
method and passing the byte array as an argument.javax.servlet.ServletOutputStream
object’s write
method to send the form data stream to the client web browser. Pass the byte array to the write
method.See also
Rendering HTML Forms Using Custom CSS Files
Quick Start (SOAP mode): Rendering an HTML form that uses a CSS file using the Java API
Including AEM Forms Java library files
Render an HTML form that uses a custom CSS file by using the Forms API (web service):
Include project files
Create a Forms Java API object
Create a FormsService
object and set authentication values.
Reference the CSS file
HTMLRenderSpec
object by using its constructor.HTMLRenderSpec
object’s setCustomCSSURI
method and pass a string value that specifies the location and name of the CSS file.Render an HTML form
Invoke the FormsService
object’s (Deprecated) renderHTMLForm
method and pass the following values:
Applications/FormsApplication/1.0/FormsFolder/Loan.xdp
.TransformTo
enum value that specifies the HTML preference type. For example, to render an HTML form that is compatible with dynamic HTML for Internet Explorer 5.0 or later, specify TransformTo.MSDHTML
.BLOB
object that contains data to merge with the form. If you do not want to merge data, pass null
. (See Prepopulating Forms with Flowable Layouts.)HTMLRenderSpec
object that stores HTML run-time options.HTTP_USER_AGENT
header value, such as Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
. You can pass an empty string if you do not want to set this value.URLSpec
object that stores URI values required to render an HTML form.java.util.HashMap
object that stores file attachments. This is an optional parameter, and you can specify null
if you do not want to attach files to the form.com.adobe.idp.services.holders.BLOBHolder
object that is populated by the (Deprecated) renderHTMLForm
method. This parameter value stores the rendered form.com.adobe.idp.services.holders.BLOBHolder
object that is populated by the (Deprecated) renderHTMLForm
method. This parameter stores the output XML data.javax.xml.rpc.holders.LongHolder
object that is populated by the (Deprecated) renderHTMLForm
method. This argument stores the number of pages in the form.javax.xml.rpc.holders.StringHolder
object that is populated by the (Deprecated) renderHTMLForm
method. This argument stores the locale value.javax.xml.rpc.holders.StringHolder
object that is populated by the (Deprecated) renderHTMLForm
method. This argument stores the HTML rendering value that is used.com.adobe.idp.services.holders.FormsResultHolder
object that will contain the results of this operation.The (Deprecated) renderHTMLForm
method populates the com.adobe.idp.services.holders.FormsResultHolder
object that is passed as the last argument value with a form data stream that must be written to the client web browser.
Write the form data stream to the client web browser
FormResult
object by getting the value of the com.adobe.idp.services.holders.FormsResultHolder
object’s value
data member.BLOB
object that contains form data by invoking the FormsResult
object’s getOutputContent
method.BLOB
object by invoking its getContentType
method.javax.servlet.http.HttpServletResponse
object’s content type by invoking its setContentType
method and passing the content type of the BLOB
object.javax.servlet.ServletOutputStream
object used to write the form data stream to the client web browser by invoking the javax.servlet.http.HttpServletResponse
object’s getOutputStream
method.BLOB
object’s getBinaryData
method. This task assigns the content of the FormsResult
object to the byte array.javax.servlet.http.HttpServletResponse
object’s write
method to send the form data stream to the client web browser. Pass the byte array to the write
method.See also
Rendering HTML Forms Using Custom CSS Files
Invoking AEM Forms using Base64 encoding