viki
viki

Reputation: 1

SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:8080

I am windows developer trying to use Camunda model rest API client project. I did download the sample from the GIT which has examples for Camunda samples using WPF.

https://github.com/mtringuyen/camunda-dot-net-showcase

However there seems to be some sort of socket exception. IIS is installed. I also verified versioning of .NET STANDARD and .NET FRAMEWORK. They are compatible.

enter image description here

Any suggestions to resolve this error? Thanks in advance

Upvotes: 0

Views: 326

Answers (2)

rob2universe
rob2universe

Reputation: 7583

The project you are using only contains

The Camunda server remains a Java application. However, you can start it and use it as a blackbox from .NET without Java knowledge. There are several distributions. If you are not familiar with Java you should either use the Docker image:

docker run -d --name camunda -p 8080:8080 camunda/camunda-bpm-platform:latest

or a prepackages Tomcat using the Camunda RUN distribution. You can download a server here: https://camunda.com/download/

Also see: https://docs.camunda.org/manual/latest/installation/

Upvotes: 1

Josh
Josh

Reputation: 10604

If you think an application that is running is listening on a particular port a quick way to check would be to run a command prompt as administrator and do a netstat -ab . This will show you all the ports that are listening on your local device. Obviously your example requires something listening on 8080 so fire up whatever application that is supposed to be and double check it.

Upvotes: 0

Related Questions