| Dexthor 2004-01-19, 3:01 pm |
| I am a bit lazy, but if you make a list of Jar files and the contents of
each jar file into a text file, then you can look up in the file to see
which Jar contains what.
Answering your question: this class is in the
$WAS_INSTALL_DIR/lib/app/wps.jar ( in WAS/WPS 4.x ) environment. It may be
different in WPS 5.
Sample Unix shell script:
# These variables are specific to your environment.
WAS_HOME="/opt/software/WebSphere/AppServer"
WPS_HOME="$WAS_HOME/../PortalServer"
for jfile in ` find $WAS_HOME $WPS_HOME -name "*.jar" `
do
nstr=`basename $jfile`
echo "$jfile\n-----------------------------------------------------"quote:
jar tvf $jfile >>was_libs_classes_toc.list
done
HTH
Dexthor.
"psailaja" <psailaja@rediffmail.com> wrote in message
news:224121667.1066682178888.JavaMail.wasadmin@swg3ws006...[QUOTE][color=darkred]
> Hi,
> Can anybody help me in finding the jar or zip file download that contains
> org.apache.jetspeed.portletcontainer.PortletLogImpl class file?
>
> Thanks Much.
> --
> Sailaja
|