From: Stephen Bannasch Date: 2006-03-24T07:05:44+09:00 Subject: using builder to make jnlp xml elements with "-" in name? I'm trying to use builder to construct jnlp files. I need to create elements with "-" in the name and can't. For example I need to output the following xml fragment: Here's what I tried with builder: x = Builder::XmlMarkup.new(:target => $stdout, :indent => 1) x.security { x.all-permissions } but the "-" is parsed in the name and this produces a NameError NameError: undefined local variable or method `permissions' for main:Object Is there a way to do this? -- - Stephen Bannasch Concord Consortium, http://www.concord.org