Joe,
Thanks. I corrected the Get_Worker_Response to Get_Workers_Response and included the env name space and it worked like a charm.
Thanks again Joe, "You Are The Man".
Regards,
Jorbri1513
Code:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:wd="urn:com.workday/bsvc" wd:version="v17">
<xsl:strip-space elements="*"/>
<xsl:output indent="yes" method="text"/>
<xsl:template match="wd:Get_Workers_Response">
<xsl:for-each select="wd:Response_Data/wd:Worker/wd:Worker_Data">
<xsl:value-of select="wd:Worker_ID"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>