xml

  1. S

    Xpath query on an XML returns 0 results

    Hi guys ! A little something i hope you could help me with - I've converted an html to XML and now i want to get all the child nodes nested within a DIV element with a specific attribute (class="itemInfo"). Because the html that the XML is based on changes from time to time i want to use a...
  2. K

    a problem creating XML file with xmltextwriter

    hi, i have a problem when i create a XML file with xmltextwriter class. i have no idea how to generate this part of XML code in vb.net <reflexion xsi:schemaLocation="http://www.imsglobal.org/xsd/imsreflex_v1p0 http://www.imsglobal.org/xsd/imsreflex_v1p0.xsd...
  3. K

    Question URL Request statement

    myXML.Load("http://196.163.32.2/ws/tsite.xml?Request=S(V)") For the above code line, what does "Request=S(V)" mean. Please answer for me. Thanks.
  4. L

    Question xsd to xml - use serialization or not?

    I’m developing an application where I use wcf services . I use the web service the organization offer to: Send an xml schema populated with data Get a list of available web services Get a specific xsd schema What I have to do is: Get a xsd schema form the authority and use this xsd to generate a...
  5. tnorton25

    Send XML File through API using VB?

    I am attempting to send my XML file through an API. I have done this no problem by using the below code, however when I try and send the FILE over it will not work, does not give any errors just doesn't import any data. Without trying to send FILE it works by creating data inside code...
  6. B

    Question X path......

    Hey guys,I'm new to the forums and Have a little bit of coding experience . But I have encounted a problem ,which I was wondering if you guys could help me out with. I'm creating a program in which I need to extract the element field names and list them in a listbox Heres a example of what I'm...
  7. poncianux

    System.XML.Linq reference in Framework 2.0

    Due to most of the computers uses Windows XP or a non updated framework, as developer sometimes you need to use the most common tools, but what happens when the common tools doesn't have what you want? That's exactly what happens to me now with the reference 'System.XML.Linq' I need that...
  8. N

    Replace existing xml file based on version number within external xml

    I have a program that reads and saves data with an xml file. Once it is released, there is a "Check for update" button that the user will click to see if there is a new version of the xml file. The file contains the version number, ex: <Root><Version><Current>0.0001</Current></Version></Root> I...
  9. N

    Question How do I convert an xml file (tags and all) to string?

    I am writing a program in vb 2010. I need to protect the xml file which contains price information. It doesn't need to be hard-core encrypted, so I want to convert either the values in the elements, or the entire xml to Base64, then decode at runtime into my variables so that no one can look at...
  10. N

    Question DataSet/DataView with XML problem

    I am a co-op student learning vb.net and I have a project which retrieves data from an xml file within the program (based on selections made from combo boxes) and calculates and displays prices. My XML looks like this: <.Root> ....<.Processes> ........<.Process>12345<./Process >...
  11. O

    How to read an XSD file?

    Hi all, I'd like your help and advice on how to read an XSD file with VB.NET. Here is an example of the XSD file I want to read : <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:group name="TOTO"> <xs:choice> <xs:element name="Person"...
  12. A

    Validating XML using relative DTD DOCTYPE

    I want to validate an XML file usng a relative PUBLIC DTD in the DOCTYPE. The following code produces an exception which states that the DTD cannot be found. The path is for where the XML file is located and not where the DTD is located. It seems that the XmlUrlResolver is not behaving as I...
  13. T

    Obtain specific values in XML nodes

    I'm hoping someone can help with a problem I'm having getting multiple values out of an XML node. I'm trying to use vb.net to read a sydi xml document and write the requested information to excel. the XML portion I'm having issues with is this <computer> - <storage> - <drives name="SCSI Disk"...
  14. T

    Resolved Problem to read multiple xml files

    I'm new to .net programming and have ran into an issue I can't seem to find an answer for where ever I look. I have a multi-line text box where one would input the name of a computer. I want to read each computer as an array element and go to the corresponding .xml file to pull down data and...
  15. C

    Question Creating schema for bulk load of XML files. Please help.

    Hi guys, I have a project which needs to be completed by Tuesday but I have hit a brick wall with the XML schema side. I am very new to XML and Schemas so this will seem very simple to a lot of you experts but I have been trying to get it going for two days and am running out of time. I have...
  16. S

    Question All available xpath in XML document

    Hi everyone, I am using vb.net 2010 to get data from XML file, I was wondering if there is any way to find and print all available xpath of all nodes in the document. For example: XML file is like : <CATALOG> <CD> <TITLE>Empire Burlesque</TITLE> <ARTIST>Bob Dylan</ARTIST> </CD>...
  17. G

    Question Choosing a structure to manipulate xml data

    Hi Could I have vbdotnet's collective thoughts please? I am about to write a sub in my gameshow program (multiple choice questions A-D, eight contestants). I currently find myself paralysed by the number of ways of doing a simple task. The sub will take some well-formed xml contestant...
  18. tgf-47

    Question The maximum message size quota for incoming messages (65536) has been exceeded.....

    The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element. here is contents of my Web.config file: <?xml version="1.0"?> <!-- Note: As an alternative to hand editing this...
  19. R

    Dynamic PDF output from your .NET project with ReportLab PLUS

    Report Markup Language is an XML-style language for creating PDF documents. We've just written a sample ASP.NET project demonstrating how to use ReportLab's RML2PDF to create PDF documents from inside your .NET project. Create great looking custom dynamic PDFs from your website or application...
  20. J

    Question any way to prevent .ImportNode() from changing my tags?

    I realised after using .ImportNode(), the tags of those nodes with no data in the imported XML node got shortened. For example, <a> <b>some text</b> <c></c> <d></d> </a> will become the following after being imported into a XML document, <a> <b>some text</b> <c /> <d /> </a>...
Back
Top