When I am trying to connect to Neotys server running on a remote machine, I am getting below exception.
Connection error: <ConnectException invoking http://serverName:8080/ws/license: Connection timed out: connect>
com.neotys.license.data.n: Connection error: <ConnectException invoking http://serverName:8080/ws/license: Connection timed out: connect>
at com.neotys.nl.controller.xc.c(xc.java:333)
at com.neotys.nl.gui.h.f.h.a(h.java:75)
at com.neotys.nl.gui.h.f.h.doInBackground(h.java:62)
at javax.swing.SwingWorker$1.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at javax.swing.SwingWorker.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
I tried manually hitting http://serverName:8080/ws/license URL from browser and it throws error. However http://serverName:8080/ws/ works and returns the list of the available services.
Can anyone tell me what is the issue here?
It is not expected to reach that URL: http://serverName:8080/ws/license
The login page can be reached through that URL: http://serverName:8080/
What happens when you try the URL above?
Thanks Nauredine. I had to open port 8080 on the License server. After that I was able to connect it. I am not sure why was it reaching to /ws/license