Skip to content

Technical FAQ

Get 'connection request timed out' or 'ORA-00542: Failure during SSL handshake' while connect to Oracle Autonomous Database. Enable Loading User Profiles for Web Apps.
1. Open iis manager
2. Open 'Advanced settings' of the application pool.

3. Set 'Load User Profiles' to True.

4. Restart IIS.
Get '(413) Request Entity Too Large' error . You need to change maxReceivedMessageSize value in both Service and Client config files.
CDBC Service
Open web.config and change maxReceivedMessageSize in system.serviceModel session.
e.g.
<binding maxReceivedMessageSize="4194304">
CDBC Client
Open app.config and change maxReceivedMessageSize in system.serviceModel session.
e.g.
  <binding name="CdbcService" maxReceivedMessageSize="4194304">