我需要连接到vaadin服务器以验证vaadin Testbench license.i在java程序中编写代码
System.setProperty("https.proxyHost", "www-proxy.cccc.cccccccc.de");
System.setProperty("http.proxyPort", "1234");
System.setProperty("java.net.useSystemProxies", "true");
System.out.println("in IE");
System.setProperty("webdriver.ie.driver",
"C:\\Users\\ProjectJars\\Selenium\\IEDriiver\\IEDriverServer_Win32_3.9.0\\IEDriverServer.exe");
setDriver(new InternetExplorerDriver());
我收到以下错误; 您的TestBench 4许可证尚未经过验证。检查您的网络连接。 我在代理后面,在这里我需要设置代理设置以连接到服务器进行验证。我正在尝试使用IE驱动程序。我不是在使用maven。 我还在maven的seetings.xml中设置了代理设置
-<proxy>
<id>optional1</id>
<active>true</active>
<protocol>http</protocol>
<username/>
<password/>
<host>www-ccccc.ccccc.cccccccccc.com</host>
<port>1234</port>
<nonProxyHosts> 111.111.11.1|localhost|111.1.1.1 </nonProxyHosts>
</proxy>
我在这里更改了值和代理名称。
答案 0 :(得分:1)
在Vaadin论坛上有一些陈旧但仍然相关的讨论。即,您需要配置jvm参数,以便Java可以通过代理访问Internet
https://vaadin.com/forum/thread/13408660/13871749
这里有更多通用文件
https://docs.oracle.com/javase/7/docs/technotes/guides/net/proxies.html