Extensible Markup Language (XML) is a structured document format that defines human- and machine-readable encoding rules.
0
votes
0answers
6 views
Extract nodes based on attribute and node values
For the below XML, I'm trying to extract the nodes based on attribute and node values.
Based on attribute class=pass and h1 contains ('objectives'), I'm trying to extract the below output.
...
1
vote
0answers
4 views
Can XSL-FO be use to created MANY documents?
I am looking into various technologies associated with formatting data into document form. There are many software platforms to do so, but most are quite expensive.
I stumbled upon XSL-FO and have ...
1
vote
0answers
3 views
How to export currency exchange from metatrader?
I'm lookin for a solution, how to export currency exchange from metatrader (4 or 5)
to web (json, csv, xml..)
I saw that it is possible export to excel file..
0
votes
0answers
8 views
Show escaped html tags from XML as well as non-escaped tags in XSLT
I have these escaped tags in my XML file: <strong> --> The whole xml is like this:
<test>
<TEST2>
<li><strong>blablablabla</li>
</TEST2>
...
-2
votes
1answer
24 views
how to read this xml
<Country Name='EGYPT'>
<Destination Name='ALEXANDRIA'>
<Resort>
<ResortID>5568</ResortID>
...
0
votes
0answers
6 views
CodeMirror TO GWT wrapper inside window issue
I have been trying to get my Textarea syntax highlighted for a couple of days now.
And I am using Google Web Toolkit.
So I have ended up trying out http://code.google.com/p/codemirror2-gwt/, and been ...
0
votes
0answers
5 views
Spring config XML file with context/jdbc/tx schemalocation
I want to use spring autowired with conjunction of jdbc for initial derby data, and jpa.
Currently I try such a config file:
<beans xmlns="http://www.springframework.org/schema/beans"
...
0
votes
0answers
12 views
SOAP fault message
Have a question....
I'm writing code in c#, So I have to send a SOAP fault message over to another HTTP web service if something goes wrong with a server, so I have this code:
...
0
votes
2answers
10 views
XSLT Sort without for-each
i have the exercise to sort a xml file without using "for-each".
With my script, i get the entrys, but they are not sorted.
The Xml File:
http://www.w3schools.com/xml/cd_catalog.xml
...
0
votes
0answers
7 views
XML message exchange between two servers
Consider the following situation: Two servers, say A and B, communicate via XML message exchange. The two servers can not communicate directly and both servers produce and consume XML messages. Server ...
0
votes
3answers
23 views
Generate XML from Dictionary
I have a dictionary with key value pair. I want to write it to XML using LINQ.
I am able to create the XML document using LINQ but not sure how to read the values from dictionary & write into the ...
0
votes
0answers
3 views
XML Schema questions
So I have this data.xml schema code:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://jeresapp.dk" xmlns="http://jeresapp.dk" ...
0
votes
0answers
2 views
How to post XML data with cURL using cmd in windows 7?
I am trying to post some xml data using curl on command line. Particularly I m trying to run the following command to connect to a billing service provider:
curl ...
0
votes
0answers
9 views
Problems with writing data in the correct elements via XML Parser
I want to import records from an xml file into a sql database. The first record is saved correctly, the second is filled with the data of two records, the third with the data of three records and so ...
0
votes
1answer
8 views
Create POJOs from XML
Is it possible to create POJOs directly just from XML, without XML schema?
I have very large XML file and it's almost impossible to write Java classes by hand.