Hi experts.
I'm using jDeveloper 11.1.1.7.0.
I have a fragment with an inputfile component.
*** JSFF ***
<af:inputFile id="txfArch" maximumFiles="1"
label="#{pageFlowScope.p_label}" partialTriggers="btnAdju"
binding="#{backingBeanScope.backing_fragmentos_subirArchivosCerramiento.txfArch}"
autoSubmit="true"/>
I configured in my web.xml UPLOAD_MAX_MEMORY and UPLOAD_MAX_DISK_SPACE params:
*** WEB.XML***
<context-param>
<param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_MEMORY</param-name>
<param-value>524288000</param-value>
</context-param>
<context-param>
<param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_DISK_SPACE</param-name>
<param-value>524288000</param-value>
</context-param>
On page I select a file larger than 500MB and then loading it shows the message that the file is too large. This is OK.
The input file showme a button for update the file. I click on the update button and a popup appear to provide the possibility to select another file. This is OK.
The problem is that when I select another file the input file does nothing (in other words does not respond to button click).
How can I fix it?