You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we have change a method signature in DocumentRestService we got the following exception:
11:39:30,653 ERROR [io.undertow.request] (default task-3) UT005023: Exception handling request to /api/workflow/workitem/f6587ba5-4f77-466a-a97b-23a9f5f11e21: org.jboss.resteasy.spi.UnhandledException: javax.ejb.EJBException: Not a business method protected javax.ws.rs.core.Response org.imixs.workflow.jaxrs.DocumentRestService.convertResult(org.imixs.workflow.ItemCollection,java.lang.String,java.lang.String). Do not call non-public methods on EJB's.
This is because it is not allowed for no-interface views on an EJB to call protected methods.
To resolve this issue we need to change the visibility of the method convertResult back from protected to public
The text was updated successfully, but these errors were encountered:
Since we have change a method signature in DocumentRestService we got the following exception:
11:39:30,653 ERROR [io.undertow.request] (default task-3) UT005023: Exception handling request to /api/workflow/workitem/f6587ba5-4f77-466a-a97b-23a9f5f11e21: org.jboss.resteasy.spi.UnhandledException: javax.ejb.EJBException: Not a business method protected javax.ws.rs.core.Response org.imixs.workflow.jaxrs.DocumentRestService.convertResult(org.imixs.workflow.ItemCollection,java.lang.String,java.lang.String). Do not call non-public methods on EJB's.
This is because it is not allowed for no-interface views on an EJB to call protected methods.
To resolve this issue we need to change the visibility of the method
convertResult
back fromprotected
topublic
The text was updated successfully, but these errors were encountered: