Closed kolabelmont closed 4 years ago
Sure thing. The message that you see there is coming from the Windows.TCPIP library. We are surfacing it in the connector as FYI. So what the TCP/IP library is telling us in this context is that when we made a connection attempt on port 8009 the host machine (Tomcat) refused the connection. To check this you can use PowerShell and see whether you can connect to your Tomcat instance on port 8009 on the machine.
The PowerShell command is
Test-NetConnection -ComputerName <address> -Port <port>
Thus
Test-NetConnection -ComputerName 127.0.0.1 -Port 8009
Reasons:
If you find that you can connect on port 8009 but not through the connector, please open another ticket.
so it failed when i ran the powershell commend. not sure why it can't connect to port 8009. any ideas? tomcat was defaulted to use that port and in the server.xml i see that's the case.
looks like for some reason port 8009 is not listening. any idea why?
figured it out. was a problem with the config files. thanks for your help.
Glad to hear you worked it out.
i've seen this in the past but it was never addressed from what i can see.
No connection could be made because the target machine actively refused it 127.0.0.1:8009 at System.Net.Sockets.TcpClient..ctor(String hostname, Int32 port) at BonCodeIIS.BonCodeCallHandler.ProcessRequest(HttpContext context)
i have identical setup on another machine which works. could you please recommend any solution?
thanks!