Hi,
Is 20Mb the size limit for OpenText DocumentManagement Web service for the document upload? Is there any way to extend this limit?
Thanks,
Amit
Size limit for OpenText DocumentManagement Web service Posted byamit.tongaonkar@cognizant.com (Tongaonkar, Amit)On 11-21-2013 11:19 Hi, Is 20Mb the size limit for OpenText DocumentManagement Web service for the document upload? Is there any way to extend this limit? Thanks, Amit [To post a comment, use the normal reply function]Forum:Content Web Services ForumContent Server:Knowledge Center
You have to add this in web.config (you can locate this in <OTInstall Folder>\webservices\dotnet\les-services )
<httpRuntime maxRequestLength="2097151" />.
You can add this right after <system.web>.
The maxRequestLength is in KB. The above will set to 2Gigs which you can change it to your desired limit.
Also you might have to change the limit on the .Net application side where you are using this Webservice.
Hope this helps...
Cheers,
Mahesh
for IIS 7.0 and you need to set: MaxAllowedContentLength like:
<configuration> <system.webServer> <defaultDocument> <files> <remove value="default.aspx" /> <add value="DEFAULT.ASPX" /> </files> </defaultDocument> <security> <requestFiltering> <requestLimits maxAllowedContentLength="2097152000" /> </requestFiltering> </security> </system.webServer> </configuration>
Hi All,
I have upload sample program with configuration. It has been tuned to upload and download file up to 2GB. Hope this work for you
https://knowledge.opentext.com/knowledge/cs.dll?func=ll&objId=34281188&objAction=browse&sort=name
Best Regards,
Kumar Dwarakanath, ECM Consultant
TelCellFaxPOBoxAddress
:::::
+971 (02) 673 8300+971 (55) 1473782
+971 (02) 673 8299127562Al Masood Building – Suite 902 - Abu Dhabi - UAE
IMPORTANT NOTICE: This communication is privileged and contains confidential information for the sole use of the intended recipient(s). Any unauthorized disclosure, copying or use of this communication is strictly prohibited. If you have received this message in error, please contact the sender and delete this message without printing it or otherwise retaining a copy.
P Please consider the environment before printing this e-mail.
From: eLink Entry: Content Web Services Forum [mailto:otdncontentwebservices971forum@elinkkc.opentext.com] Sent: Thursday, November 21, 2013 11:09 PMTo: eLink RecipientSubject: Re Size limit for OpenText DocumentManagement Web service
Re Size limit for OpenText DocumentManagement Web service
Posted by guy.pomerleau@asc-csa.gc.ca (Pomerleau, Guy) On 11-21-2013 14:03
<configuration> <system.webServer> <defaultDocument> <files> <remove value="default.aspx" /> <add value="DEFAULT.ASPX" /> </files> </defaultDocument> <security> <requestFiltering> & nbsp; <requestLimits maxAllowedContentLength="2097152000" /> </requestFiltering> </security> </system.webServer></configuration>
[To post a comment, use the normal reply function]
Topic:
Size limit for OpenText DocumentManagement Web service
Forum:
Content Web Services Forum
Content Server:
Knowledge Center
Kumar
why did you change the messageencoding from "text" to "mtom" and change transfertMode from " buffered" to "streamed" for the documentmanagementbinding?
Guy, these settings are much more efficient for transferring large files than the defaults you start with. Google WCF, MTOM and streaming there is a lot of information about this out there.
This is a decent link as well: http://msdn.microsoft.com/en-us/library/ms733742(v=vs.110).aspx