


Hi,I'm attempting to understand an application I may one day "inherit" inASP.NET and Flash. I've been searching but can't find out the answer tothis, so if you have a pointer or want to explain I'd really appreciateit, thanks.The site has hundreds of empty xml files in direct...
Hi,I'm trying to test the vb.net-exercise "How to use a DataSet with the OfficeXP Chart Component and ASP.NET" onhttp://support.microsoft.com/kb/303016/en-usVisual Studio rails against the expression:"xslTran.Transform(xmlDoc_ds, Nothing, context.Response.Output)"and comments:"Public Sub Tr...
Hi!I've got problems with serializing my collections of business objects. Theobjects themselves serialize fine, but the collections fail. I've got thefollowing structure:Base collection class:Derives MarshalByValueComponentImplements ICollection, IList and ISerializableExplicitly imple...
Using C#, ASP.NETI'm trying to implement Yahoo search API. I can sent the HTTP request andget back the results. The problem I have is that I don't know how to useXPath with the results than comes back. I coded XPath before successfully,but Yahoo XML is a bit more complex.Here is part o...
Hello! Good Site! Thanks you! spaaiurmxyctc...
Helo All,Does anyone out there have any example XSLT files (that they'd like toshare) which transform difgrams produced by the Xml Diff and Patchtool into a nice format?This would be most appreciated.-Thanks,KJ...
I have an XSLTransformation question I hope someone can help me with. I amtrying to program this using VB.Net.I currently have a VB6.0 application which I am converting into VB.Net. Thelast piece of code I have to convert is an XML transformation. What I amtrying to do is take two sting values s...
My problem starts with wanting " " to actually appear that way inthe output rather than an actual encoded 0xA0 byte in the outputstream. I thought a way to solve this would be to select us-ascii oriso-8859-1 as the output encoding, and so used this line in thestylesheet:<xsl:output method...
When I use the XslTransform.Transform method to write to theHttpRequest.OutputStream The first byte of the output is always an invalidcharacter, looks like an ascii zero or some other non-printable ascii char.The problem is that it messes up my display.Here is the code:...Response.Write("<spa...
My transform in cludes a variable that holds a node set from the node-set()extension function. It the transformation works fine when using MSXML2 ormsxsl.exe but not in VB.Net.My code looks something like this:Dim XP as New XPathDocument(XMLFileName)Dim XSLT as New XslTransformXSLT.Load(XSLTFile...
Can anyone tell me why I receive the following compiler warning after havingrecently upgraded to VS.Net 2003 and .Net 1.1?Warning CS0618: 'System.Xml.Xsl(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList, System.Xml.XmlWriter)' is obsolete: 'Youshould pass XmlResolv...
I have a Windows service that reads messages off a message queue andperforms several XSL transforms per message. The XSL documents are embeddedresources in the executing assembly and several contain <xsl:include>statements. I'm using the XslTransform.Load() method which accepts anXPat...
I am building dynamic XSL using a string varible in VB.Net with informationin code and from a database field. I am having a difficult time findingthe correct object to load the string into to then have the object passed tothe XslTransform.Load method. I want to avoid writing the information to a...
I have an application where I create an xml fragment usingan XslTransform object. However, if I use the followingoutput method,<xsl:output method="xml" version="1.0" encoding="UTF-8"indent="no" omit-xml-declaration="yes" standalone="no" /some of my transforms fail with the following exception...
Hi,Getting crazy with the XslTransform Class.I'm trying to transform an xml string with an xsl string with thefollowing code :'Create the XslTransform object and load the stylesheet.Dim oXslXmlReader As XmlTextReader = New XmlTextReader(MyXslString,XmlNodeType.Document, Nothing)Dim oXs...
