Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"JBAS014151: Could not find view "

I am trying to run a java application using Jboss 6.0 EAP that was originally developed using Jboss 7.1 AS. But I am running into the following exception msg:

"JBAS014151: Could not find view ... for EJB ....."

can anyone please advise me on how to fix this?

like image 576
Saqib Ali Avatar asked Dec 21 '22 08:12

Saqib Ali


1 Answers

Apparently local calls should use "java:global/" instead of "ejb:" according to https://community.jboss.org/thread/215535 . Making that change worked for EAP 6.1 after getting this error.

like image 91
Paul R Rogers Avatar answered Jan 05 '23 07:01

Paul R Rogers