rzelnick
rzelnick

Reputation: 1

How can I deploy a project using business central?

I'm trying to deploy a project created in business central. Currently I'm using docker's jboss/drools-workbench container, and whenever I click on the deploy button I get an error message (see below).

I have looked at the server log and there was no error when attempting to deploy the project. I have also tried using standalone wildfly's management console to deploy Drools warfile which was unsuccessful since an error about missing/unavailable module (slf4j) and, in another instance, attempted to link to jboss/kie-server container with my drools-workbench container for which the application becomes unresponsive.

My rule is a simple "hello" application

rule "hello"
when
  $name: String( )
then
  System.out.println( "Hello " + $name + "!" );
end

And I also have tried linking jboss/kie-server container to drools-workbench container,

$ docker run -p 8080:8080 -p 8001:8001 -d --name drools-workbench jboss/drools-workbench
$ docker run -p 8180:8080 -d --name kie-server --link drools-workbench:kie-wb jboss/kie-server

The server logs are in https://pastebin.com/A97exiJu the error I get from the UI is "Deployment was skipped, couldn't find any server running in 'development' mode." I have tried changing the project to production mode, but I still get the same error except for "development" it states "production".

Upvotes: 0

Views: 1579

Answers (0)

Related Questions