FYI: I’m using the exact same Postman request to send the SOAP message to 8080 NodeJS and 8082 HTTP input.
The HTTP input works fine, the NodeJS input gives me the error.
Are you sure you have sent your configuration to the Workflow Server? Because from these screenshots, it looks like the configuration that the server is running uses port 9090 for NodeJS (which is the default value after installation), while the configuration you’re editing is setting it to port 8080 (which by default, is the port for the HTTP Server).
I just changed my NodeJS port to 9091, and the log still states - incorrectly - that the wsdl is available on port 9090. I will enter a ticket in our systems to have this corrected.
However, I can now access the wsdl just fine at http://localhost:9091/soap/ISoapAct?wsdl. I can do this both from a browser (Edge & Chrome) as well as from the Thunder Client in VSCode (which I use instead of Postman).
In your case, if port 8080 refuses to Connect from any client application, I would look at the Windows firewall to make sure that inbound TCP communications are allowed on that port.
@sybren.kuperus: that URL is meant for accessing the WSDL (which is required by SOAP clients), not to submit jobs!
To submit a job, please read the documentation for the SubmitJob() method, which should provide you with enough information to perform the call from Postman or from any other SOAP client.
OK, so I’ve just run a full test here and I’m not happy…
The NodeJS SOAP server appears to be configured to work on port 9090 only. I was able to submit a job using that port, but not with any other port.
No one noticed this problem until this thread.
I will refrain from having the culprit covered in tar and feathers and instead I will write up a ticket for R&D to fix the issue. In the meantime, you will have to either continue using the HTTP Server for SOAP communications, or keep the NodeJS server on port 9090.
I’m really sorry about not finding this out earlier.