I need to push and pull files into a internal corporate sharepoint. I've never worked with a sharepoint before so forgive the questions. I downloaded the cpan module SharePoint::SOAPHandler. So, here is the sharepoint url:
https://operations.web.myworksite.com/sites/CAPCOET3/jim/SitePages/Home.aspx
So, the entries would include:
my $sharepointobj = SharePoint::SOAPHandler ->new;
$sharepointobj ->sp_creds_domain(’operations.web.myworksite.com:443′);
$sharepointobj ->sp_creds_user(’DOMAIN_NAME_CAPS\username’);
$sharepointobj ->sp_creds_password(’some_password’);
print “$_\n” for @{$sharepointobj ->fdls(”, ‘Shared_Documents’)};
Can anyone help filling out these fields based on the url above. Or if the SharePoint::SOAPHandler module is not the way to go maybe advice on the soap call.
After googling I found that you can access the sharepoint like a windows share. I have samba working with linux to access windows shares, but haven't been able to do it here. Anyone know if that would be correct. Thanks.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.