Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: IVJP
  • Order by date
  1. IVJP

    print array name

    How do I return an actual array name? This doesn't work, I just want perl to return "array1" when executed. my @array1 = qw (1 2 3 4); &Check(\@array1); sub Check { @pushedarray = @{$_[0]}; print \@{$_[0]}; } Result: @{ARRAY(0x18a62ca0)}
  2. IVJP

    SharePoint/NTLM authentication using Perl, 401 Unauthorized, Credentials for 'Domain\User' failed

    I made up the website since its internal. It is an example of what I am trying to hit
  3. IVJP

    SharePoint/NTLM authentication using Perl, 401 Unauthorized, Credentials for 'Domain\User' failed

    Also wanted to point out that my ad account gets locked...
  4. IVJP

    SharePoint/NTLM authentication using Perl, 401 Unauthorized, Credentials for 'Domain\User' failed

    this is the url: my $url = 'http://sharepointsite.net/page.aspx'; # website I am trying to hit
  5. IVJP

    SharePoint/NTLM authentication using Perl, 401 Unauthorized, Credentials for 'Domain\User' failed

    thanks, here is my script - this is still not working: #!/usr/bin/env perl use strict; use warnings; use LWP::Debug qw(+); use LWP::UserAgent; use HTTP::Cookies; use HTTP::Request::Common; use Authen::NTLM; use Authen::Ntlm; ntlmv2(1); my $ua = new LWP::UserAgent(keep_alive...
  6. IVJP

    SharePoint/NTLM authentication using Perl, 401 Unauthorized, Credentials for 'Domain\User' failed

    I am unable to authenticate to a SharePoint site using NTLM authentication, getting 401 Unauthorized, Credentials for 'Domain\User' failed. My password is correct, but I think I might be having an issues with headers or handshaking with the site. Please help!! LWP::UserAgent::request: ()...
  7. IVJP

    403 Forbidden/LWP UserAgent - please help

    That worked, thank you!
  8. IVJP

    undefined subroutine in a popular perl Module

    I needed to have Authen::NTLM module installed. Authen::Ntlm and Authen::NTLM are different modules. Ntlm requires NTLM. Works now!
  9. IVJP

    undefined subroutine in a popular perl Module

    Hello Tek Tippers, I cannot get my head around why I am getting this error, when trying to access my website. Undefined subroutine &LWP::Authen::Ntlm::ntlm_domain called at /tmp/perl/LWP/Authen/NTLM.pm line 36. I am using NTLM v.5 and tried to upgrade to v.6 and even downgrade to v.1, only to...
  10. IVJP

    403 Forbidden/LWP UserAgent - please help

    Hello Tek-Tippers, I am having a problem accessing an asp.net site and get a 403 Forbidden error with my script. This does not happen to any html type website so I am asking you for help to scrape asp.net site. Thank you in advance for all the help. use LWP::Debug qw(+); use...

Part and Inventory Search

Back
Top