Error: Script Failed to execute : Read timed out
org.apache.axis2.AxisFault: Read timed out
at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430)
Solution:
Please update web.xml file located under Platform Server > Webapps > webservice > WEB-INF folder and increase the maxInactiveInterval from 30 to 300, then restart the platform server.
<servlet>
<servlet-name>HttpStreamingService</servlet-name>
<servlet-class>
com.quark.qpp.filetransfergateway.transport.http.HttpStreamingService
</servlet-class>
<init-param>
<param-name>maxInactiveInterval</param-name>
<param-value>300</param-value>
</init-param>
<!--<load-on-startup>1</load-on-startup> -->
</servlet>