Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^5: using perl to read in details from a sharepoint site

by strider corinth (Friar)
on Sep 18, 2009 at 16:59 UTC ( [id://796163]=note: print w/replies, xml ) Need Help??


in reply to Re^4: using perl to read in details from a sharepoint site
in thread using perl to read in details from a sharepoint site

It looks to me like you're setting up your $soap object and then not using it to actually make your first call. Instead, you're building a new LWP user agent without any credentials associated with it, and using that.

Try replacing everything from the line starting 'my $ie=' with the following:

use Data::Dumper; $soap->transport->credentials( @credentials ); # you probably don't n +eed this my $call= $soap->GetListCollection(); die $call->faultstring() . "\n" . Dumper( $call->faultdetail() ) . "\n +" . $call->faultactor() . "\n" if defined $call->fault();
- John

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://796163]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-19 02:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found