all groups > dotnet xml > december 2003 > threads for december 29 - 31, 2003
Filter by week: 1 2 3 4 5
Interesting Problem with System.Data.SqlClient.SqlCommand.ExecuteXmlReader()
Posted by Dylan Phillips at 12/31/2003 9:16:02 PM
A strang error is occurring when I run the following code:
SqlConnection c = new SqlConnection();
c.ConnectionString = "Initial Catalog=Northwind;user
id=sa;password=kat1ie;Data Source=server";
c.Open();
SqlCommand command = c.CreateCommand();
command.CommandType = CommandType.Text;
command... more >>
Extracting XML data to be used in XSLT HTML output
Posted by Grant Harmeyer at 12/31/2003 3:21:43 PM
Ok:
I have done small level Xml stuff and am just now starting to understand
some of the plumbing involved. I've done a lot of .NET programming for SQL
Server, but little for Xml data stores.
I am currently just interested in using the .xsl file that I have being
applied to a source .xml fi... more >>
need HELP.how to compare a xml file with another file using vb.net?
Posted by rajesh at 12/30/2003 8:59:40 PM
hi all
i have a doubt!
i want to compare two files,one is a xml file which has
some certain rules,and the otherone is a "c" file.
i want to check each and every line of the "c" file which
should satisfy the rules written in xml file,if any error
occurs,it should display an error message in ... more >>
Casting using XmlSchemaSequence on web form VS inside C# class
Posted by pete NO[at]SPAM bga.com at 12/30/2003 1:07:02 PM
I am reading a schema with two DataTables and loading into a dataset.
In my intial tests I was using a web form. Everything was running
great so I convert it over to a class. Now I am getting
"System.InvalidCastException: Specified cast is not valid". I have
checked to make sure the same n... more >>
MSXML2.XMLHTTP username and password encoding
Posted by rick NO[at]SPAM oyarsa.com at 12/30/2003 11:28:37 AM
I'm working on a project where we have to call up a URL from a Java
servlet - the only sample call we have is some Javascript that used an
MSXML2.XMLHTTP object to send the request, using a username and
password.
How is the username and password actually passed to the target web
server for th... more >>
XML Schema Inherits
Posted by mreid NO[at]SPAM exhibitworks.com at 12/30/2003 10:34:58 AM
Can one XML Schema Inherit another ?
... more >>
typed datasets and duplicated relations
Posted by Iain at 12/29/2003 9:16:59 PM
I'm struggling to create a typed data set (with xsd.exe) with 4 tables and 3
layers
orders -> Items
Items->ItemAtts1
Items->ItemAtts2
if you follow me. it's kind of working, but I don't seem to be getting the
bottom relationship (Items->ItemAtts2). When I look in the generated code I
fi... more >>
XMLreader to text
Posted by Bill H at 12/29/2003 11:07:39 AM
How do I read the entire XML text from an XMLReader ?
I just want to retrieve the XML string from a SQL SP formatted as XML. =
I assumed the ExecuteXMLReader was the best option. So whats the most =
streamlined process of getting the XML into a string ?
Thanks
Bill... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Retrieve XML from DataSet without Schema
Posted by Sarmad Aljazrawi at 12/29/2003 2:14:15 AM
Hi,
Is there a way to retrieve xml document as xml string from a dataset without
its schema?
Regards,
Sarmad Aljazrawi
B.Sc. Computer Science, MSDBA, MCP
www.aljazrawi.net
... more >>
|