Hi,
I am trying to productionise a workflow that I have running locally that needs to send a file to a RESTful API.
To do this I have a workflow that uses the GET nodes to allow the user to authenticate to get a TOKEN for the later calls. These calls are working and the TOKEN is generated correctly. ( I have other workflows on server that are working OK )
To send the file, I cannot use the POST node and have written a simple python script to do this and this works fine locally. when running this on the server I cam getting the following error
Failed to establish a new connection: [Errno 110] Connection timed out’)
Is there a setting that we have missed that preventing the python script from creating the connection?
this is indeed likely a network issue. Your Python script will not be using any configured proxy, but the requests library does support configuring proxies. You’ll need to check with your internal IT or KNIME admin which proxy configuration is required to access the resources you need.