Hi guys I would like to open Netscape Navigator in order to show an XML Document on UNIX HP Platform.
I did it in Windows using I.E.
use OLE;
sub open_ie {
$ie = CreateObject OLE "InternetExplorer.Application.1" ||
die "CreateObject: $!";
$ie->{Visible} = 1;
$ie->Navigate($xmlfilename);
}
It works in Windows platform. I am looking for the equivalent!
system(netscape $filename) doesn't work..It doesn't open the file, just netscape
Cheers!
I did it in Windows using I.E.
use OLE;
sub open_ie {
$ie = CreateObject OLE "InternetExplorer.Application.1" ||
die "CreateObject: $!";
$ie->{Visible} = 1;
$ie->Navigate($xmlfilename);
}
It works in Windows platform. I am looking for the equivalent!
system(netscape $filename) doesn't work..It doesn't open the file, just netscape
Cheers!