all groups > dotnet xml > november 2006 > threads for november 1 - 7, 2006
Filter by week: 1 2 3 4 5
XmlTextWriter Usage question
Posted by Rob at 11/7/2006 9:57:03 PM
I would like to store the contents of the xml created via the XmlTextWriter
to a string as opposed to a file. Is this possible ? If so how ? Is this
the best way to create xml that gets stored to a variable? Am I better off
using the xmldom ?
... more >>
Best Practices - Xml document validation
Posted by Drew Wildner at 11/7/2006 3:35:01 PM
Hello grp:
Given the following scenario, I'm hoping someone can suggest the best method
for accomplishing xml validation.
We have a system that accepts requests in the form of xml messages. We
publish schemas detailing the contents and constraints of these requests.
The service is av... more >>
.net xml file for Excel
Posted by Paul at 11/6/2006 3:23:02 PM
Hi I have a .net web application and am trying to create an xml file to be
opened in Excel on the client machine. I am placing data from a dataset into
a text document so I think this is the correct approach. I printed out a
small sample excel file saved as xml and noticed several tags near ... more >>
DataSet WriteXML aborts
Posted by Ralf Mayer at 11/6/2006 3:20:05 PM
Hello!
I did search for this one quite a while, but I cannot seem it mentioned
anywhere, so let me ask here if someone saw this problem before. The
behaviour is confirmed (for me) with Framework Version 1.1 (with all patches
for the version applied)
I read and write data for an XML file ... more >>
How to make XslCompiledTransform transform &s; as XslTransform does
Posted by InvalidLastName at 11/5/2006 8:20:51 PM
We have been used XslTransform. .NET 1.1, for transform XML document, =
Dataset with xsl to HTML. Some of these html contents contain javascript =
and links. For example:
// javascript
if (a > b)
.....
// xsl contents
abc.aspx?p1=3Dv1&p2=3D<xsl:value-of select=3D"$v2" />
... more >>
xsl:with-param fails in XSL that accepts arguments from XML control
Posted by Andy at 11/3/2006 10:23:35 AM
Hi, why does with-param fail to send parameters to any templates in a
stylesheet that also accepts arguments from the ASP.NET XML control?
The argument from the XML control seems to be available to any template
in the stylesheet, even if a parameter for the argument is NOT coded
for a template... more >>
Upload XML Files to Server
Posted by Optimus Prime at 11/3/2006 8:35:55 AM
Hello,
I apologize if this is the wrong forum for this question. If so please
direct me to the correct one.
I have some XML files that are populated in the field with no internet
connection. I would then like to be able to securely upload them to a
wide array of servers - rather seemlessl... more >>
Comparing two XML documents.
Posted by zeyais NO[at]SPAM gmail.com at 11/2/2006 5:40:46 PM
I am working on a migration project. There are two XML documents one in
the old system and one in the new system.
They both are identical but dynamically created from the datasource
that is being migrated.
My job is to programmatically compare these two documents and make sure
they are identi... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
XmlDataDocument as a datasource for a combobox
Posted by Dustin Davis at 11/2/2006 8:40:56 AM
I have an XmlDataDocument that I'd like to use as the datasource for a
combobox. How would I go about converting that to something I could use
to set the datasource for a combobox? Converting to a dataset perhaps?
I'm sort of stuck here as I'm a complete noob when it comes to xml.
Thanks.... more >>
CreateElement question
Posted by Yoavo at 11/1/2006 6:21:15 PM
Hi,
I am trying to add an XmlElement to my XML file:
XmlDocument aDoc = new Xml Document();
aDoc.Load("MyFile.xml");
XmlElement el = aDoc.CreateElement("Cim:Attr");
When I append this element to a node, the name of element is "Attr" only.
How can I add an XmlElement and recieve the full na... more >>
Transoforming XML via XSLT into a string?
Posted by darrel at 11/1/2006 2:54:21 PM
I don't do a lot with XML, so I always get a bit lost navigating the XML
classes.
In the past, I've used this:
xslt.Transform(doc, xslArg, Response.Output, Nothing)
Which takes my xml file (doc) and dumps out the XML.
What I'd like to do is isntead of having it just dump the HTML, have... more >>
How/where to store my encoded HTML? In DB? In XML?
Posted by darrel at 11/1/2006 1:41:20 PM
We have a parent-child table set up to maintain content.
When this table is updated, I do a recursive call through the data and spit
out an XML file.
Then, when we want to display this content, I load up the XML file, attach
the XSL file to it, and do the transformation via VB.net and sen... more >>
preprocessing ASP.NET tags generated by the XML Control
Posted by Andy at 11/1/2006 11:11:12 AM
Hi, I have an ASP.NET webpage that contains an ASP.NET XML control.
This control accepts an XSLT stylesheet and XML document which it then
uses to render HTML code where the XML control is positioned for the
client at the server.
This setup works great for an XSLT stylesheet that generates pl... more >>
Dataset and XML
Posted by Gabriel at 11/1/2006 12:33:01 AM
Hi
I have an SQL Server stored procedure wich returns ceratin data and I have
it in a Dataset. I am supposed to change that data into an specific standard
XML format and write it to file.
I am using Visual Studio 2005 wich is completely new to me.
Could you help with some hints about how can ... more >>
|