Hi Jan,
Can you email the XML to yourself instead of using the logging action (which has a character limit)? Or if the email fails, write the XML to a multi-line field on a list somewhere.
Cheers,
Chris
I agree with Ben - try to send the response body to your email to be sure it does contain what you expect.
Second thing - what "Content Type" in request header are you using? It should be: application/soap+xml; charset=utf-8.
And the last thing - try changing Method from "SOAP 1.2" to "POST".
I would also recommend you to use the following xPath Query when working with the XML:
//*/@LoginName
Yours doesn't seem to work for the response body XML as the Name Space differs.
Regards,
Tomasz
I do receive the following XML when testing using postman app:
Verify if you are getting the similar response body for your group.
Regards,
Tomasz
You could as well use this query (to exclude all records from your group that are not a regular users, but for ex. a claim or an ad group):
//*[contains(@LoginName,'@')]/@LoginName
but from what I recall when testing xpath in Nintex "Query XML" none from the functions worked, as the xpath syntax is not fully supported. But you can give it a try
Regards,
Tomasz
Thanks for your reply Chris. I tried this already before but the email and also the multi line field remained empty. I will try it again it must be some issue with the data type...
Hi Tomasz thanks for your reply. This more generic XPath (//*/@LoginName) is doing the job and it's either working with POST or SOAP 1.2.
The only thing that is weird is that I can't send the XML via email or write it in a multi line text field...
Cheers
Jan
Hi Janasmuth,
could you post how this was resolved? I am having the same requirement.
Hi TomaszPoszytek
I have following the same steps and unable to get response.
I am getting the response as attached and Query XML was failing.
I have tried with the Xpath as well
/defaultNS:GetUserCollectionFromGroup/defaultNS:Users/defaultNS:User/@Name
/defaultNS:GetUserCollectionFromGroup/defaultNS:Users/defaultNS:User/@Email
//defaultNS:GetUserCollectionFromGroup/defaultNS:Users/defaultNS:User/@Name
/defaultNS:GetUserCollectionFromGroup/defaultNS:Users/defaultNS:User/@Email
/defaultNS:GetUserCollectionFromGroupResult
@Admin_Maraicar
please try to use
//*/@LoginName
This worked for me. The xml collection then needs to be iterated in a foreach.
Let me know if that works.
HI @vaibhavk
Did you get XML response as above.
Did you use SOAP 1.2 or SOAP 1.1 or POST
Thanks a lot.
It started working fine now.
Sometime, suddenly getting 403 Forbidden for the same account. Do you have any ideas about it or faced it.