×
Menu
Index

3.3.13. Using CMIS with a Proxy Server

 
ChronoScan uses .NET to connect and work with Alfresco.
 
By default .NET allows to configure programs to set Proxy server parameters:

http://msdn.microsoft.com/en-us/library/5w91x7a7(v=vs.110).aspx
http://msdn.microsoft.com/es-es/library/dkwyc043(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/kd3cf2ex(v=vs.100).aspx
 
 
To configure specific proxy server parameters for the CMIS export create the following file:
 
<programfilesx86>/ChronoScan/Bin/chrono_svcmis.config
 
And add your proxy settings to it as specified in Microsoft Article.
 
Example
 
The following example sets the default proxy server address to http://proxyserver. It indicates that the proxy should not be used for local addresses and specifies that all requests to servers located in the contoso.com domain should bypass the proxy.
 
<configuration>
    <system.net>
        <defaultProxy>
            <proxy
                usesystemdefault = "false"
                proxyaddress = "http://proxyserver:80"
                bypassonlocal = "true"
            />
            <bypasslist>
                <add address="http://[a-z]+\.contoso\.com/" />
            </bypasslist>
        </defaultProxy>
    </system.net>
</configuration>