2011-01-20 3 views
0

SBM은 비즈니스 응용 프로그램 (Serena Business Mashups)을 가지고 있으며 결함 추적자로 사용하고 있습니다.웹 서비스에 전달할 때 긴 텍스트가 잘림

데이터베이스 작업을 수행하는 웹 서비스가 있습니다.

웹 서비스를 사용하여이 시스템의 필드를 업데이트해야합니다. 업데이트해야하는 데이터는 긴 (110000 자) 문자열입니다.

그래서 update 메소드를 호출하면 데이터가 업데이트되지만 잘립니다. 아래에 웹 설정을 붙여 넣었습니다. 그래서 내가 모르는 한계가 있습니까?

WCF가 아닌 asp.net 웹 서비스를 사용하고 있습니다.

귀하의 도움에 감사드립니다.

<system.serviceModel> <bindings> <basicHttpBinding> <binding name="aewebservices71" closeTimeout="01:00:00" openTimeout="01:00:00" receiveTimeout="01:00:00" sendTimeout="01:00:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"> <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="4096" maxNameTableCharCount="16384" /> <security mode="None"> <transport clientCredentialType="None" proxyCredentialType="None" realm=""/> <message clientCredentialType="UserName" algorithmSuite="Default" /> </security> </binding> </basicHttpBinding> </bindings> <client> <endpoint address="http://imgtt1:80/gsoap/gsoap_ssl.dll?aewebservices71" binding="basicHttpBinding" bindingConfiguration="aewebservices71" contract="BMService.aewebservices71PortType" name="aewebservices71" /> </client> </system.serviceModel>

답변

0

감사는 때문에 세레나 비즈니스 매시업 웹 서비스의 제한했다,이 문제를 해결했습니다.

관련 문제