| Thread | Last Post | Replies |
|
| Problem using XPathDocument | 30 Apr 2004 15:48 GMT | 3 |
I am getting XmlException while running the following code: string sConfigXPath = Constants.CONST_CONFIG_XPATH + "[@"+Constants.CONST_CONFIG_TYPE_ID + "="+this.iType + "]"; string sConfigFile = Constants.CONST_CONFIG_FILE_LOCATION; //Returns me
|
| XML Serialization Bug? | 30 Apr 2004 14:29 GMT | 3 |
I'm using .NET 1.1. I have a class that has these two members: public bool FurtherActionsRequired; [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FurtherActionsRequiredSpecified;
|
| Serializing XmlNamespaceManager | 30 Apr 2004 04:15 GMT | 1 |
Is it possible to serialize an instance of XmlNamespaceManager? I'd like to use it to manage a collection of namespaces and save that collection for later use but when attempting to serialize it, I get an error message indicating that XmlNamespaceManager is not serializable. 'The ...
|
| Locating xmlns nodes in XML documents (for XML document metrics) | 30 Apr 2004 03:56 GMT | 2 |
I've been writing an XML document analyzer that reads XML document and tracks the metrics of the document. Statistics such as a node count fo each type of XML node are printed out I am trying to locate 'xmlns' nodes using the XPath (not DOM or SAX) API
|
| Newbie xpath Question | 30 Apr 2004 00:46 GMT | 6 |
I'm new to this, so I've been reading about namespaces and xpath queries. I am trying to write a dotnet program that will change the value of a node. I am getting the file from another vendor, so I can't control
|
| schema error | 29 Apr 2004 18:44 GMT | 2 |
My app is a asp .net page that validate a xml using a schema. But it only works (validate the xml file) when i replace the namespace "http://tempuri.org/" in xml and xsd files with a physical path of my app "c:\inetpub\wwwroot\xml\". How can i use the virtual path ? Thank's for ...
|
| Specified array type is not recognized in web service response | 29 Apr 2004 13:51 GMT | 1 |
we have problems in WebService -> .NET response Response look OK in XMLSpy and tcpTrace <m:AGW014N1Response xmlns:m="urn:com-softwareag-entirex-rpc:AGW014N1"><ArrayOfMAA SOAP-ENC:arrayType="MAA[100]" xsi:type="SOAP-ENC:Array"><MAA><MAATUNNUS xsi:type="xsd ...
|
| Avoiding XML serialization namespace substitution? | 29 Apr 2004 00:54 GMT | 4 |
I have a class that I wish to serialize to XML, part of which looks like this: public class TitleNotification { [XmlAttributeAttribute(Namespace="xsi",
|
| PreviousSibling not working | 29 Apr 2004 00:37 GMT | 1 |
I am trying to get the PreviousSibling function work. But I keep getting the error (Error accessing XML). Here is my code: --------------------------------------------------------------------------- private i as integer
|
| Converting Delimited Text File into XML | 28 Apr 2004 15:41 GMT | 9 |
I want to convert a huge delimited text file (of appr 85MB) directly into XML. I dont want to loop through the text file and write as xml, as it is very large file and taking much time. Can any one help me, how to convert Thanks in advance for all your help Best Rgds Padmaja
|
| How to prevent line breaks in XML file? | 28 Apr 2004 09:54 GMT | 3 |
I am creating XML from SQL2000 using a vb.net page, then posting it to a remote server as a string. The remote server requires that the xml contain no line breaks, but there are some ntext fields in the database that contain long text
|
| Is there any way to get min/maxOccurs during validation? | 28 Apr 2004 07:15 GMT | 3 |
I understand that I can get the SchemaType from XmlValidatingReader during Read() and that is cool. But is there any way to get the current XmlSchemaElement (or XmlSchemaAttribute for that matter)? I need this because I am setting up my UI dynamically based on the
|
| Validation problem. | 28 Apr 2004 06:59 GMT | 1 |
I am some webservice project. where it take the inout as the xml and it will validate that xml with the xsd I have put that sechema in the particular location where I can access that xsd using internetexploere.. I mean to say from IE if i go to the URL http://localhost/my.xsd , ...
|
| XPath | 28 Apr 2004 04:48 GMT | 2 |
I'm trying to get a list of nodes using the XMLNodeList.SelectNodes( xpath ) method. I want a list of criteria nodes where the attribute notModifiable is false or doesn't exist. Anyone know how to do this? So far I can grab the nodes with notModifiable equal false but I don't ...
|
| XPath question | 28 Apr 2004 04:45 GMT | 3 |
Let's say I have the following XML: <authors> <author> <name>Mike Galos</name>
|