Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Re: Oracle 9iAS Reports

Re: Re: Oracle 9iAS Reports

From: <solbeach_at_cox.net>
Date: Mon, 9 Aug 2004 19:34:53 -0400
Message-Id: <20040809233454.MCXC2552.fed1rmmtao09.cox.net@smtp.west.cox.net>


use LWP::UserAgent;
my $ua = LWP::UserAgent->new() || die "Unable to create new UserAgent object"; $ua->timeout(86400);
my $url = 'http://devias.mwh.com:7778/reports/rwservlet';

my %form_data = (

   SERVER => 'repdevias',
   USERID => 'username/password_at_dev',
   REPORT => 'sysdate',

   DESTYPE => 'FILE',
   MODE => 'CHARACTER',
   DESNAME => '/tmp/apwork.txt'
   ,STATUSFORMAT => 'XML'
);

my $response = $ua->post($url, \%form_data); print $response->status_line(),"\n";
print $response->content();



Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--

Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
Received on Mon Aug 09 2004 - 18:30:47 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US