2.2.1.2.31 fileName

The fileName element specifies a file name that is used when the form file is submitted using the WebDAV data adapter. The form file MUST be submitted as a file with the specified name. If the specified file name does not include a file extension, the extension ".xml" MUST be appended.

Parent Elements

davAdapter

Attributes:

value: This attribute specifies a file name or an XPath expression that evaluates to a file name. If it is set as an XPath expression, the valueType attribute MUST be set to "expression". If it is set to a file name, the valueType attribute MUST be set to "literal".

valueType: This attribute specifies how the value of the value attribute MUST be interpreted. If this attribute is set to "expression", the value of the value attribute MUST be evaluated as an XPath expression. If this attribute is set to "literal", the value of the value attribute MUST be evaluated as a literal string.

The following W3C XML Schema ([XMLSCHEMA1] section 2.1) fragment specifies the contents of this element.

 <xsd:element name="fileName">
   <xsd:complexType>
     <xsd:attribute name="value" type="xsd:string" use="required"/>
     <xsd:attribute name="valueType" type="xsf:xdExpressionLiteral" use="optional"/>
   </xsd:complexType>
 </xsd:element>