Custom Web Publishing with XML and XSLT

Table Of Contents
54 FileMaker Server Custom Web Publishing with XML and XSLT
1 If a container field stores a file reference instead of an actual object, then the container field’s <data>
element contains a relative path that refers to the object. For example, if logo.jpg was in the Web folder
inside the FileMaker Pro folder, the container field’s <data> element is:
<data>/images/logo.jpg</data>
Note The referenced container object must be stored in the FileMaker Pro Web folder when the record is
created or edited, and then copied or moved to a folder with the same relative location in the root folder of
the web server software. See
“About publishing the contents of container fields on the web” on page 21.
1 If a container field is empty, then the container field’s <data> element is empty.
Using query strings in FileMaker XSLT stylesheets
When using a query string in a URL or in the <?xslt-cwp-query?> processing instruction in a FileMaker XSLT
stylesheet, you can include any of the query commands and parameters that are defined for requesting XML
data from a FileMaker database. See
“Using FileMaker query strings to request XML data” on page 37.
You can also use the following query command and parameters that are defined for use only with FileMaker
XSLT stylesheets.
Specifying an XML grammar for a FileMaker XSLT stylesheet
The recommended XML grammar to use with Custom Web Publishing with XSLT is the fmresultset
grammar, which has been designed for ease of use with XSLT. See
“Using the fmsresultset grammar” on
page 31. You can also use the older FMPXMLRESULT or FMPXMLLAYOUT grammars. To access value lists and
field display information in layouts, you must use the FMPXMLLAYOUT grammar. See “Using other
FileMaker XML grammars” on page 34. You cannot use the FMPDSORESULT grammar with Custom Web
Publishing with XSLT.
To specify the grammar for a FileMaker XSLT stylesheet, use the –grammar query parameter in a URL or
as a statically defined query parameter in the <?xslt-cwp-query?> processing instruction.
For example, in an URL:
http://192.168.123.101/fmi/xsl/my_template/my_stylesheet.xsl?–grammar=fmresultset&–db=mydatabase
&–lay=mylayout&–findall
Use this XSLT
query command or
parameter name To Comment
–grammar Specify the XML grammar for XSLT-CWP requests or
for XSLT stylesheets. See the next section,
“Specifying
an XML grammar for a FileMaker XSLT stylesheet.”
This query parameter is
required in all XSLT requests.
–encoding Specify the text encoding for a request. See “Setting text
encoding for requests” on page 56.
This query parameter is
optional in all XSLT requests.
–process Process a stylesheet without requesting data. See
“Processing XSLT requests that do not query FileMaker
Server” on page 58.
This query command requires
the –grammar query
parameter.
–token Pass values between pages without using sessions or
cookies. See
“Using tokens to pass information between
stylesheets” on page 58.
This query parameter is
optional in all XSLT requests.