Product: E-Notebook Enterprise
Error connecting to E-Notebook - 'https' is invalid
PROBLEM:
The following error may occur when launching E-Notebook:
Sorry, an error occured
while opening a client connection: while setting up connection to
central database: the provided URI scheme 'https' is invalid expected
'http' parameter name: via
SOLUTION:
Update the endpoint address and security mode in the
ENotebook.exe.config file.
For example:
<client>
<endpoint
address="https://YourServerName/ENService/ENService.svc"
binding="basicHttpBinding"
bindingConfiguration="LargeSettings" contract="ENService.IENService"
name="WCFEndPoint" />
</client>
<bindings>
<basicHttpBinding>
<binding name="LargeSettings" maxBufferSize="2147483647"
maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
openTimeout="00:10:00" closeTimeout="00:10:00" sendTimeout="00:10:00"
receiveTimeout="00:10:00">
<readerQuotas maxDepth="2147483647"
maxStringContentLength="2147483647" maxArrayLength="2147483647"
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"
/>
<security
mode="Transport">
<transport
clientCredentialType="None" proxyCredentialType="None"/>
</security>
</binding>
<binding name="Default" />
</basicHttpBinding>
</bindings>
Comments
0 comments
Article is closed for comments.