cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
521
Views
0
Helpful
2
Replies

MCAK - Amazon EC2 Connectivity - Proxy settings

We are facing following error from Tidal when we are trying to connect to EC2 ( from Discover Infrastructure -> Subnets (EC2) process)

The remote name could not be resolved: 'ec2.us-west-2.amazonaws.com'

Tidal running on local IP address in the lab and configured proxy setting to get internet access. But still we see the above issue though we have internet connectivity to Tidal VM through proxy. I am not sure Tidal is able to use proxy set at windows level.

Could you please let me know if you have any suggestions to get this issue resolved.

1 Accepted Solution

Accepted Solutions

derevan
Level 4
Level 4

If you plan to use CPO and web service activities from a machine that requires a proxy, you will also need to configure the .Net framework to use the proxy. You can also specify bypass lists.

See the following article:

http://geekswithblogs.net/ranganh/archive/2005/08/29/51474.aspx

Add the following to the C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config file on the CPO server.

  

     

        

            usesystemdefault = "false"

            proxyaddress="http://64.102.255.40:8080" <=== your proxy addresss and port go here

            bypassonlocal="true"

         />

     

   

View solution in original post

2 Replies 2

derevan
Level 4
Level 4

If you plan to use CPO and web service activities from a machine that requires a proxy, you will also need to configure the .Net framework to use the proxy. You can also specify bypass lists.

See the following article:

http://geekswithblogs.net/ranganh/archive/2005/08/29/51474.aspx

Add the following to the C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config file on the CPO server.

  

     

        

            usesystemdefault = "false"

            proxyaddress="http://64.102.255.40:8080" <=== your proxy addresss and port go here

            bypassonlocal="true"

         />

     

   

Thank you verymuch Derek. It worked :-)