Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
17 replies
Subscribers
6 subscribers
Views
8374 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Integrations
Sharepoint Web Services I cannot see anywhere in the documentation on how t
Mike Lonsdale
over 11 years ago
Sharepoint Web Services
I cannot see anywhere in the documentation on how to add an entry to a list. Has anyone managed this and can point me in the right direction?
Thanks
Mike...
OriginalPostID-87319
OriginalPostID-87319
Discussion posts and replies are publicly visible
Parents
0
shelzle
over 11 years ago
OK. Using the HTTP request plugin you can call the URL
yourSP/.../Lists.asmx
. As body of the request you provide something like this
"<?xml version=""1.0"" encoding=""utf-8""?>
<soap:Envelope xmlns:soap=""
www.w3.org/.../soap-envelope""
xmlns:soap1=""
schemas.microsoft.com/.../"">
<soap:Header/>
<soap:Body>
<soap1:GetListItems>
<soap1:listName>" & pv!list_id & "</soap1:listName>
<soap1:viewName>" & pv!view_id & "</soap1:viewName>
</soap1:GetListItems>
</soap:Body>
</soap:Envelope>"
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
shelzle
over 11 years ago
OK. Using the HTTP request plugin you can call the URL
yourSP/.../Lists.asmx
. As body of the request you provide something like this
"<?xml version=""1.0"" encoding=""utf-8""?>
<soap:Envelope xmlns:soap=""
www.w3.org/.../soap-envelope""
xmlns:soap1=""
schemas.microsoft.com/.../"">
<soap:Header/>
<soap:Body>
<soap1:GetListItems>
<soap1:listName>" & pv!list_id & "</soap1:listName>
<soap1:viewName>" & pv!view_id & "</soap1:viewName>
</soap1:GetListItems>
</soap:Body>
</soap:Envelope>"
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data