Not able to download the file

Dear Experts,
I m using the Solaris operating system and WebSphere as application server. I want to download xml file using following url

http://XXX.XXX.XXX.XXX:9080/wasPerfTool/servlet/perfservlet?server=XYZ

And the download file should saved into file.

Can anyone help out. How to go on further ???

Thanks
Naree

Besides the fact that I don't know if the output of that URI is (valid) XML anyway, maybe you could read up (man) on basic download tools as in (e)links (-dump to stdout and redirect output) or wget (-O or --output-document)?

Dear Expert,
I was using wget and i have following script to accomplish it, but it is throwing an error.

#!/bin/sh
DIR=/export/home/wasadmin/scripts
FILE=dailyinfo.`date +"%Y%m%d"`
LOGFILE="wget.log"
URL="http://192.168.25.90:9080/wasPerfTool/servlet/perfservlet?server=merchant95"
cd $DIR
wget $URL -O $FILE -o $LOGFILE

Error:
ld.so.1: wget: fatal: libintl.so.8: open failed: No such file or directory
Killed

Please Help me.

Thanks
Naree

That's not a scripting issue but an issue with an incomplete installation or upgrade of whatever libraries 'wget' requires. Please look at your Operating Systems documentation if you're not familiar with verifying, installing or upgrading packages.