Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
462 views

XML literals in JavaScript?

E4X (Ecma-357) is an extension to ECMAScript that adds XML literals as first-class primitives. That's awesome, but with only Mozilla and Adobe support (without V8 and IE support too), E4X is ...
6
votes
1answer
300 views

Why Don't Dynamic XML Literals Inherit Default Namespace

I have an XElement that I need to create via dynamic xml literals/embedded expressions and I need it to inherit the default namespace. This doesn't appear possible though through everything I've ...
4
votes
2answers
868 views

How to prevent HTML encoding for embedded expressions in XML Literals (VB.NET)?

With the following code: Dim x As System.Xml.Linq.XElement = _ <div> <%= message.ToString() %> </div> Dim m = x.ToString() ...if message is HTML, then the < and > characters ...
3
votes
5answers
186 views

Programming Languages that support XML literals

What are all the programming languages that support XML literals natively or via extension? I know of VB.NET, Scala, and Factor. Any others?
3
votes
2answers
331 views

How can I embed XElements into XML literals in VB.NET?

In VB.NET I can easily embed strings into XML literals using <xml><%= "my string" %></xml>. How can I embed an XElement instance? I know I can use methods on the XElement, XNode, ...
3
votes
1answer
494 views

Conditional XML Literal

I've tried searching on this but can't seem to find an answer anywhere, so hopefully someone here can help. I want to insert an conditional XML tag based on whether or not a count is above one, but am ...
2
votes
1answer
207 views

xml namespace and xml literals

I'm experimenting with xml literals in vb.net and there's something I don't get. Here's a small sample that illustrates the problem. I'm adding two PropertyGroup nodes to an empty Visual Studio ...
2
votes
2answers
219 views

How to produce integer literal as an attribute in Scala XML output?

I expect the following code to produce XML value with the following content: <TestInteger value="10"/> Compiler gives of an error scala> import scala.xml._ import scala.xml._ scala> ...
2
votes
1answer
427 views

LINQ to SQL to XML (using XML literals in C#)

Is it possible to use variables like <%=person.LastName %> in XML string this way? XElement letters = new XElement("Letters"); XElement xperson = ...
2
votes
1answer
333 views

How to dynamically set local XML namespace?

I have several xml namespaces that expose the same schema. I want to use a function that dynamically accepts a namespace and applies the attributes or the properties according to the specified ...
2
votes
3answers
469 views

XML Literal with Linq statement

I am going to be performing an XSLT transformation, transforming XML to an HTML table. It's tabular data, so that's why I'm not using div's. ;) Anyway, I need to repeat one part of the XSLT for the ...
2
votes
3answers
365 views

VB.NET XML Literals Parsing

If I have a text stored in db, file, resource does not matter: <code><%= Integer.MaxValue %></code> Is there a way to do this: Dim el As XElement = XElement.Parse({variable ...
2
votes
2answers
419 views

IntelliSense in VB Xml literals

is there a way to enable IntelliSense for XML literals in VB9 (VS 2008)? The ideal source of IntelliSense is an XSD document, but I can use anything else format to do it. Thanks
2
votes
1answer
635 views

Recursion with XML Literals in VB.NET is possible?

I have a class called Profile that has some simple properties and then it can have a collection of ProfileItem that again has some simple properties and then it can have a collection of ProfileItem ...
2
votes
4answers
882 views

Using strings in XML Literals

I'm a C# developer who's fumbling in the first VB code he's written since VB6, so if I am asking a rather obvious question, please forgive me. I decided to experiment with XML Literals to generate ...
1
vote
1answer
60 views

XLinq with encrypted files?

How do I create/read/write XLinq and/or VB XML Literals from and to encrypted xml files?
1
vote
1answer
58 views

Is there a way to use XML Literals to view results of a Web Service call?

I'm finding this post very useful.. http://stackoverflow.com/questions/102084/hidden-features-of-vb-net XML literals seem to be very powerful.. I'm wondering if there's any way to use them to view ...
0
votes
1answer
28 views

Is it possible to make a node optional in VB.NET XML Literals?

Dim task As XElement = <task> <body>body</body> <optional><%= myVar %></optional> ...
0
votes
1answer
371 views

VB.NET XML Literal Expression Expected with Linq to XML

I have the same problem as stated in this question, but the accepted solution there was a "works on my machine" answer. Here is my code: Dim document As XDocument = _ <?xml version="1.0" ...
0
votes
2answers
219 views

Writing XML Exactly as XML Literals are Written

I'm transforming some XML from DrawingML to XAML. Unfortunately, the XAML one is not working as expected with white spaces, but I have found a work around. Here's the problem: Problem Statment I ...
0
votes
1answer
472 views

How do I create a strongly typed view page using ASP.NET MVC VB.NET XML Literals View Engine?

I am using the ASP.NET MVC VB.NET XML Literals View Engine created by Dmitry Robsman and described on his blog in this post. ...