| Thread | Last Post | Replies |
|
| Convert string into XML format | 17 Nov 2003 13:53 GMT | 5 |
I have a big problem, i'm using XMLdocument to add elements to a XML file. Elements are like this: <name>Paolo</name> <comment>this is <a comment></comment>
|
| Is there a way to put html code in title attribute in xsl? thanks! | 17 Nov 2003 09:44 GMT | 1 |
I need put some html code into title attribute of A tag, so that user could see html when they move mouse over the link, I think this isn't a standard use, but it does work. The problem is how can I prevent the xsl transfer the html when it does the transformation. I would like ...
|
| XmlSerializer and inherited objects | 17 Nov 2003 02:51 GMT | 1 |
Hi I have a hirachy of classes which are Message(base), then FileMessage and ChatMessage (extended) I want to serialize the objects and when i am deserizaling i dont know if i am getting FileMessage or ChatMessage. So how to get that object
|
| Read XML response from SOAP with VB.NET | 17 Nov 2003 00:46 GMT | 5 |
I am building a Vb.NET Soap Client and i have a problem reading the response of the SOAP message. I need to read the results i have the following code: Dim ws As New WebReference1.PaymentService()
|
| Getting error when adding Optional element as part of Unique Key. | 16 Nov 2003 02:40 GMT | 1 |
|
| I can't get DateTime to serialize to just date | 15 Nov 2003 02:08 GMT | 4 |
I have an xml element that has a child element of type date. My class has a corresponding member of type DateTime. I set the member to just the date portion of a DateTime. When I serialize, I get a zeros for the time part like this
|
| attribute wrapped with "\"? | 14 Nov 2003 21:24 GMT | 1 |
I have some code that is building an XmlDataDocument: XmlElement elem = xdd.CreateElement("parameter"); XmlAttribute attr = xdd.CreateAttribute("name"); attr.Value = parameterName;
|
| Regular Expression in XSLT failing | 13 Nov 2003 20:07 GMT | 2 |
Hello.... An XSLT file that I am using function correctly when called from a browser but fails when used within .NET Transform function. The code follows:
|
| Problem in passing DOM element as a XsltArgumentList paramter | 13 Nov 2003 17:52 GMT | 4 |
Hello.... I am have a problem with the third AddParam which is supposed to pass in a DOM element for use by the XSLT. The code snippet follows: Dim objXSLT As XslTransform = New XslTransform
|
| VS.NET and XML structure | 13 Nov 2003 16:00 GMT | 2 |
Does anybody know how to edit the structure of XML files using VS.NET? I have an XML file and just need to add an additional column. The file already has a hundred of records. The only method I know is to go through all of them and add the appropriate tags manually (or using a trick ...
|
| What is the difference between XmlNode and XmlElement? | 13 Nov 2003 13:08 GMT | 5 |
What is the difference between XmlNode and XmlElement? I'm trying to implement the code at http://www.devx.com/dotnet/Article/11616/0/page/3 in C# and I'm getting an error at this line:
|
| changing format of output elements such as Date | 13 Nov 2003 11:43 GMT | 1 |
I have a schema where I need to output dates in yyyy-MM-dd format. Are there any attributes I can apply to my property to make this formatting happen properly? Reggie
|
| SIGNEDXML | 12 Nov 2003 23:06 GMT | 5 |
Hi, I have the following problem: I need to sign a XML Document whith SignedXML in Visual Basic .Net. When i signed the xml document and use the id Attribute in the next format "Id" this work, but, when i do the same but i only replace the id attribute for
|
| XMLTextReaders only work on streams?? | 12 Nov 2003 21:14 GMT | 2 |
I am finding that quite commonly i need to instantiate an XML reader against an in memory string, as opposed to a stream obtained from a file or URI. While the XMLDocument class has a means of contructing against a string (.LoadXML), i am unaware of any similar method for the ...
|
| id() node-set function does not work in .NET 1.1 XML Classes | 12 Nov 2003 15:15 GMT | 6 |
The id() nodeset XPath function does not appear to work when used with XPathDocument and XslTransformation dot net classes. I am trying to make use of IDREFs in XML that link elements to other elements in the document.
|