From: <[EMAIL PROTECTED]>
> Jelly seems to be stripping the namespace declaration off my embedded xml
> when getBodyText() is being called.
>
> e.g. the following line:
>             <env:Envelope
>                 xmlns:env="http://schemas.xmlsoap.org/soap/envelope/";
>                 xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance";
>                 xmlns:xsd="http://www.w3.org/1999/XMLSchema";>
>
> is being displayed on system.err as:
>         <env:Envelope>
>
> This is causing SOAP some headaches.....any clues?

My mistake; I'll fix that shortly. Sorry about that...


Incidentally a tag can trim its whitepspace; by default this is on for all
Jelly-tags; you can turn whitespace trimming off via

<j:forEach trim="false" ...>

or by using the <j:whitespace> tag which preserves whitespace of its body...

<j:forEach items="...">
    <j:whitespace>  foo   </j:whitespace>
</j:forEach>

James


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to