Extensible Markup Language (XML) is a structured document format that defines human- and machine-readable encoding rules.
0
votes
0answers
11 views
relative layout can't wrap and keep stretching
i have this layout
i have set the grey box width to wrap_content but it won't wrap instead it just stretched like usual. this is die xml
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
0answers
6 views
Installing php-api on sedna native xml database
I'm trying to install PHP-API for Sedna on my computer, and the problem is it doesn't work.
I'm running on Windows, PHP Version 5.4.14, Apache as local server.
I installed Sedna, downloaded the ...
2
votes
0answers
13 views
SOAP-ERROR: Encoding: object has no 'CompanyID' property" PHP
Here is the common Soap error what we are facing in our project while sending SOAP request..
Please find the PHP code below and sample of SOAP request....
$client = new SoapClient("url for ...
0
votes
0answers
6 views
Send XML data from server to client in GWT RF setup
I have a web service which is called from the GWT server code. I get XML as a response from that web service. I want to pass that XML to the client side of javascript and render as is. How can we do ...
0
votes
0answers
8 views
How to automatically translate some node of XML file?
I need to translate the <DefaultValue> tag in a file similar to this (~45k lines) :
<Resources>
<Resource>
...
0
votes
2answers
10 views
Python TypeError while using xml.etree.ElemenTree and requests
This works for me:
import xml.etree.ElementTree as ET
from urllib2 import urlopen
url = 'http://example.com'
# this url points to a `xml` page
tree = ET.parse(urlopen(url))
However, when I ...
0
votes
1answer
22 views
Add Data to Xml file on Button Click in C#
For example I have the an xml file with BookDetails and I displayed it on the GridView form. Now I want to provide add, edit, delete option to the GridView. I know how to give add, edit, delete ...
0
votes
2answers
14 views
XSLT transformation to remove space within element
I am a bit new to XSLT stuff. The problem is that I need to get rid of whitespaces within certain elements in my input XML. For example
<element id="12">
</element>
should be ...
0
votes
1answer
9 views
How to get the data from xml to a datagrid in flex 3
How to get the data in xml file into datagrid (the data grid have the columns like sno, status,register, join(join is a button) ). How can we modify and update data in datagrid using xml file's data ...
0
votes
1answer
12 views
Resource identifier error while using org.panel package
I am trying to use org.panel package to implement a top down sliding drawer in android. However I get a few errors.
Multiple annotations found at this line:
- error: No resource identifier found for ...
0
votes
0answers
7 views
How do I ouput null elements and attributes when ouputting json fusing EclipseLink Moxy
In my Xml I only output an element if it has a value, but the reuirement for the json is to output the value even if not set
i.e
Xml
<alias-list>
<alias ...
0
votes
0answers
22 views
About XML deserialization
this is a very very simple problem about XML deserialization.
I have here a simple XML (partial, for the sake of making this question small)
<iqu>
</items>
<item>
...
-1
votes
1answer
17 views
Regarding generation of XML from XSLT
Is there any free software or plugin that can be installed in eclipse that can generate the xml provided the input will be xsl , as Rite now I ma having the xsl with me and i want to analyze the ...
0
votes
0answers
15 views
Language/Framework suggestion for GUI
Recently I have created an Android app which downloads & processes no. of XML files. The end result depends upon XML files, user input and time.
Now I want to create a GUI which will allow user ...
0
votes
1answer
20 views
Web Service (web method) String return type
I have a question about best practices. Let's say I have a web method that returns employee id and employee name. Now, since I am new to Web Service, we( client(C#) and I(Java)) agreed upon a return ...