windows xp home Compressesd (zipped)
Thu, 26 Jun 2008 03:45:01 -0700
Hi all,
in windows xp home, if you want to compress a set of files, it is faster to
start compressing with the smaller files then add the larger ones to the
compressed directory. Otherwise your compression might take a much longer
time to finish (when you are working with files ~>100MBytes) .
Maybe a featu ...
|
SelectNodes + XmlTextNode
Thu, 26 Jun 2008 11:48:15 +0200
Is it possible to select all XmlTextNodes in a XmlDocument with
SelectNodes() ?
How does such xpath look like? Don't want any XmlElements, only
XmlTextNodes.
...
|
Waiting for XML data over HTTP
Wed, 25 Jun 2008 23:37:49 -0400
I need to be able to write a program to sit in "listen" mode, and receive
XML data over HTTP (POST method) from some remote program. Once the request
is received, I need to process it and finally send back a response to the
remote end that sent the request. How do I go about developing this using
.NET? Most ...
|
Converting XML data dump to SQL
Wed, 25 Jun 2008 17:02:59 -0700 (PDT)
Forgive me if this is a naive message or treated elsewhere. I have a
broad undersanding of XML concepts, but am pretty shallow when it
comes to details.
I have an XML data dump of a products database. I would like to create
a relational database from it (e.g., in MySQL, MS SQL Server 2000 or
2005, or even A ...
|
How to call another transform xsl from inside the current transform?
Wed, 25 Jun 2008 14:36:17 -0500
Hi all,
I'm transforming an xml document into another xml by using a xsl
transformation by using
<xsl:value-of select="root/@someAttrib" />.
My problem arises when one of the values I'm inserting in the new document
should be obtained from another xslt transformation defined in another
(third) file. How c ...
|
Collecting data in each line
Wed, 25 Jun 2008 09:47:51 -0700 (PDT)
I need to collect data csv:field[4] for each line groubing by
csv:field[1]
<csv:line>
<csv:field>48</csv:field>
<csv:field>20</csv:field>
<csv:field>6</csv:field>
<csv:field>6430</csv:field>
</csv:line>
<csv:line>
<csv:field>23</csv:field>
<csv:field>18</csv:field>
<csv:field>5</csv:fiel ...
|
problem when decrypting XML - Unable to retrieve the decryption key
Thu, 26 Jun 2008 00:33:17 +0800
When decrypt the xml, output "Unable to retrieve the decryption key."
Can anyone help me solve the problem?
I got the code from http://msdn.microsoft.com/en-us/library/ms229746.aspx
using System;
using System.Xml;
using System.Security.Cryptography;
using System.Security.Cryptography.Xml;
class Progra ...
|
|
|
creating an xml word document.
Tue, 24 Jun 2008 03:51:10 -0700 (PDT)
I have a database on a website and was wondering if I could create a
script to format it in xml so that the downloaded version could be
displayed in a word document. That is the easy bit. The hard bit is I
don't know what formatting would look like. Is there a way to see what
a word document would look like in x ...
|
Listbox, XML and XSLT
Mon, 23 Jun 2008 11:30:10 -0700 (PDT)
Hello,
I have a listbox in which I would like to load transformed XML data.
Say I have an XML file that contains information about persons:
<root>
<person enabled="yes">
<name>Jesse Hiemstra</name>
<address>Stellingmûne 110</address>
</person>
<person enabled="no">
<name>Sjoukje Kingma</name> ...
|
xml formatting
Sun, 22 Jun 2008 00:18:51 +0200
Hello,
how can I save formatted xmldom without inserting text-nodes?
I mean, when I create xml tree via
srcxml.transformNodeToObject(xslt, dstxml)
where the xslt contains
<xsl:output method="xml" indent="yes" />
and save the result
dstxml.save(path)
then the resulting xml file is ...
|