2011-01-20 7 views
0

私は外部アプリケーション(Serena Business Mashups)を持っていますが、SBMはビジネス管理ツールであり、欠陥追跡ツールとして使用しています。Webサービスに渡すと長いテキストが切り捨てられる

データベース操作を行うWebサービスがあります。

Webサービスを使用してこのシステムのフィールドを更新する必要があります。更新する必要があるデータは長い文字列(110000文字)です。

私はupdateメソッドを呼び出すと、データは更新されますが、切り捨てられます。私は以下の私のWeb設定を貼り付けました。それで私には分からない限界がありますか?

私はasp.net Webサービスを使用していますが、WCFは使用していません。

ご協力いただきありがとうございます。

よろしく

<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

は、問題を修正し、それが理由セレナビジネスマッシュアップWebサービスの限界でした。

関連する問題