Extensible Markup Language (XML) is a structured document format that defines human- and machine-readable encoding rules.
0
votes
0answers
6 views
Android Design - Min API/SDK version
I am currently creating an application for a client. I love the Holo light with dark action bar theme/style but that means that I would have to use API 14 and above. If I set the min API level to 14 ...
0
votes
0answers
5 views
Edit two xml files
I have xml file like this:
<CompletePPCallback>
<MessageId>9133235059913398501</MessageId>
<filename>c:\temp\log\SMKFFcompleteProductionPlan.xml</filename>
...
1
vote
0answers
15 views
how to do calculations with qelement results in xml?
I have xml code that returns a result from an sql query:
<QElement FName = "Machine_DT" DBName="DB">
declare @DT as int
set @DT =(SELECT TOP 1 [Value] FROM [DB].[dbo].[ConfigDBe] ...
0
votes
2answers
20 views
how i can use a string that have the same structure how a xml file for a treeview?
hi how i can use a string that have the same structure how a xml file for a treeview.
For Example here is a part of the string coontent..
<?xml version="1.0" encoding="UTF-8"?>
<LM-X ...
0
votes
0answers
10 views
Extensible XML schema with immutable set of Java classes bound to it
I'm trying to develope extensible XML schema that could be extended without change of Java code bound to it by JAXB. Here is the schema:
<schema xmlns="http://www.w3.org/2001/XMLSchema"
...
0
votes
0answers
11 views
XML parser using jaxb
How do I get the object of a nested xml using jaxb. I have the following XML -
<?xml version="1.0" ?>
<file>
<markups>
<markup>
...
-1
votes
2answers
26 views
How to populate xml from list of paths
How to populate XML from list of paths in C#?
For example:
C:\WINDOWS\addins
C:\WINDOWS\AppPatch
C:\WINDOWS\AppPatch\MUI
C:\WINDOWS\AppPatch\MUI\040C
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
...
0
votes
0answers
4 views
xml to xls transformation - when xmlns is an urn and not uri no data is shown
i'm working on an xls that works fine when the xml xmlns is a URI. But when the xmlns is a URN then it doesnt work.
Example:
//xml file header xmlns="URI":
<?xml version="1.0" ...
0
votes
0answers
3 views
Posting xml to a url in nodejs
I am developing a client program to hit a post url and get the response from it
Below is my code
var http = require('http');
var fs = require('fs');
var postData = "<?xml version = '1.0' encoding ...
4
votes
0answers
24 views
Multi-mode XML processors for Java and/or Scala
One of benefits of using Jackson for JSON processing is:
all modes [i.e. streaming, tree, and binding to Java objects] fully supported, and best of all, in such a way that it is easy to convert ...
-3
votes
1answer
30 views
Storing data without database using XML
Is it possible to store, add, delete data without database? The only thing I can use is XML and programming language is PHP?
-1
votes
0answers
6 views
Ipad Safari and XML Dom ActiveX Object
Im trying to create a HTML page linking to an XML document using java script.
When using IE the page loads correctly but it does not load the XML data in safari and firefox.
I believe this is down to ...
0
votes
1answer
15 views
Insert single xml element into sql like string manipulation
Hi I have a XML file like this
<pictures>
<mainimg>
<link>http://s.freshnewtracks.com/wp-content/uploads/2012/07/dr_dre_20011.jpeg</link>
</mainimg>
<img>
...
0
votes
1answer
12 views
What is the logic behind xs:date datatype in xsd schema?
I want to know how the xs:date datatype is defined in W3C xsd schema. Is there anyway to find it? (Not how to use xs:date in my xsd schema)
0
votes
1answer
6 views
is it important the order of the namespace in the root? is possible to order them?
I have the original xml that has the following struct:
<Root xmlns="http://xyz.com/2006/root" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
1
vote
0answers
10 views
Error on unmarshaling with generated code (moxy): “A descriptor with default root element … was not found in the project”
I generated code using moxy for different xsd-Files:
http://www.forum-datenaustausch.ch/generalinvoiceresponse_400.xsd
and
...
0
votes
1answer
17 views
remove whitespaces from jaxb xml response
I have a ws that generates a soap xml message. Due to size limitations I would like to remove the unnecessary whitespaces (used for indentation) and newlines. How can I do this when using generated ...
0
votes
1answer
27 views
How I can execute a Batch Command in C# directly?
hi i have a question to c# and batch files. I want do execute a batch command and save the output in a string in c#. but i can only execute the file but not save this content in a string and show this ...
0
votes
1answer
19 views
How to render the XML Document in partial view with XSL?
Please note,
I have an XML file which contains such information to display into User. And I have got the XSL file which contains the style information of the Content to display.
I wrote the ...
0
votes
1answer
19 views
Parsing XML with ActionScript 3.0
I have a XML which goes like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Row>
...
0
votes
0answers
16 views
Error when consuming webservice in java
Hi I am calling a webservice using java but get the following error:
SEVERE: Exception:
org.xml.sax.SAXException: Invalid element in iseries.wsbeans.createbiditem.xsd.CreateBidItemResponse - ...
0
votes
1answer
12 views
to count the number of occurrence of an element with specific attribute and specific value in xml
i am using linq to xml along with xpath to get the number of occurrence of a element with a specific attribute and specific value....here is my xml file...
in this i have to extract the number of ...
1
vote
2answers
22 views
to prevent softkeyboard from moving up of layout
When the Softkeyboard shows,it pushes up the rest of the content from the screen.How to adjust this.
I have tried using adjust pan,adjust resize and all the stuffs but those are of no use.
This is ...
-1
votes
0answers
9 views
SAP xml input to own designed output
Input xml:
<row xmlns="">
<col>ENV</col>
<col>8711555900999</col>
</row>
<row xmlns="">
<col>HDR</col>
<col>ORDER</col>
...
0
votes
0answers
23 views
How to generate xml from Oracle DataBase?
I'm connected to my Oracle Database which I use to run queries with edmx. Now I'd like to generate an xml file of my database.
I've been looking DataSet and DataReader classes but I didn't find any ...
0
votes
4answers
32 views
How to get data from html page using java?
How to get data from XML/HTML page?
I'd like to make an android app, in which users get a notification of a school-lesson that fell out.
This is what the website looks like:
...
0
votes
0answers
5 views
How to add 4th workflow steps in DSpace
I am using DSpace 3.1 XMLUI and edit workflow.xml only to add one more workflow step instead of default 3 steps but it is not working as it is supposed. I can see the 4 workflow steps in settings of ...
0
votes
1answer
15 views
Default Handler - fetch tag name
I am implementing a Default Handler in Android. My xml doc looks like -
<item>
<rating>1</rating>
<num>20</num>
</item>
I am overriding the characters ...
0
votes
1answer
16 views
How to set new XML document from XML feed
Is there any possibility to set up a new XML document with specific fields from XML feed?
public string xmlResult;
public void Page_Load(object sender, EventArgs args){
string url = ...
0
votes
0answers
10 views
Eclipse XML Editor Consistency with XSD File
I am preparing an XML file with Eclipse XML Editor plugin.
It gets the syntax information from XSD file and guides me to prepare the XML file.
On the build process, we are generating the XSD file on ...
0
votes
3answers
25 views
unfortunately project name has stopped
I got "unfortunately app has stopped" error in the emulator for many applications.all the applications can have the same logcat.java file as I mentioned here.please post a solution.Thanks...........
...
0
votes
1answer
16 views
I set the namespace but I I don't get the correct xml
I have the following code:
XNamespace xsiNs = XNamespace.Get("http://www.w3.org/2001/XMLSchema-instance");
XNamespace ns = XNamespace.Get("http://xyz.com/2006/");
XDocument ...
1
vote
1answer
18 views
Xml List to Jaxb
What way JAXB give to convert this type of XML conversion
<options>
<option name="name">https://abc.com/</option>
<option name="name2">https://abc.com/</option>
...
0
votes
1answer
21 views
why add xmlns=“” in the attribute of a node?
I am using C# and XDcoument to add nodes the root element. I use this code:
XElement miAnimalNuevo = new XElement("PrincipalNode",
new XAttribute("Atribute1", "value attribute 1"),
...
-2
votes
0answers
30 views
Reading XML file with php from an another source [closed]
I have an XML file on my local machine which has IP: 192.168.1.13 and it has a web service and this service creates an XML file which is on
...
1
vote
0answers
37 views
How to read and display Xml in ListView and TextView
This is XML Type
<Category Name="Android">
<Question><![CDATA[What is Android?]]></Question>
<Answer><

