Forum Discussion
robert_parks
6 years agoNew Contributor III
Any idea on converting the LDAP DateTime string?
Specifically the LastLogOn?
robert_parks
6 years agoNew Contributor III
Found it!
Date.parse(parseInt($Date)/10000 - 11644473600000)
Where $Date is LastLogon or LastLogonTimestamp from AD.
Check this link too… Converting Varchar data into Datetime - #11 by anivtk
There is not iteration capability within the SOAP Snap, so here’s an idea:
Turn your SOAP request into a triggered pipeline, which you call from a pipeline with the REST Snap. For each request that responds with processing, use that to set the “Has Next” option, and the REST GET Snap will iterate for you. In the “host” pipeline you may want to filter out the responses with Processing by adding a filter Snap.
Would that work for you?