hi,
i am using
ant to create my war file and her is the syntax for the same.
<war destfile="${dest_home}/${warFileName}.war" webxml = "${warpath}/WEB-INF/web.xml">
<webinf dir="${warpath}/WEB-INF/">
<patternset id="wls" >
<include name="weblogic.xml"/>
</patternset>
</webinf>
<fileset dir="${warpath}/jsps/"/>
<fileset dir="${warpath}/WEB-INF/classes/"/>
<fileset dir="${warpath}/WEB-INF/lib/"/>
</war>
jsps folder --contains all
jsp's
classes folder - all classes required.
War file is also deployed properly. but when i am hitting my first jsp i am getting this error.
class 'hello.sahil.hellobean' could not be loaded.
Need Help !
thanx