Based on your requirements, if you want to setup a web proxy for access to internet on your app server, you must uncomment the following code and also add the relevant configuration details such as proxy server address {{proxy_server}} and port number {{port}} in the web.config file.
Navigate to <Smart Materials Connector for Jovix installed path>\Web\Web.config and uncomment the following code in the web.config file:
<!--<system.net>
<defaultProxy>
<proxy proxyaddress="http://{{proxy_server}}:{{port}}" usesystemdefault="true" bypassonlocal="true"/>-->
<!-- <bypasslist>
<add address="IP address or URL with port" />
<add address="IP Address or URL with port" />
</bypasslist>-->
<!--
</defaultProxy>
</system.net>-->
For example, in the proxy address code, replace
{{proxy_server}} = your-proxy-server-address.com
and
{{port}} = 8080.
proxy proxyaddress=" http://your-proxy-server-address.com:8080" usesystemdefault="true" bypassonlocal="true"