Solution
Follow
the procedure below to improve the time taken during the file uploading
process:
1.
Open the web.config
file located in the root folder (i.e,
C:\Bizagi\Projects\[ProjectName]\WebApplicaton\web.config)
of your web
site using the text editor of your choice (i.e, Notepad).
2.
Go to System.serviceModel
segment and set false to the variables as it
is shown in the next code:
<system.serviceModel>
<diagnostics>
<messageLogging logEntireMessage="false"
logMalformedMessages="false"
logMessagesAtServiceLevel="false" logMessagesAtTransportLevel="false"
maxMessagesToLog="2147483647"
maxSizeOfMessageToLog="2147483647"/>
</diagnostics>
</system.serviceModel>
<system.diagnostics>
<sources>
<source name="System.ServiceModel.MessageLogging"
switchValue="all">
<listeners>
<add name="traceListener"/>
</listeners>
</source>
</sources>
<trace autoflush="false"/>
<sharedListeners>
<add name="traceListener"
type="BizAgi.Interop.SoapTrace.InterfaceTraceVersion02,
BizAgi.Interop,Culture=neutral, PublicKeyToken=null">
<filter
type="BizAgi.Interop.SoapTrace.InterfaceTraceVersion02Filter,
BizAgi.Interop,Culture=neutral, PublicKeyToken=null"/>
</add>
</sharedListeners>
</system.diagnostics> |