Search found 3 matches
- Tue Feb 08, 2011 5:34 pm
- Forum: Technical / Scripting
- Topic: HTTP POST with MD5 Digest Authentication
- Replies: 3
- Views: 8026
Good thought
I had not really thought about that, so thanks. I am a Linux person primarily. Was thinking of something native to Windows though, that might not require any additional installed components (other than Macroscheduler). But, along your line of thought, could also look at cURL for Windows too (as it c...
- Mon Feb 07, 2011 11:57 pm
- Forum: Technical / Scripting
- Topic: HTTP POST with MD5 Digest Authentication
- Replies: 3
- Views: 8026
FWIW, perl code (run from Linux)
Need to duplicate this with some equivalent in Macroscheduler environment: ================================================= #!/usr/bin/perl use strict; use LWP::UserAgent; my $ua = LWP::UserAgent->new; # # $ua->credentials( $netloc, $realm, $uname, $pass ) $ua->credentials('192.168.150.114:80','PUS...
- Mon Feb 07, 2011 11:46 pm
- Forum: Technical / Scripting
- Topic: HTTP POST with MD5 Digest Authentication
- Replies: 3
- Views: 8026
HTTP POST with MD5 Digest Authentication
Hello, Am evaluating Macro Scheduler. Was wondering if there was a way to native make an HTTP POST that had to authenticate using MD5 Digest (much the same way Perl's LWP::UserAgent or C#'s System.Net.HttpWebRequest can)? I can't use Basic Authentication (at least not the way I understand it) with t...