Re: Re: Oracle 9iAS Reports
- From: Sanjay Mishra <smishra_97@xxxxxxxxx>
- To: oracle-l@xxxxxxxxxxxxx
- Date: Tue, 10 Aug 2004 09:26:56 -0700 (PDT)
Thanks for all input as this way I got the point and will update after checking
both suggestion as I have two platform, one is Solaris and other Window and so
I will use Jurijs suggestion of Linux on Solaris and other Perl suggestion on
Windows
thanks
J.Velikanovs@xxxxxxxx wrote:
It is seems to be perl, or I am wrong?
Sorry I still don't know perl ;(
Is this piece use Oracle some native libraries?
What %form_data type is responsible for?
Jurijs
+371 9268222 (+2 GMT)
============================================
Thank you for teaching me.
http://otn.oracle.com/ocm/jvelikanovs.html
Sent by: oracle-l-bounce@xxxxxxxxxxxxx
10.08.2004 02:34
Please respond to oracle-l
To:
cc:
Subject: Re: Re: Oracle 9iAS Reports
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@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@xxxxxxxxxxxxx
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
-----------------------------------------------------------------
----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to: oracle-l-request@xxxxxxxxxxxxx
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
-----------------------------------------------------------------
---------------------------------
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to: oracle-l-request@xxxxxxxxxxxxx
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
-----------------------------------------------------------------
- References:
- Re: Re: Oracle 9iAS Reports
- From: J . Velikanovs
Other related posts:
- » Re: Re: Oracle 9iAS Reports
- » Re: Re: Oracle 9iAS Reports
- » Re: Re: Oracle 9iAS Reports
- Re: Re: Oracle 9iAS Reports
- From: J . Velikanovs