Fbean.Invoke doesnt work!!!
608509Nov 22 2007 — edited Nov 23 2007Hello Friends,
I'm using Forms 10.1.2.0.2 with a JAVAPLUGIN without JInitiator!
I created a bean in the JDeveloper 10.1.3.3 because i needed to change the JDK version compiler to JDK 1.6 to use some classes of this version!
My jar is signed!
I have a simple method void without args inside a bean that instanciate a attribute of the bean class!
Then I call this method in the line!
FBEAN.INVOKE('BL.BEAN_AREA',1,'inicializaCabecalhoGuia');
Inside a GET property i check if the attribute was instanciated and return one string
if (myAttribute == null)
return "Not Inicialized";
else
return "Inicialized";
I saw the the attribute is not instanciated!
But i havent no errors!
I use FBEAN.SET_LOGGING_MODE('BL.BEAN_AREA',1,FBEAN.LOG_ALL); to see if there is something wrong but noone result returns to me!
Somebody can help me?