Saturday, December 16, 2017

Setting Proxies for Different Software's:

Setting Proxies for Different Software's:

The major issues for a new joiner in any new software firm is to set the environment for developing for Developer or the environment for  testing the applications if you are Testing Engineer.

Here are Some of the ways with different software to set proxies :

OS : Windows

To set proxy for Eclipse to download maven dependencies:

go to .m2 folder. It will be "C:\Users\George.Rosario\.m2". And create a file called settings.xml
Take a Sample from here : settings.xml

In Proxies Set:

<proxies>

    <proxy>
      <id>optional</id>
      <active>true</active>
      <protocol>http</protocol>
      <username>username</username>
<password>password001</password>
      <host>mycoma.sam.net</host>
      <port>8080</port>

    </proxy>
 
  </proxies>

Here username is your username to access proxy and password is password provided by your firm.
host is the domain name of proxy. and port provided.