ASPFriends.com 'aspngxml' list Archive - February 2002
Messages
Page: 1
XmlValidatingReader - what gives? (6 replies)
ASPFriends.com 'aspngxml' list
Maybe my situation is exceptionally unusual, but it seems like the XmlValidatingReader has been specifically designed to tease me with apparent features that it does not deliver on. Issue 1: I am parsing XML that conforms to a particular DTD, but will almost never reference that DTD in a DOCTYPE statement, and (in most cases) will not even have a DOCTYPE statement. I would like to provide the opti...
XML to XML transformation using XSL (2 replies)
ASPFriends.com 'aspngxml' list
I want to do an XML to XML transformation using XSL so I can use the newly created XML file in the IE TreeView control. My end goal is to eventually allow the user to perform a query against my database, generate the results as an XML file, and then using the XslTransform Class, transform my user created XML file into a format that the TreeView control can read. I think I can accomplish everything...
Integrating XML into ASP.NET Websites (2 replies)
ASPFriends.com 'aspngxml' list
Wondering what XML is good for? I just published a new article in XML Magazine titled Integrating XML into ASP.NET Websites that demonstrates one way XML can be used to add additional value. You can read the article online at the following URL: http://www.fawcette.com/xmlmag/2002 02/magazine/columns/integration/dwah lin/ If you're interested in other .NET/XML specific articles visit the following ...
IE XMLtree control (4 replies)
ASPFriends.com 'aspngxml' list
Moved from [aspngfreeforall] to [aspngxml] by Charles M. Carroll charlesmarkcarroll@yahoo.com Hi. I am using the XML Tree control to build a tree from a category table in a SQL Server database. For this purpose I have written a small recursive function, BuildCategoryXMLTree, that returns a hierarchy of categories in an xml format. The function returns the xml as a string. The trouble is that when ...
XML from URL instead of file (2 replies)
ASPFriends.com 'aspngxml' list
Moved from [aspngfreeforall] to [aspngxml] by ????????M. Carroll charlesmarkcarroll@yahoo.com Hi All, I was wondering how to get a XML stream from a url instead of a file. My code with file input: Dim stream as new FileStream(filename, FileMode.Open) Dim newObject as Object Load(stream, newType) stream.Close() Public Shared Function Load(byval stream as stream, byval newType as type) as object Dim...
Saving an Xml file to Disk (13 replies)
ASPFriends.com 'aspngxml' list
Hi I'm using an Xsl file to transform an XML into another XML file. How do I then save the new XML to disk ? Thanks. Script Language "VB" Runat "server" Sub Page Load(Sender As Object, E As EventArgs) Dim xmlDoc As XmlDocument New XmlDocument() xmlDoc.Load(Server.MapPath("Customers.xml")) myXml.Document xmlDoc Dim xslTrans As XslTransform New XslTransform() xslTrans.Load(Server.MapPath("Treeview T...
Datatable adding new row in wrong place... (3 replies)
ASPFriends.com 'aspngxml' list
Moved from [aspngdatagridrepeaterdatalist] to [aspngxml] by Charles M. Carroll charlesmarkcarroll@yahoo.com Hi folks, I'm reading in my web.config file using a dataset, adding a new row (a username and password) to the relevant datatable, then recreating the .config file... but for some reason, it's adding the new username and password at the end of the file, after /system.web ... Anyone know how ...
problem reading in schema (4 replies)
ASPFriends.com 'aspngxml' list
ok, I created a schema to read into my dataset first (I made a w3c schema), and when I try to read it in, I get an error saying that " xsd:complextype " is not a recognized type... I'm using the following code to read in the schema and then the web.config... I can post the web.config file and the schema if it will help... Thanks, Rachel dim fs as new filestream(server.mappath("../webconfigschema.x...
Manipulate MS Word 2K Docs using XML? (10 replies, VIP)
ASPFriends.com 'aspngxml' list
I have been asked to work on a project where they would like to combine several Word Documents based on a criteria. I originally was going to work on this using RTF format, however I found RTF to be complex and lacking the formatting that I need. I know that since Word 2000 Microsoft still uses a proprietary binary format, but it can be converted into XML. Does anyone know if it is possible using ...
base64Binary Web Servides (2 replies)
ASPFriends.com 'aspngxml' list
Does anyone know how to convert from a base64Binary byte array to as string. I have a web service that receives a byte[] array of base64 encoded data and I need to access this data to store it in a database/file system. I don't want to have to instantiate a XmlTextReader juest for this purpose. All the best Marshall The Information in this e mail and in any attachments is confidential and intended...
SQL XML and ASP.Net (4 replies)
ASPFriends.com 'aspngxml' list
Moved from [aspngcommunity] to [aspngxml] by James Avery javery@deluxeeng.com I have a SQL stored proc that returns the recordset as XML Auto. 20 I simply want to display the results on the page. How do I do that?
Invoking asmx using toolkit 1.0 (3 replies)
ASPFriends.com 'aspngxml' list
Here is question. I have some legacy code. I am building an SOAP message in an ASP page and sending the XML to my asmx file. How do I read the input in my asmx file. E.g Dim oHttp Set oHttp Server.CreateObject("Msxml2.ServerXMLHTTP") Call oHttp.Open(oHTTPType, "http://localhost/myservice/service1.asmx?wsdl", False) Call oHttp.setRequestHeader("Content Type", "text/xml") Call oHttp.setRequestHeader...
microsoft.data.sqlxml (3 replies)
ASPFriends.com 'aspngxml' list
Tribe, No matter what I do I can't get this managed class to install from sqlxml 3.0. I've got the .NET framework RTM installed (actually 3 times) What gives? Dave Cline FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com
VS.NET XSD designer and targetNamespace (2 replies)
ASPFriends.com 'aspngxml' list
Why does the VS.NET XSD designer require me to provide an xmlns attribute when I provide a targetNamespace attribute? Without it, the designer view doesn't play ball. Dan Green [ http://dotnetdan.com putting the dan in .net ]
Accessing XML data from post (3 replies)
ASPFriends.com 'aspngxml' list
Copied from [aspngfreeforall] to [aspngxml] by G. Andrew Duthie (Moderator) andrew@graymad.com In our old ASP application we had an XML document in between the body tags, when we posted the page, we used the request object to access the elements. How do you access this in DotNet. (i'm asking this question for a co worker, so hopefully I'm being clear) ie: body ?xml version "1.0" encoding "utf 8" ?...
read-only xml on the fly? (2 replies)
ASPFriends.com 'aspngxml' list
Hi folks, I have a program which creates an xml document on the fly based on a form.... but is there a way to force the document to be read only? Thanks, Rachel Do You Yahoo!? Yahoo! Sports Coverage of the 2002 Olympic Games http://sports.yahoo.com
Upgrading an XML trasform to .NET (3 replies)
ASPFriends.com 'aspngxml' list
WE1MOg0KDQo8Q0FURUdPUlkgVFlQRT0iU0FNUExFIENBVDEiIElEPSJuMCI DQoJPERFU0M U0FN UExFIENBVDE8L0RFU0M DQoJPFBBUkVOVF9DQVRFR09SWV9JRD4wPC9QQVJFTlRfQ0FURUdPUllf SUQ DQoJPENBVEVHT1JZX0lEPjExMTU3PC9DQVRFR09SWV9JRD4NCgk8Q0FURUdPUlkgVFlQRT0i U3ViIENhdCBTYW1wbGUgMSIgSUQ9Im4iPg0KCQk8REVTQz5TdWIgQ2F0IFNhbXBsZSAxPC9ERVND Pg0KCQk8UEFSRU5UX0NBVEVHT1JZX0lEPjExMTU3PC9QQVJFTlRfQ0FURUdPUllfSUQ DQoJCTxD QVRFR09SWV9JRD4...
Indexing XML documents (4 replies)
ASPFriends.com 'aspngxml' list
Moved from [aspngfreeforall] to [aspngxml] by Charles M. Carroll charlesmarkcarroll@yahoo.com Does anyone know if search engines like Google and Excite or Web directories like Yahoo or Snap index XML documents within their databases? So if I've got an XML document online feeding an ASP page, does the very user unfriendly tree structure of the XML document stand the chance of being included in a We...
Ad
Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification