FAQs (EN)



62. When called from a C# client program, no data is transferred to the application server. The log files of the application server also do not indicate that data has been received.

Effect: In this case a request sent by the client cannot be processed by the CIB documentServer.

Possible cause

This communication problem may occur between the client and the server because the "Expect100Continue" property is enabled in the C# client program. In this case the Expect100Continue property of the client-server connection must be disabled (the default value is true). Example:

webRequest.ServicePoint.Expect100Continue = false;