XML
-
FooBar
CrashCourse XML technologies
Here is a quick Introduction to XML Technologies I came up with while I was preparing for my #Frydix lecture. For starters let’s say that (XML) is a markup language that defines a set of rules for encoding documents in a format which is both human-readable and machine-readable. So, check out the presentation below. [embeddoc url=”https://blog.dreamix.eu/wp-content/uploads/2015/04/2.-XML-Technologies-1.ppt” […]
-
FooBar
HOW TO CREATE IF-ELSE STATEMENT IN XPATH 1.0
If you don’t have time to read and want a working code template, then the following piece of code is your solution: [xml] concat( substring($s1, 1, number($condition)      * string-length($s1)), substring($s2, 1, number(not($condition)) * string-length($s2)) ) [/xml] If you want to understand how it works please continue reading. In XPATH 2.0 there is a conditional function […]
-
Frontpage
XML signing
Sometimes people want to exchange information in a way which guarantees that the data being send is actually the data being received. One of the option for such communication is through signed XMLs. There are a few tutorials how to sign a XML, however none of them was particularly thorough. But first things first 🙂 […]