No, not at all. I am starting the node up just like this:
java -jar selenium-server-standalone-2.19.0.jar -role node -hub
https://servername/grid/register -browser
browserName=firefox,version=10,maxInstances=5,platform=WINDOWS
And this is what I am seeing when it tries to register:
17:51:11.803 INFO - Registering the node to hub
:http://servername:-1/grid/register
If I change that above statement to start the node to the following it
works fine:
java -jar selenium-server-standalone-2.19.0.jar -role node -hub
http://servername:4444/grid/register -browser
browserName=firefox,version=10,maxInstances=5,platform=WINDOWS
I am starting the hub as follows:
java -jar selenium-server-standalone-2.19.0.jar -role hub
We setup ProxyPass on the hub server so all requests go through HTTPS.
If I start up the nodes using 4444 in the second example, I can run
tests through our grid using
https://servername/wd/hub so I know that
is working. The problem is just when I try to register the nodes
against https.
Thanks,
Steve