Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
299 views

How to add XML processing instructions during JAXB marshal

I would like to add a processing instruction whenever a collection/array property is serialized to get something like <alice> <? array bob ?> <bob>edgar</bob> ...
2
votes
1answer
56 views

Parsing PHP embedded in XML

I read this question/answer however there wasn't any mention of it being a "bad idea", and unfortunately any search query with the words parse, xml, and php typically yield information about parsing ...
2
votes
2answers
503 views

Python 2.6 minidom: “toprettyxml” how to output XML meta-data with document (XSLT stylesheet)

I'm creating an XML document using minidom - how do I ensure my resultant XML document contains a stylesheet reference like this: <?xml-stylesheet type="text/xsl" href="mystyle.xslt"?> Thanks ...
2
votes
2answers
610 views

How to match the processing-instruction element in XSLT?

I have some processing-instructions elements inside my xml content, for example : <?legalnoticestart?> <?sourcenotestart?> <para>Content para</para> <?sourcenoteend?> ...
0
votes
3answers
42 views

Processing instruction validation in XML schema

Reasonably simple one I suppose, I just can't find anything definitive (besides the fact that there is a lack of anything definitive) Is there any way to incorporate into a schema, the requirement of ...
0
votes
1answer
30 views

Accessing processing instructions with PHP's SimpleXML

Pretty straightforward -- Is there any way to access the data of a processing instruction node using SimpleXML? I understand that SimpleXML is, well, simple; as a result it has a number of ...
0
votes
1answer
27 views

XML processing instructions and white space

I'm currently working on a XML/HTML parser for node.js (if your interested: link). Let me get right to the point: I need to know how I should handle leading whitespace inside processing instructions. ...