Skip to main content

Posts

Biztalk - XSLT Looping sample

<xsl:template name="idTemplate">    <xsl:element name="MRooms_UserId">       <xsl:template match="/s0:RESPONSE">          <xsl:for-each select="/s0:MULTIPLE/s0:SINGLE">          <xsl:if test="string(s0:KEY/@name)='id'"/> <xsl:value-of select="s0:KEY/s0:VALUE/text()"/>    </xsl:if>   </xsl:for-each>       </xsl:template>    </xsl:element> </xsl:template> <xsl:template name="idTemplate">    <xsl:element name="MRooms_UserId">          <xsl:for-each select="/s0:RESPONSE/s0:MULTIPLE/s0:SINGLE/s0:KEY">          <xsl:if test="string(@name)='id'"> <xsl:value-of select="s0:VALUE/text()"/>    </xsl:if>          </xsl:for-each>    </xsl:element> </xsl:template>

Biztalk Mapping using XLST

<xsl:template name="idTemplate">    <xsl:element name="MRooms_UserId">          <xsl:for-each select="/s0:RESPONSE/s0:MULTIPLE/s0:SINGLE/s0:KEY">          <xsl:if test="string(@name)='id'"> <xsl:value-of select="s0:VALUE/text()"/>    </xsl:if>          </xsl:for-each>    </xsl:element> </xsl:template>

Ubuntu - Running downloaded installer at ADMIN Level (SU)

Running downloaded installer at admin level: mccrazy@Lenovo-N22:~$ sudo su [sudo] password for mccrazy: root@Lenovo-N22:/home/mccrazy# cd Downloads/ root@Lenovo-N22:/home/mccrazy/Downloads# sudo nautilus (nautilus:3243): Gtk-WARNING **: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged. ** (nautilus:3243): CRITICAL **: Another desktop manager in use; desktop window won't be created ** (nautilus:3243): WARNING **: Couldn't save the desktop metadata keyfile to disk: Failed to create file '/root/.config/nautilus/desktop-metadata.7MLMFZ': No such file or directory Nautilus-Share-Message: Called "net usershare info" but it failed: 'net usershare' returned error 255: net usershare: cannot open usershare directory /var/lib/samba/usershares. Error No such file or directory Please ...