BPEL Apache ODE.deployed file

I created the base file of the helloworld.bpel process in eclipse in a BPEL project and tried to deploy its Apache ODE. So I followed the steps in this link of the Apache ODE Eclipse BPEL guide .

But at later stages, after placing the corresponding files in the WEB-INF folder and running APADE ODE, the expected .deployed file was not created. And Apache ODE does not detect the same in the ODE browser when I use localhost:8080/ode/processes .

When I tried to start the ODE server in eclipse, I get the following errors. Firstly, it was a mistake I received. β€œAnother instance of the derby may have loaded into the database.” Then I restarted Apache Tomcat in services.msc. Then this error has ceased to be displayed.

Now this is the error I'm stuck with. "SA schema does not exist"

 Database Class Loader started - derby.database.classpath='' 13:54:26,099 WARN [GeronimoConnectionEventListener] connectionErrorOccurred called with null java.sql.SQLSyntaxErrorException: Schema 'SA' does not exist at org.apache.derby.impl.jdbc.SQLExceptionFactory40.getSQLException(Unknown Source) at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source) at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(Unknown Source) at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(Unknown Source) at org.apache.derby.impl.jdbc.EmbedConnection.handleException(Unknown Source) 
+4
source share
2 answers

There seem to be some issues with derby's built-in database. I would try to completely redistribute the ODE so that the database is retrieved from .war again.

0
source

You must run Eclipse or NetBeans as an Administrator.

0
source

Source: https://habr.com/ru/post/1436068/


All Articles