Я использую рабочий процесс Nintex. Я добавил веб-сервис и настроил получение данных из GetUserProfile.asmx. После добавления веб-сервиса Nintex покажет, как будет выглядеть мыло. вот мыло.
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetUserPropertyByAccountName xmlns="http://microsoft.com/webservices/SharePointPortalServer/UserProfileService">
<accountName>{WorkflowVariable:tmpApprover}</accountName>
<propertyName>PreferredName</propertyName>
</GetUserPropertyByAccountName>
</soap:Body>
</soap:Envelope>
Nintex также позволяет увидеть, как выглядят результаты в xml:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetUserPropertyByAccountNameResponse xmlns="http://microsoft.com/webservices/SharePointPortalServer/UserProfileService">
<GetUserPropertyByAccountNameResult>
<IsPrivacyChanged>false</IsPrivacyChanged>
<IsValueChanged>false</IsValueChanged>
<Name>PreferredName</Name>
<Privacy>Public</Privacy>
<Values>
<ValueData>
<Value xsi:type="xsd:string">Holmberg, Nancy</Value>
</ValueData>
</Values>
</GetUserPropertyByAccountNameResult>
</GetUserPropertyByAccountNameResponse>
</soap:Body>
</soap:Envelope>
Я добавил «Query XML» и попробовал несколько вариантов xpath для PreferredName из базы данных профиля пользователя, и это дает мне «falsefalsePreferredNamePublicHolmberg, Nancy».
Вот часть кода, который я пробовал
/soap:Envelope/soap:Body/defaultNS:GetUserPropertyByAccountNameResponse/defaultNS:GetUserPropertyByAccountNameResult/defaultNS:Values/defaultNS:ValueData/defaultNS:Value/@xsi:type
или
//defaultNS:xml/defaultNS:Values/defaultNS:ValueData/defaultNS:Value
или
//defaultNS:xml/defaultNS:Name
или
//@PreferredName
Но все они дают мне falsefalsePreferredNamePublicHolmberg, Nancy. Я должен дать мне Холмберга, Нэнси.
Пожалуйста, предложите.