Extensible Markup Language (XML) is a structured document format that defines human- and machine-readable encoding rules.

learn more… | top users | synonyms

2
votes
2answers
34 views

Compressing XML before writing file

I'm trying to save a large amount of data to a XML and the file ends up with a very large size. I've searched compression but all examples I found first write the file, then read it to compress to ...
-2
votes
0answers
16 views

How do you generate an XML schema from an excel table?

I have an excel file that currently has the following tables.. Field name Type Size Id like to generate an xml schema from the excel table
0
votes
1answer
23 views

Xslt selecting remaining tokens in tokenized array

In my Xsl document I need to create a link with text containing line break, creating two sentences. I'm using tokenize to add words by splitting on the whitespace character. <xsl:variable ...
0
votes
0answers
14 views

SharePoint: Open in new tab (MSO)

In SharePoint 2010, I created a link to another document from within a document library. I have the following automatically generated ASPX file and need it to open in a new tab, but don't know where ...
1
vote
0answers
9 views

Report Builder XML no results returned

I am attempting to use SSRS to read from an XML file and generate reports based on the contents. To get started learning XML querying, I figured I would use a REALLY simple XML file, so I stripped it ...
0
votes
3answers
39 views

Display database result as XML

I have a simple SQL query, i want to query the database and return the result as XML. I used the key word for XML, but it says that XML is not a valid syntax. HELP using (SqlConnection c= new ...
0
votes
1answer
14 views

Add attributes to IXmlNode

In windows app store they changed the XmlNode to IXmlNode !!! , I tried to add attribute to the node by the normal way but I failed they removed Attributes.Append(---). Is there any solution to ...
0
votes
1answer
23 views

Merge two XML files in java and make single xml

merge 2 xml files Hi Guys, I am facing problem in merging 2 xml file. Scenario is mentioned below. Please have a look and response if you have any idea. Suppose a class Output.java contains 6 ...
0
votes
3answers
34 views

How to check if text node of xml file has a child node inside and get all data from them?

I have xml file. This is just piece of that file 1 <mainTerm> 2 <title> Abandonment </title> 3 <see> Maltreatment </see> 4 </mainTerm> 5 ...
0
votes
1answer
53 views

Google Now card UI for listview

I created a app with the CardUI libary, but I can't do the things I want to do with the libary. So I decided to recreate it in my own layout. I'm using a listview, with a CustomCursorAdapter which ...
0
votes
1answer
15 views

How do I exclude multiple XML nodes in XSLT?

I am trying to transform an XML document into HTML using XSLT. The document is external and not fully documented. To that end, I only know (and therefore handle) some of the nodes. New nodes may be ...
0
votes
0answers
9 views

XSD documentation with Nokogiri

I'm currently writing a XML schema, and I'm using the <annotation> and <documentation> tag for the documentation of the fields. My problem is, that I can't find any good software that ...
3
votes
1answer
23 views

Add rows to SQL Server database from xml file

I'm busy converting a website from xml file base to a SQL Server 2012 express database, now I've managed to get most of the tags from the xml to import into SQL Server without hassle My issue now ...
0
votes
0answers
17 views

How to access imported xsds

Hi I have a complex schema, the schema is internally calling multiple schemas. I am facing following problems I can't customize the classes <bindings ...
0
votes
1answer
40 views

Is there a DOM or CSS property for height or width that XML objects honor

I am in the process of manipulating the height and width of xml elements in an SVG file. It seems the only way to do this is to alter the height and width attributes. This is because the CSS & DOM ...
0
votes
1answer
18 views

Create Menu from xml using jQuery

I want to create a menu from xml uing jQuery. The sub menu should display only when I click on main menu. This is the first time I am working with xml using jQuery so having a hard time. Please ...
0
votes
1answer
21 views

parsing text file into array of objects

Hi I have text file looks like below. operation=EAT starttime=134662223 endtime=134665223 totaltime=3454 end operation=DRINK starttime=134662223 endtime=134665223 totaltime=34354 end operation=SLEEP ...
0
votes
2answers
24 views

How to get XML namespace?

I tried using this code: [C#] var textReader = new XmlTextReader(path); if (textReader.NamespaceURI == "http://www.portalfiscal.inf.br/nfe") { //... } My XML: <?xml version="1.0" ...
0
votes
2answers
49 views

Another Resources$NotFoundException on setContentView

There are lots of Resources$NotFoundException questions on Stack Overflow and I've reviewed them and tried the various suggestions to no avail. I had a perfectly working layout to display some ...
0
votes
2answers
34 views

How to get the XML response body back from a JAX-WS client?

I've found a read a number of threads on here about how to retrieve the XML response from a JAX-WS client. In my case, the client is generated from the WSDL via Oracle's JDeveloper product and is ...
1
vote
2answers
27 views

Layout not updating

I opened a new android project with eclipse. edited the layout (in my case main.xml). everything was fine. After I saved my project and reopened it, I wanted to edit the layout to add some buttons. ...
0
votes
2answers
46 views

Passing XML Data in an XML File

I have some XML data inside an XML file which i want to pass to another application. I have used XMLPullPaser. <?xml version="1.0" encoding="utf-8" ?> <node1> ...
0
votes
1answer
19 views

How can a Wordpress feed be displayed on another site using jQuery?

I've played with a few snippets I found, as well as the somewhat old plugin jFeed (which never worked for me at all). I am in need of displaying Wordpress posts, WP 3.5.1, in a content slider on ...
0
votes
1answer
26 views

Filter Tree using XSLT

i have xml file in tree structure like this final.xml <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="b.xsl"?> <childrens> <child_1 entity_id="1" value="Root ...
-4
votes
1answer
54 views

Creating a console application displaying XML document

I need help in creating a console application, where I have to get a list of items from a XML document using a server, remote and client. I have already created a XML document XML document looks like ...
0
votes
0answers
4 views

Want to create XML schema to Restrict Attribute tag based upon value in Xml

I have one xml in which i need to restrict one attribute tag based upon value of it. Like in following xml file if value of attribute "permanent" is true than only its coming in xml ...
-2
votes
1answer
23 views

Adding new xml node at last point of xml file using xslt

The xml document looks something like this: <DirectoryMonitor> <ProcessZeroLenFile>false</ProcessZeroLenFile> </DirectoryMonitor>` The new document should look like this: ...
0
votes
1answer
32 views

Spring/Mule schema issue

I am experiencing the following exception when launching my mule application: SEVERE: Line 6 in XML document from mule-spring-config.xml is invalid; nested exception is org.xml.sax.SAXParseException; ...
-7
votes
1answer
66 views

What is mistake in below code in iphone [closed]

I am new to i phone programming.I have created a web service and a function in it that should return a records retreived from a pervasive database. But i am not getting output. Its showing some ...
1
vote
2answers
34 views

xmlNode.SelectSingleNode always returns same value even though the node changes

I am reading in a bunch of XML files, transforming them and loading the data in to another system. Previously I had done this using ThreadPool, however the provider of the files and therefore the ...
0
votes
2answers
32 views

can't convert string to DOMSource

I need some help. In my String filedata variable I stored xml document. Now I want to convert this variable to DOMSource type and use this code: DocumentBuilder db = ...
0
votes
0answers
12 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> ...
-2
votes
2answers
45 views

get child element using xpath and php [closed]

I have this sample xml file:- <products> <product_id value="1"> <tab_id value="251"> <dist_region value="5" /> <dist_region value="10066" ...
-1
votes
2answers
27 views

Importing data from xml to database using php loop [closed]

I have problem with importing data from xml to SQL table. The xml look's like this: <MeasuringPoints> <MeasuringPoint ID="BaseStation" LastChange="2013-05-20T12:15:03.837"> ...
0
votes
2answers
42 views

Asp.net MVC4 Web API XML serialization ignores public properties

I'm using asp.net mvc4 web api. I've got some classes generated by Devart Entity Developer and they have following structure: [Serializable] [XmlRoot("Test")] [JsonObject(MemberSerialization.OptIn)] ...
-1
votes
3answers
54 views

Get element values from XML in C#

This is my XML data from file <item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml" /> <item id="W000Title" href="000Title.html" media-type="application/xhtml+xml" /> ...
-2
votes
1answer
36 views

creating nodes in xml never close [closed]

Im trying to create an file that looks like this <blogs> <blog title="Ipsum" text="Ipsum"> <photo photos=img1"/> <photo photos=img2"/> <photo photos=img3"/> ...
0
votes
1answer
12 views

Will path-rage-index added to parent element also results for child element?

Consider that following is a part of XML data: <ContentOwner> <OrganizationLevel1>US Department of Justice</OrganizationLevel1> <OrganizationLevel2>National Criminal ...
1
vote
1answer
30 views

Converting XAML to XHTML using XSLT

I need to convert X(A)ML to XHTML using XSLT. Following is the XAML input data : <Section> <Paragraph> <Span Text="plain 1 " /> <Span Text="bold" FontWeight="bold" ...
0
votes
0answers
16 views

iOS, WebServices, Soap and XML Files

I am currently developing an iOS application that lets the user download a question file (stored as xml) from a webservice (the webservice is acting as an intermediate interface - the file is created ...
0
votes
1answer
52 views

Unable to evaluate expression in XPath

I;m using XPath to parse XML document returned by a URL, when i run my code with given inputs it works but when giving it inputs as a user input it throws an exception. The Code: class{ ...
-3
votes
3answers
52 views

XML DOMDocument PHP - Get node where attribute value [closed]

Purpose : Create a method to retrieve a nested element with a specific "id". What I have tried : Retrieve the code with x path expressions via DOMXpath class query method. Every time an empty ...
-4
votes
1answer
26 views

Outputting XML products using PHP [closed]

I am trying to output the name and price of the following XML file using PHP. I have managed to output the name already using the below. The euro sign is also being output but without the actual ...
2
votes
1answer
22 views

How to organize(group) nodes under a closed element - XSLT

I have tried simple grouping XML with XSLT 1.0 and it worked, but here I have something more complicated and actually different situation. So the XML structure is basically this: <Main> ...
0
votes
0answers
15 views

How to send Apache response in XML instead of HTML?

I´d like to send message in XML to Apache server instead of HTML. Does exist any path for Apache or should I create any JAVA code for that? Actually. I communicate with Apache server from SoapUI, but ...
0
votes
0answers
15 views

XSD - Specifying default element instances and attributes

More of a conceptual question... I understand that I may define valid elements, attributes, sequences etc. etc. using XSD. Now, supposing I'd like to create an XML document, conforming to a ...
1
vote
0answers
20 views

NUL characters after JAXB marshalling

I've been using the JAXB libraries to read & write XML files for a while now, without any issues. However, I've recently had issues where NUL characters are written to the XML files during ...
-1
votes
2answers
48 views

how to get all attribute using php xpath

I have one XML file:- <products> <product_id value="1"> <tab_id value="251"> <dist_region value="5" /> <dist_region value="10066" /> ...
-4
votes
0answers
33 views

Searching all links in XML document [closed]

I have an XML Document and I want to search all the absolute links containing .html, .jpg, .png using XPath.
-1
votes
0answers
33 views

wso2 adding two or more responses to single output variable? [closed]

i need to append or join two or more responses into single variable that declared in Wso2 BPEL. How to assign tow or more responses into output variable?

1 2 3 4 5 1275