You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a new Rx\Thruway\Client, I cannot use hostnames, but must use IP address.
Why is that?
This works: ws://123.456.78.9:9090
this doesn't: ws://myservername:9090
My current workaround is to use 'ws://' . gethostbyname('myservername') . ':9090',
which feels wrong and unreliable.
If it's the same machine, using localhost:9090 also works, just not the actual hostname.
I use the same URL (incl. hostname) in vxWamp (used on browser/clientside) to reach the server, which works fine, which makes me believe it's not a resolution issue.
The text was updated successfully, but these errors were encountered:
At the moment you cannot override the default connector or dns resolver. This is something that we plan on addressing once we have a better mechanism for testing the connector.
When creating a new
Rx\Thruway\Client
, I cannot use hostnames, but must use IP address.Why is that?
This works:
ws://123.456.78.9:9090
this doesn't:
ws://myservername:9090
My current workaround is to use
'ws://' . gethostbyname('myservername') . ':9090',
which feels wrong and unreliable.
If it's the same machine, using localhost:9090 also works, just not the actual hostname.
I use the same URL (incl. hostname) in vxWamp (used on browser/clientside) to reach the server, which works fine, which makes me believe it's not a resolution issue.
The text was updated successfully, but these errors were encountered: