I have migrated VAG Web Transaction to EGL Web Transaction generated to Cobol CICS and test in RBD V.9.1.1 with WTE.
On my first application worked fine but in the second application i got an error:
VGJ0604E - Uma exceção ocorreu enquanto tentava carregar o bean, SG001RUBean. Exceção: java.lang.ClassNotFoundException: SG001RUBean. Mensagem: SG001RUBean
comparing the first and second application no configuration differences:
in the First application, JSP definition:
"jsp:useBean id="FR900RU" scope="request" class="xxxxxxx.sfr.prgm.fr900p.webtrans.FR900RUBean"
and location package class bean
"...\WebContent\WEBINF\classes\xxxxxxx\sfr\prgm\fr900p\webtrans\FR900RUBean.class"
"...\WebContent\WEBINF\classes\xxxxxxx\sfr\prgm\fr900p\webtrans\FR900RURBundle.class"
in the Second application, JSP definition:
"jsp:useBean id="SG001RU" scope="request" class="xxxxxxx.ssg.prgm.sg001p.webtrans.SG001RUBean"
and location package class bean
"...\WebContent\WEBINF\classes\xxxxxxx\ssg\prgm\sg001p\webtrans\SG001RUBean.class"
"...\WebContent\WEBINF\classes\xxxxxxx\ssg\prgm\sg001p\webtrans\SG001RURBundle.class"
in the csogw.properties:
hptGateway.propertiesRefreshInterval=2
application.*.traceFlag = 1
application.*=CICSP1
serverLinkage.CICSP1.commtype=CICSECI
serverLinkage.CICSP1.contable=csoE037
serverLinkage.CICSP1.serverid=CPMI
serverLinkage.CICSP1.ctgLocation=localhost
serverLinkage.CICSP1.ctgPort=2006
serverLinkage.CICSP1.location=CICSP1
I didn't use the property "serverLinkage.xxxx.javaProperty" because i'm generating to COBOL.
Why the First application worked fine and the Second application not found the bean class ?
I could not see any difference and both applications use CONVERSE to display uirecord instead of XFER
Hsieh