<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: 408 Error Timeout while uploading big file in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70093#M23075</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; 5G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Nov 2018 10:59:27 GMT</pubDate>
    <dc:creator>lcarangelo</dc:creator>
    <dc:date>2018-11-29T10:59:27Z</dc:date>
    <item>
      <title>408 Error Timeout while uploading big file</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70090#M23072</link>
      <description>Alfresco Community Version Number:&amp;nbsp;5.1.0 (r122274-b3)We receive an 408 Error timeout while uploading big file, where and how can I modify timeout limiti or how can we avoid this behaviour?Thank youLuca</description>
      <pubDate>Sun, 18 Nov 2018 14:51:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70090#M23072</guid>
      <dc:creator>lcarangelo</dc:creator>
      <dc:date>2018-11-18T14:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: 408 Error Timeout while uploading big file</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70091#M23073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can override&amp;nbsp; the&amp;nbsp;&lt;SPAN&gt;"connector.remoteclient.abstract" bean in shared/classes/alfresco/web-extension/custom-slingshot-application-context.xml file, Increase the&amp;nbsp;readTimeout value based on your requirement..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You should also check your SSO system setting and its poxy if you are using..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;bean id="connector.remoteclient.abstract" abstract="true"&amp;gt;&lt;BR /&gt; &amp;lt;!-- name of authentication ticket that can be optionally applied to proxied URLs --&amp;gt;&lt;BR /&gt; &amp;lt;!-- the ticket value is set programmatically by the connector making use of the RemoteClient instance --&amp;gt;&lt;BR /&gt; &amp;lt;property name="ticketName"&amp;gt;&amp;lt;value&amp;gt;alf_ticket&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- default encoding to use when decoded responses when none is set in the response - set to null for platform default --&amp;gt;&lt;BR /&gt; &amp;lt;property name="defaultEncoding"&amp;gt;&amp;lt;null/&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- default Content-Type header value to use for PUT or POST responses when none is supplied --&amp;gt;&lt;BR /&gt; &amp;lt;property name="defaultContentType"&amp;gt;&amp;lt;value&amp;gt;application/octet-stream&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- size of the internal byte buffer used when proxying responses --&amp;gt;&lt;BR /&gt; &amp;lt;property name="bufferSize"&amp;gt;&amp;lt;value&amp;gt;4096&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- the http.connection.timeout value in milliseconds to apply to HTTP connections --&amp;gt;&lt;BR /&gt; &amp;lt;property name="connectTimeout"&amp;gt;&amp;lt;value&amp;gt;2000000&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- the http.socket.timeout value in milliseconds to apply to HTTP connections --&amp;gt;&lt;BR /&gt; &amp;lt;property name="readTimeout"&amp;gt;&amp;lt;value&amp;gt;2200000&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- the maximum number of redirects to process from a GET request while maintaining cookies --&amp;gt;&lt;BR /&gt; &amp;lt;property name="maxRedirects"&amp;gt;&amp;lt;value&amp;gt;10&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- the RemoteClient will automatically use an HTTP proxy if the JVM property 'http.proxyHost' is set&lt;BR /&gt; but this feature can be disabled by setting this bean property to false --&amp;gt;&lt;BR /&gt; &amp;lt;property name="allowHttpProxy"&amp;gt;&amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- the RemoteClient will automatically use an HTTPS proxy if the JVM property 'https.proxyHost' is set&lt;BR /&gt; but this feature can be disabled by setting this bean property to false --&amp;gt;&lt;BR /&gt; &amp;lt;property name="allowHttpsProxy"&amp;gt;&amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- the set of headers to remove when proxying a request from a client to a remote endpoint --&amp;gt;&lt;BR /&gt; &amp;lt;property name="removeRequestHeaders"&amp;gt;&lt;BR /&gt; &amp;lt;set&amp;gt;&lt;BR /&gt; &amp;lt;value&amp;gt;Cookie&amp;lt;/value&amp;gt;&lt;BR /&gt; &amp;lt;/set&amp;gt;&lt;BR /&gt; &amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- the set of headers to remove when proxying a response from a remote endpoint to a client --&amp;gt;&lt;BR /&gt; &amp;lt;property name="removeResponseHeaders"&amp;gt;&lt;BR /&gt; &amp;lt;set&amp;gt;&lt;BR /&gt; &amp;lt;value&amp;gt;Set-Cookie&amp;lt;/value&amp;gt;&lt;BR /&gt; &amp;lt;/set&amp;gt;&lt;BR /&gt; &amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- http.tcp.nodelay setting - default is true --&amp;gt;&lt;BR /&gt; &amp;lt;property name="httpTcpNodelay"&amp;gt;&amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;!-- http.connection.stalecheck setting - default is true --&amp;gt;&lt;BR /&gt; &amp;lt;property name="httpConnectionStalecheck"&amp;gt;&amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;BR /&gt; &amp;lt;/bean&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2018 13:08:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70091#M23073</guid>
      <dc:creator>dharmendra_pan3</dc:creator>
      <dc:date>2018-11-19T13:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: 408 Error Timeout while uploading big file</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70092#M23074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just curious, how big is the file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2018 23:29:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70092#M23074</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2018-11-19T23:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: 408 Error Timeout while uploading big file</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70093#M23075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; 5G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2018 10:59:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70093#M23075</guid>
      <dc:creator>lcarangelo</dc:creator>
      <dc:date>2018-11-29T10:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: 408 Error Timeout while uploading big file</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70094#M23076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;custom-slingshot-application-context.xml is missing , do I have to create it and insert the suggested code?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;Do I have to customize something else in it?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2018 11:03:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70094#M23076</guid>
      <dc:creator>lcarangelo</dc:creator>
      <dc:date>2018-11-29T11:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: 408 Error Timeout while uploading big file</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70095#M23077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, If it is missing then you have to create one in&amp;nbsp;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;web-extension folder and add &lt;SPAN&gt;connector.remoteclient.abstract&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;bean&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;shared/classes/alfresco/web-extension/custom-slingshot-application-context.xml&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;You just need to update the below values in&amp;nbsp;&lt;SPAN&gt;connector.remoteclient.abstract&amp;nbsp;&lt;/SPAN&gt;bean, here I have already incresed so try it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;lt;property name="connectTimeout"&amp;gt;&amp;lt;value&amp;gt;2000000&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;!-- the http.socket.timeout value in milliseconds to apply to HTTP connections --&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;property name="readTimeout"&amp;gt;&amp;lt;value&amp;gt;2200000&amp;lt;/value&amp;gt;&amp;lt;/property&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;SPAN&gt;Note : Do not increase it to bigger values otherwise it will decrease application performance, Also check the proxy setting as I said earlier.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;SPAN&gt;-D&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2018 11:14:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/408-error-timeout-while-uploading-big-file/m-p/70095#M23077</guid>
      <dc:creator>dharmendra_pan3</dc:creator>
      <dc:date>2018-11-29T11:14:56Z</dc:date>
    </item>
  </channel>
</rss>

