can"t find xml-parsing module...
can"t find xml-parsing module...
am 27.05.2006 11:30:20 von Zorro
Hello,
I need to parse xml, but am not allowed to install modules on the
server. I have no idea which of the modules installed on the server
will do the job. This is the list of installed modules :
ByteLoader.pm
B.pm
DynaLoader.pm
Config.pm
Cwd.pm
DB_File.pm
Encode.pm
Errno.pm
Fcntl.pm
GDBM_File.pm
IO.pm
NDBM_File.pm
O.pm
ODBM_File.pm
Opcode.pm
POSIX.pm
SDBM_File.pm
Safe.pm
Socket.pm
Storable.pm
XSLoader.pm
attrs.pm
encoding.pm
lib.pm
ops.pm
threads.pm
re.pm
AnyDBM_File.pm
AutoLoader.pm
AutoSplit.pm
Benchmark.pm
CGI.pm
CPAN.pm
Carp.pm
DB.pm
Digest.pm
DirHandle.pm
Dumpvalue.pm
English.pm
Env.pm
Exporter.pm
Fatal.pm
FileCache.pm
FileHandle.pm
FindBin.pm
Memoize.pm
NEXT.pm
PerlIO.pm
SelectSaver.pm
SelfLoader.pm
Shell.pm
Switch.pm
Symbol.pm
Test.pm
Thread.pm
UNIVERSAL.pm
abbrev.pl
assert.pl
attributes.pm
autouse.pm
base.pm
bigfloat.pl
bigint.pl
bigint.pm
bignum.pm
bigrat.pl
bigrat.pm
blib.pm
bytes.pm
bytes_heavy.pl
cacheout.pl
charnames.pm
complete.pl
constant.pm
ctime.pl
diagnostics.pm
dotsh.pl
dumpvar.pl
exceptions.pl
fastcwd.pl
fields.pm
filetest.pm
find.pl
finddepth.pl
flush.pl
getcwd.pl
getopt.pl
getopts.pl
hostname.pl
if.pm
importenv.pl
integer.pm
less.pm
locale.pm
look.pl
newgetopt.pl
open.pm
open2.pl
open3.pl
overload.pm
perl5db.pl
pwd.pl
shellwords.pl
sigtrap.pm
sort.pm
stat.pl
strict.pm
subs.pm
syslog.pl
tainted.pl
termcap.pl
timelocal.pl
utf8.pm
utf8_heavy.pl
validate.pl
vars.pm
vmsish.pm
warnings.pm
Quota.pm
Expect.pm
Apache2.pm
APR.pm
DBI.pm
Mysql.pm
SNMP.pm
mod_perl.pm
LWP.pm
URI.pm
ycp.pm
Re: can"t find xml-parsing module...
am 27.05.2006 11:38:36 von Zorro
P.S.
the following creates a server error :
use CGI::XMLForm;
Re: can"t find xml-parsing module...
am 27.05.2006 19:01:09 von Sherm Pendley
"zorro" writes:
> I need to parse xml, but am not allowed to install modules on the
> server.
Has the admin or another authority specifically denied Perl modules? Or is
the restriction really that you don't have root access?
If it's the latter, then you *can* install modules, albeit only in your own
user space. Have a look at "perldoc perlmodinstall".
sherm--
--
Cocoa programming in Perl: http://camelbones.sourceforge.net
Hire me! My resume: http://www.dot-app.org
Re: can"t find xml-parsing module...
am 27.05.2006 19:05:20 von Sherm Pendley
"zorro" writes:
> the following creates a server error :
>
> use CGI::XMLForm;
This is a Frequently Asked Question:
perldoc -q server error
Please - consult the available documentation before asking thousands of
people around the world to do so for you.
sherm--
--
Cocoa programming in Perl: http://camelbones.sourceforge.net
Hire me! My resume: http://www.dot-app.org
Re: can"t find xml-parsing module...
am 27.05.2006 21:48:31 von Zorro
Sherm Pendley wrote:
> "zorro" writes:
>
> > the following creates a server error :
> >
> > use CGI::XMLForm;
>
> This is a Frequently Asked Question:
>
> perldoc -q server error
>
> Please - consult the available documentation before asking thousands of
> people around the world to do so for you.
>
The Post Scriptum I added was not a question. It's meant to inform a
person who is attempting to help me, that out of the hundred modules I
have listed CGI::XMLForm is one that I have already tried but without
success. It's like asking "Besides CGI::XMLForm, do you see a module
here that can parse XML? Thank you."
Re: can"t find xml-parsing module...
am 02.06.2006 19:30:12 von nobull67
zorro wrote:
> Hello,
> I need to parse xml, but am not allowed to install modules on the
> server.
Are you sure? Are you really sure? Are you really really sure?
Maybe you are not allowed to install modules in the shared module
directory.
Maybe you are not allowed to install modules that are not pure-Perl.
But if you are allowed to install scripts there is no reason why you
shouldn't be permitted to install pure-Perl modules in your own private
driectories. (There's nothing bad you could do by installing a module
that you could not do without).
> I have no idea which of the modules installed on the server
> will do the job. This is the list of installed modules :
> ByteLoader.pm
> B.pm
> DynaLoader.pm
> Config.pm
[ ... a list of modules, all with single component names ]
That's not the full list. You need to list all the *.pm files
_recursively_ to get all the modules.
None of those parse XML.