Hi,
I have ADF 10g Application I opened it in the jdeveloper 12c(12.1.3), after I opened it's asked me do you want me migrate it to the trninidad faces I clicked ok. After application was migrated to12c it has some errors then i fixed the all the errors raised due to migration then I started to run the jspx page but it's saying as " <BEA-160187> <weblogic.appc failed to compile the application. Recompile with the -verbose option for more details about the issue.>" and no other message was shown apart from this. I gone through some of blogs and got information that if I create build file using ant it will fix so i edit follwing build.xml file with necessary environment details of mine and I ran it
<project name="WeblogicCompilation" basedir="." default="appc">
<target name="appc">
<property name="wl.home" value="*****************/wlserver"/>
<property name="application.src" value="/************/UserInterface.ear"/>
<path id="wlappc.classpath">
<fileset dir="${wl.home}/server/lib">
<include name="*.jar"/>
</fileset>
</path>
<taskdef name="wlappc" classpathref="wlappc.classpath" classname="weblogic.ant.taskdefs.j2ee.Appc"/>
<wlappc source="${application.src}"
keepgenerated="true"
verbose="true"
libraryDir=***********************/wlserver/common/deployable-libraries"
output="${application.src}_Output"/>
</target>
</project>
but nothing gets helped me to fix the issue. Is anybody have any idea regarding this anyhelp would be appreciated.
Thanks,
Hari