Hi,
I have a perl module which uses Inline::Java to call my java code.
======================================
use Inline::Java;
sub call_java_file_parser
{
use Inline::Java => "DATA";
my ($file_path, $file_content) =
@_;
}
# Do not delete!
1;
__DATA__
__Java__
....my java code goes here....
======================================
When I compiled it, I got an error message saying "Can't locate Inline/Java.pm in
@INC (
@INC contains:

/iw-home/iw-perl/lib

/iw-home/iw-perl/site/lib d:\iw-home\iw-perl\vendor\lib ".
I am using TeamSite 6.1.
Under my "vendor\lib\Inline" directory, I only saw C.pm and CPP.pm, no Java.pm.
In TeamSite 6.1, where and how can I get Inline/Java.pm ?