all groups > dotnet xml > june 2003
importing XML doc into SQL Server
Posted by Christine Mccormick at 6/30/2003 8:00:25 PM
Hello, I am trying to import an XML document into SQL Server. I have tried
DTS, bulk loading into SQL server and anything else I can think of...
The only thing that has worked slightly is :
Dim objSQLConn As New SqlConnection(Constants.ConnectionString)
Dim objAdapter As SqlDataAdapter
Di... more >>
Encoding, standalone value setting?
Posted by Dean Slindee at 6/30/2003 3:16:43 PM
Currently using:
Dim xtw As New XmlTextWriter
(path,system.Text.Encoding.UTF8)
which produces:
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
how can I produce:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
Thanks,
Dean Slindee... more >>
Xsl position()
Posted by Hugo Wetterberg at 6/30/2003 2:39:25 PM
Hi I hava a xsl question.
How do I get the position of the parent a in the in the template for
b?
Example:
<root>
<a>
<b></b>
</a>
<a>
<b></b>
</a>
</root>
<xsl:template match="/root">
<xsl:apply-templates select="a"/>
</xsl:template>
<xsl:template match="a">
<xsl:... more >>
XmlNamespaceManager, default namespaces, nested qualified namespace, xpath problem.
Posted by Oisin Grehan at 6/30/2003 11:35:18 AM
Hi,
I can't for the life of me get this to work properly. I've searched for
examples, but none of the examples quite match my environment. Here is my
XML (please treat this as immutable -- no solutions involving altering the
XML are good for me):
---- config.xml ----
<Configuration
... more >>
Consume XML to pass as a string buffer to legacy
Posted by Srini at 6/30/2003 11:00:14 AM
Hi,
I am working on a project and a portion of which involves
receiving xml files on internet, extract values to build a
string and pass that string to legacy system.
I am planning on using XMLReader to read passed xml file
and extract values that need to be mapped to string
buffer. H... more >>
Save / restore XMLDOM avoiding serialization
Posted by Dave Romig at 6/28/2003 10:20:29 PM
Can anyone provide guidance for saving and restoring an XMLDOM object as a
binary blob? In a VB application, I need to repeatedly save and restore a
large, dynamic XML document. Currently, the CPU overhead of serialization
and de-serialization is KILLING performance.
I have done some tests a... more >>
|