0
votes
3answers
34 views
Convert XML document from Latin1 to UTF8 using Java
I am trying to create an XML document (rss feed) and have worked out all the kinks in it except for one character encoding issue. The problem is that I am using a UTF-8 encoding like so <?xml …
0
votes
1answer
22 views
Xml help in my class ?
Xml help
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Xml;
namespace xmlBase
{
public …
0
votes
0answers
11 views
XQuery performance in SQL Server
Why does this quite simple xquery takes 10min to execute in sql server (the 2mb xml document stored in one column) compared to 14 seconds when using oxygen/file based querying?
SELECT …
-1
votes
0answers
26 views
XSL Parameter Value is not Inserted into Database while removing namespace from XML file. [closed]
Possible Duplicate:
XSL Parameter Value is not Inserted into Database while removing namespace from XML file.
EXACT DUPLICATE OF …
0
votes
0answers
26 views
XSLT parameter insertion problem when trying to ignore XML namespace value
I want to make that type of XSL file which remove the namespace value as well as adding parameter value in XML file. Here is my latest XSL file, which removed the namespace but didn't add param value …
0
votes
2answers
24 views
Edit XML with Eclipse productively
I find XML editor of Eclipse is very unproductive (new child or attribute must be inserted by context menu), and the text editor for XML is lack of hints.
Are there any plugins or tricks that can make …
0
votes
3answers
46 views
Optimizing XML response of web service
In performance tests of our web service we found out that the traffic generated by the response exceeded our expectations a lot. We are querying the database and loading lists consisting of rows and …
0
votes
3answers
31 views
DotNetNuke + XPath = Custom navigation menu
I'm developing a skin for DotNetNuke 5 using the DNN Done Right menu component which uses an custom XSL-T to convert the XML sitemap into an HTML navigation.
Using XSL-T is a life saver in comparison …
3
votes
4answers
37 views
xsl format date (substring + concatenate ?)
I have the input
<Date value="20091223"/>
and I want the output to be
<Date>23122009</Date>
I was trying to use substring function to reformat the date
<xsl:value-of …
1
vote
2answers
29 views
Can I use PHP to grab external XML file for use by JQuery?
I am trying to load Google custom XML search results into a PHP page and then manipulate the XML using JQuery.
I understand that I can't use javascript to grab the XML file as it's on an external …
-2
votes
0answers
44 views
how to pass output of an xml parser to a web server and get things done?
I need to parse an xml file by an xml parser and to send the output of the parser to a web server(here tomcat) for processing the information. What is the best way to do this? Do i need to embed xml …
2
votes
2answers
36 views
How can I split a table vertically into two tables in XSL?
If I have the following table:
<table>
…
0
votes
1answer
27 views
What is the best way to represent an XML file in a Design document?
What is the best way to represent an XML file in a design document?
For table we typically show it as
Name Type
CustomerID {GUID}
For XML do we just paste the XML in the document?
0
votes
1answer
11 views
Using an XML file as my Winforms .NET 2.0 datasource
Is it possible to point to an xml file as a datasource in the same way you would with an .mdf file? Please let me know if I can clarify this question.
For example, let's say I have a datagrid and I …
1
vote
1answer
87 views
XML: Is this valid?
Is the following XML declaration valid?
<message metadata="SomeMetaData" xsi:nil="true"/>
where xsi is defined as "http://www.w3.org/2001/XMLSchema-instance"
If I am trying to create the …
