2017-06-22 new func - FILE - send image to default_objects:File or any feature with simpleType of xsd:base64Binary

There is special object for file handling :https://biuro.biall-net.pl/SE/version-git/wfs-data.php/default_db/?SERVICE=WFS&VERSION=1.0.0&TYPENAME=p5_objects:File&REQUEST=DescribeFeatureTypeAdvanced
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml" xmlns:p5="https://biuro.biall-net.pl/wfs" xmlns:default_db="https://biuro.biall-net.pl/wfs/default_db" xmlns:default_objects="https://biuro.biall-net.pl/wfs/default_objects" xmlns:p5_objects="https://biuro.biall-net.pl/wfs/objects" elementFormDefault="qualified" targetNamespace="https://biuro.biall-net.pl/wfs/default_objects" version="1.0.0">
    <xsd:import namespace="http://www.opengis.net/gml" schemaLocation="https://biuro.biall-net.pl/SE/version-git/schema/gml/2.1.2/feature.xsd"/>
    <!--typeName 'p5_objects:File'-->
    <xsd:complexType name="FileType" p5:web_link="https://biuro.biall-net.pl/SE/version-git/index.php?_route=ViewTableAjax&amp;namespace=default_objects/File" xmlns:p5="https://biuro.biall-net.pl/wfs">
        <xsd:complexContent>
            <xsd:extension base="gml:AbstractFeatureType">
                <xsd:sequence>
                    <xsd:element minOccurs="1" maxOccurs="1" name="id" type="xsd:integer" nillable="true" p5:allow_write="true" p5:allow_create="true" xmlns:p5="https://biuro.biall-net.pl/wfs"/>
                    <xsd:element minOccurs="0" maxOccurs="1" name="name" type="xsd:string" nillable="true" p5:allow_write="true" p5:allow_create="true" xmlns:p5="https://biuro.biall-net.pl/wfs"/>
                    <xsd:element minOccurs="0" maxOccurs="1" name="size" type="xsd:integer" nillable="true" p5:allow_write="true" p5:allow_create="true" xmlns:p5="https://biuro.biall-net.pl/wfs"/>
                    <xsd:element minOccurs="0" maxOccurs="1" name="mimeType" type="xsd:string" nillable="true" p5:allow_write="true" p5:allow_create="true" xmlns:p5="https://biuro.biall-net.pl/wfs"/>
                    <xsd:element minOccurs="0" maxOccurs="1" name="version" type="xsd:integer" nillable="true" p5:allow_write="true" p5:allow_create="true" xmlns:p5="https://biuro.biall-net.pl/wfs"/>
                    <xsd:element minOccurs="0" maxOccurs="1" name="content" type="xsd:base64Binary" nillable="true" p5:allow_write="true" p5:allow_create="true" xmlns:p5="https://biuro.biall-net.pl/wfs"/>
                </xsd:sequence>
                <xsd:attribute name="instance" type="default_objects:instanceType"/>
            </xsd:extension>
        </xsd:complexContent>
    </xsd:complexType>
    <xsd:simpleType name="instanceType">
        <xsd:restriction base="xsd:string">
            <xsd:enumeration value="File"/>
        </xsd:restriction>
    </xsd:simpleType>
    <xsd:element name="File" type="default_objects:FileType" substitutionGroup="gml:_Feature"/>
</xsd:schema>
It is for file handling purposes.
But there is also possible to allow user in GUI to send image file for any element of type xsd:base64Binary like: ( 2017-06-22 new parent func - take photo for currently edited feature with simpleType of xsd:base64Binary )
<xsd:element minOccurs="0" maxOccurs="1" name="content" type="xsd:base64Binary" 
xmlns:p5="https://biuro.biall-net.pl/wfs"/>
Note: Currently not handled xsd:base64Binary

Figure: currently probably not handled xsd:base64Binary