Hi,
I need to define a xsl:param with a string that contains & character for further processing. 
For example:
<xsl:param name="greeting" as="xs:string">Hi & Bye</xsl:param>
Important Notice: 
I am using a xslt converter component in a webservice tool. What I do, is that I just initialize the param and as the webservice is called the param is set to a value of a variable which was set in previous steps. So I have no control on the string, i.e meaning I can't use &
Any ideas how to do that?
Thanks in advance.