Bugs item #1550632, was opened at 2006-09-01 09:06
Message generated for change (Comment added) made by derekc
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1550632&group_id=105970

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: candle
Group: v3.0
>Status: Closed
>Resolution: Invalid
Priority: 5
Submitted By: duanej (duanejoh)
>Assigned to: Derek (derekc)
Summary: Condition cannot contain the < character

Initial Comment:
I've got a Condition that looks like the following:

<Condition Message='No Dir.'>
    TARGETDIR<>"" AND ACTION<>ADMIN
</Condition>

which gives the following error:

C:\wit15dev\installers\Alloy\alloy.wxs(381): error 
CNDL0104: Not a valid source
file; detail: Name cannot begin with the '>' 
character, hexadecimal value 0x3E.
Line 381, position 14.

All is well if I change the <> to > (but of course 
the condition is wrong!).

----------------------------------------------------------------------

>Comment By: Derek (derekc)
Date: 2006-09-01 09:21

Message:
Logged In: YES 
user_id=518766

Yes, that is invalid XML.  You need to either use the escape
sequences:
&lt; for <
&gt; for >
or put the entire condition in a CDATA section (this is why
conditions are inner-text to begin with - so that you can
easily put them in a CDATA section to avoid problems with <
and >).  If you require further help with this, please
follow-up with [email protected] (instead of
using this bug).

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=642714&aid=1550632&group_id=105970

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-devs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to