.NET XML RSS

NAVIGATION
CATEGORIES
REFERRENCE
LINKS
  • Zero-length MXL files

    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...

    2 answers | 675 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • You should pass XmlResolver to Transform() method

    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...

    3 answers | 716 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • Yet another ICollection that doesnt serialize. Anyone see why?

    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...

    7 answers | 1079 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • Yahoo API and XPath problem

    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...

    2 answers | 1561 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • xuiowebkep

    Hello! Good Site! Thanks you! spaaiurmxyctc...

    0 answers | 43 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XSLT's for MS Xml Diff & Patch Tool's Diffgrams?

    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...

    0 answers | 235 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XSLTransformation Question

    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...

    5 answers | 634 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XslTransform/XmlWriter cant encode   in us-ascii or iso-8859-1

    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...

    7 answers | 1073 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XslTransform.Transform, invalid character output to Response.OutputStream

    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...

    1 answers | 1222 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XslTransform.Transform fails when xsl contains node-set() Function

    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...

    5 answers | 845 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XslTransform.Transform Arguments Obsolete?

    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...

    2 answers | 806 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XslTransform.Load holding memory

    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...

    0 answers | 1120 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XslTransform.Load

    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...

    2 answers | 403 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XslTransform throws exception when output is an XML fragment

    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...

    2 answers | 1577 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

  • XslTransform return Xml.InnerText

    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...

    1 answers | 933 bytes | related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

QUESTION ON ".NET XML"
MCSER.COM