Archive for February, 2009

XSLT 1.0, Join a list of elements’s value with separator

By admin - Last updated: Thursday, February 26, 2009

In order to join a sequence with a customized separator in XSLT 1.0, similar to C# function string.Join( array, separator), I’ve come up with a template which takes the sequence and separator as parameter.
Given a sample XML

<?xml version=”1.0″ encoding=”utf-8″ ?>
<?xml-stylesheet type=”text/xsl” href=”ElementJoin.xslt”?>
<Root>
  <Years>
    <int>2008</int>
    <int>2009</int>
    <int>2010</int>
  </Years>
  <Technologies>
    <Java>SUN</Java>
    [...]

WCF Soap11 vs Soap11WSAddressing10 vs Soap11WSAddressingAugust2004 vs Soap12 vs Soap12WSAddressing10 vs Soap12WSAddressingAugust2004

By admin - Last updated: Sunday, February 22, 2009

I’ve done some quick test on WCF interoperability of the SOAP versions and WSAddressing.
SOAP 1.1 vs SOAP 1.2

SOAP 1.2 is an extended version of SOAP 1.1, it does everything that SOAP 1.1 offers,
SOAP 1.2 provides clear processing model and it is based on XML infoset, it has no dependency on the underlying transport protocol. E.g. [...]