| Thread | Last Post | Replies |
|
| Format Xml Document in VS2005 | 13 Jul 2006 02:55 GMT | 1 |
On advice of Stan Kitsis on this forum, I was able to format in VS an XML document by Selecting Edit / Advanced / Format document. It worked. But now I am attempting to do the same thing again, with the same xml document, and the format command is no longer on the list. When I press ...
|
| Problems with XmlNodeList | 12 Jul 2006 13:56 GMT | 1 |
I'm trying to get an instance off a XmlNodeList without using selectNodes(...) XmlNodeList test1 = new XmlNodeList(); (C#) but that doesn't work.
|
| Problem with XML Scheme Facet | 12 Jul 2006 09:07 GMT | 2 |
I Wonder if any one could give me a hand, I am trying to implement a numeric type restriction on an xml scheme. Somehow in doesn't work, while string restriction on length do work to me.
|
| How to hide available web service function declares | 11 Jul 2006 09:03 GMT | 3 |
How do you hide the available functions (and syntax) that are normally displayed when you browse to a webservice (e.g. httpx://xxx.com/CMgr.asmx)? If you go to that page you will see a list of the available functions and you can click on the function name to reveal the calling ...
|
| XPathNavigator and name() | 11 Jul 2006 03:21 GMT | 3 |
Hi; Two questions. I have an XPathNavigator object where it's OuterXml property is "<jan>231</jan>" and I am trying to write an xpath statement that will return the "jan".
|
| A Simple Schema : What is wrong? | 07 Jul 2006 21:38 GMT | 1 |
I have a simple schema as shown below. When I validate it, I get the error "Type 'http://www.w3.org/2001/XMLSchema:emptype' is not declared. An error occurred at , (6, 12)." ***************
|
| new to xml - sitemap help | 07 Jul 2006 17:41 GMT | 2 |
I'm taking my first stab at using xml, so please bear with my novice questions and understanding of xml. I'm trying to create an xml file that holds all my website navigation. If I understand correctly, I can use xslt to create different menus from the xml
|
| Get XSD from ASMX | 07 Jul 2006 16:21 GMT | 3 |
I have web service written in .NET and if I go the browser and type in the .asmx file I get to see all the methods/routines. Now, is there a way I can get a XSD of every web method/routine?. The consumer of my web service (third party) requires me to give a XSD file of every ...
|
| Keys and references | 06 Jul 2006 20:00 GMT | 2 |
I have an element named "vendingMachine". This may appear in one of two places <customerSite> <vendingMachines>
|
| Get valid elements using XmlSchema - .NET | 06 Jul 2006 18:11 GMT | 1 |
Hallo all, I am looking for a funcion in the .Net framework that returns a list of all the valid elements, for a specific element, accrording to the xml schema restrictions.
|
| Problem when Loading XSL file using XslCompiledTransform | 06 Jul 2006 13:15 GMT | 2 |
I am testing the scenario to migrate from MSMXL4 to .NET2.0 system.xml. I experienced xsl file loading problem whenever the xsl file have a user defined script in it. The error message is as follow: "Objects of type 'Script2' do not have such a member"
|
| " and ' is not XML-ified | 06 Jul 2006 09:54 GMT | 2 |
Just noticed that a testprogram I've made creates a non-conforming XML file. Here's the code (C#) and output: XmlWriterSettings settings = new XmlWriterSettings(); settings.Indent = true;
|
| XmlResolver.Credentials | 04 Jul 2006 16:48 GMT | 1 |
I have this code from an example on the MSDN site: Dim rdr As New XmlTextReader("http://localhost/bookstore/book.xml") rdr.XmlResolver.Credentials = CredentialCache.DefaultCredentials Dim doc As New XmlDocument
|
| Invalid carachter loading xml | 04 Jul 2006 08:54 GMT | 1 |
I'm trying to parse a xml source. 1) I query via webservices one table and obtain this output ================================================================ <?xml version="1.0" encoding="utf-8"?>
|
| XPath string | 01 Jul 2006 12:26 GMT | 1 |
I want to get the node with text=”{123}”. 1/ The following statement works fine: XmlNode wksNode = parentNode.SelectSingleNode("child::wks[text()='{123}']");
|