The xml-formatting tag has no wiki summary.
-3
votes
0answers
27 views
validate xml in java [closed]
I want to validate a hard-coded string of xml, if the format is correct or not, like this one below.
System.out.println("/blah//blahh/Hello//blahh///blah/"); <--correct
...
0
votes
0answers
22 views
Parsing with castor XML parser
I have a quick question about xml parsing with Castor.
I have an incoming message which looks like
<Book>
<Page>
<Page>1</Page>
</Page>
<otherInfo>
...
0
votes
0answers
23 views
Format XML code on Eclipse with the same format as PHP DomDocument
does somebody know how to configure Eclipse XML Code format, so that the output is the same format as PHP DomDocument.
Why do I need this?
I have big xml files which I edit on Eclipse. After editing ...
0
votes
0answers
36 views
Formating XML output from JAXB from a specific architecture
I'm trying to use JAXB and I'm having difficulties :
at first I had to send through a jersey webservice an HashMap a little but complex (Map>) so I gave up and I found another way to format my data ...
1
vote
2answers
90 views
XML not formatted when XSL file exists
I have tried to display this in both Chrome and Safari. I basically took these two files out of a tutorial. However when it displays all it does is display the raw xml and it doesn't seem to read the ...
0
votes
0answers
74 views
How to customize Android XML formatter settings in Eclipse IDE?
This question is an extension of previous posts such as:
Customising the XML formatter in Eclipse?
How to configure Eclipse XML formatting?
I would like to customize the settings which are used to ...
0
votes
1answer
62 views
script/way to open a file in notepad++, reformat and save it
i have this xml file. depending on what i use to open it (wordpad, notepad, notepad++), it opens differently. for example, if i open it using wordpad, it opens as one long line. if i open it with ...
1
vote
5answers
371 views
Format XML file in c++ or Qt
I have a xml file where outputs are not getting formatted . That means all the outputs are in a single line but i want to break it tag by tag .
For e.g. -
<?xml version="1.0" encoding="UTF-8" ...
0
votes
1answer
38 views
Structuring XDocument to properly format Tags
I have an XDocument being created that gets populated with a set of data.
The output looks like so:
<Results>
<RuleResult>
<Title> RuleTitle </Title>
...
0
votes
1answer
58 views
Formatting on XMLWriter always writes all on the same line
I have a sub that im trying to use to get some XML out put, but no matter what I do the output file writes everything on the same line : Here is my code below, can you advice me on where I might be ...
2
votes
2answers
190 views
SQL Server XML Query formatting
When I query SQL Server with a FOR XML statement, I get the expected the result in the following format...that is without proper indentation ---
...
1
vote
1answer
80 views
Eclipse XML Formatting Backend Libraries
I am asking a follow-on question to help the OP from a SuperUser question which evolved into a programming question.
As you can see from the screenshots of Eclipse in my answer to that SU question, ...
0
votes
0answers
108 views
“rowMark=” in Excel template
I have an excel report template (in BIPublisher) which is essentially populated by an XML. I am performing an addition of multiple different XML nodes and assigning it to the cell. The cell is ...
2
votes
1answer
90 views
indent XML inner data with Transformer
I'm writing an XML file with this tutorial. I applied
transformer.setOutputProperty("{http://xml.apache.org/xalan}indent-amount", "4");
transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, ...
-2
votes
2answers
469 views
XML formatting Indentation Tags Matching - Linux
I have an XML file whose format is quite compressed and all tags are stick together like
...
0
votes
1answer
30 views
Eclispe plugin development AndroidXmlFormatter
I am building an eclipse plugin which modifies an android XML(layout) file. I use a dom parser internally to produce the output XML. However the XML formatting is messed up.
I want to use the android ...
0
votes
2answers
248 views
web api XmlMediaTypeFormatter exception
I want to use IoC / the dependency resolver of the web api framework for decoupling.
The XmlFormatter cant serialize interfaces,... Ok. But what would be the purpose of IoC and the DependencyResolver ...
1
vote
0answers
152 views
CGM File support in RenderX
Does RenderX support CGM file formats? Earlier the support for the same is not there. Are there any workarounds to achieve the same?
After few trails we came across a tool called JCGM which generated ...
0
votes
2answers
355 views
Is this a normal xml format?
<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
<response uri=\"/crm/private/xml/Potentials/updateRecords\">
<result>
<message>***TEST***Record(s) updated ...
0
votes
2answers
200 views
Need help in formatting JAXB output
I have some objects let's say two, A and B. These objects from the same class. I need to marshal these objects using JAXB and the output XML should be in this form:
<Root>
<A>
...
0
votes
1answer
41 views
How to perform XML style checking?
Unformatted XML is a problem in our build. I would like to include style checking for XML documents, primarily looking for poor indentation.
What is the best tool to use? (The build uses Ant).
2
votes
3answers
2k views
Writing formatted XML with XmlWriter
I'm trying to write to an XML file to the isolated storage but I would like to format it like this:-
<SampleData>
<Item Property1="AliquaXX" />
<Item Property1="Integer" />
...
0
votes
1answer
39 views
are there any good advanced tutorials/books for XML-FO?
I'm doing more and more things in XML these days - and I'm finding that I would like to be able to display my documents in complicated print layouts using XML-FO -- (specifically, with more than one ...
2
votes
1answer
224 views
Add StartElement to JAXBContext marshal
I have an object x which I want to marshal into a file.
xml of x :
<x id="0"><f1>bla</f1><f2>bla </f2><f3>bla</f3></x>
this part I figured out ... ...
1
vote
1answer
237 views
PHP SimpleXML echo problem
I have a radio station site on localhost, and the pages are a series of include and requires - they work well.
However, on one page, a schedule one, I'm displaying within a DIV some data extracted ...
2
votes
1answer
165 views
Is there a way to pretty print XML with vertical alignment?
I have a config file which has some XML like:
<Presidents>
<President first="George" last="Washington" number="1" year="1789" />
<President first="John" last="Adams" number="2" ...
0
votes
3answers
593 views
How to display content in xml format after xml parsing in grails?
I have a sample.xml which looks like this
<?xml version="1.0" ?>
<Employee>
<Name>ABC</Name>
<EmpId>100011</EmpId>
...
2
votes
1answer
152 views
Preserve formatting on Configuration.Save()
I have custom ConfigurationSection and call Configuration.Save() after some modifications against it:
var config = ConfigurationManager.OpenMappedExeConfiguration(
new ExeConfigurationFileMap() { ...
1
vote
1answer
627 views
How to preserve whitespace within an element's opening tag in XSLT
In order to avoid committing sensitive information to an SCM repository, I wrote an XSL stylesheet that removes connection string passwords from ASP.NET Web.config files. It achieves my goal of ...
2
votes
2answers
4k views
Tools to format XML in Visual Studio 2010
Is there an XML formatter available as an add-in for Visual Studio 2010? I am currently using Notepad++ and using the XML Tools plug-in to get the formatting sorted.
Is there an add-in for VS2010, ...
2
votes
1answer
2k views
xml-fo pdf table : 'colspan' when the number of columns is dynamic
I'm generating a table in a pdf document using xml-fo.
The number of columns is dynamic. Columns are only displayed when tests are passing. In tests I'm using variables like $var1, $var2, ... that ...
6
votes
7answers
2k views
Is there a stylesheet or Windows commandline tool for controllable XML formatting, specifically putting attributes one-per-line?
I am searching for an XSLT or command-line tool (or C# code that can be made into a command-line tool, etc) for Windows that will do XML pretty-printing. Specifically, I want one that has the ability ...
3
votes
2answers
3k views
Export the Eclipse XML Formatting Rules?
Is there a way to export the settings defined in Window > Preferences Dialog under XML > XML Files > Editor in Eclipse 3.5 Galileo (Java EE Package)? And where do Eclipse stores these ...
41
votes
10answers
41k views
Is there a text editor that formats XML files nicely?
I know there are many: Notepad2, Notepad++, even
UltraEdit... But I'm looking for a special feature. I want
the editor to format my XML files for human understanding.
When I open an XML file saved by ...
2
votes
3answers
1k views
Searching for a XML-FO Processor
I been trying to find an Free/Open Source XML-FO processor that i could use in .NET applications but i havent had luck finding one. Do anyone know of one that i could use?
Thanks in advance.
1
vote
1answer
215 views
Exact placement for XSL-FO
I have an item in an XML-FO page ( running through FOP ) when needs exact placement for an OCR. Whenever the page is edited (or an included page) its very difficult to get the OCR line back into ...
73
votes
17answers
61k views
Any online xml formatter or formatter in free text editor?
Any online xml formatters? Ones that properly indent the tags.
Or any free Windows text editor which has a built-in xml formatter?
158
votes
13answers
104k views
Free XML Formatting tool [closed]
Is there a free XML formatting (indent) tool available where I can past an XML string and have it formatted so I can read the XML document correctly?
Thanks
Edit ~ I am using XML Notepad on Windows ...