The following PERL code snipet request
(automated client request, OR, it can be JUST A PLAIN BROWSER REQUEST)
needs to be converted to Java2-1.3:
$urlreq="https://myname:mypaswd@ www.farm.com/apps/animalsX?DOG=bo xer&COLOR=brown "
$ua->agent("Mozil la/3.0");
my $request = new HTTPS::Request( 'GET', $urlreq);
$request->content_type(' application/x-www-form-urlencoded');
..
.. (collect data and save it).
..
Anyone have a snipet sample, in Java, of how I do this?
HTTPS seems makes things a bit more complicated in Java.
Notice there is authentication AND extra properties
in the URL.
This is important to me
and am willing to pay
for someone's time.
Thanks,
Carl
(automated client request, OR, it can be JUST A PLAIN BROWSER REQUEST)
needs to be converted to Java2-1.3:
$urlreq="https://myname:mypaswd@ www.farm.com/apps/animalsX?DOG=bo xer&COLOR=brown "
$ua->agent("Mozil la/3.0");
my $request = new HTTPS::Request( 'GET', $urlreq);
$request->content_type(' application/x-www-form-urlencoded');
..
.. (collect data and save it).
..
Anyone have a snipet sample, in Java, of how I do this?
HTTPS seems makes things a bit more complicated in Java.
Notice there is authentication AND extra properties
in the URL.
This is important to me
and am willing to pay
for someone's time.
Thanks,
Carl