Search results for query: *

  1. M

    Load CDATA Section into DataSet

    Thanks John It worked. Regards Mahesh
  2. M

    Load CDATA Section into DataSet

    Hi Is it possible to read a CDATA section from an xml file and load just a CDATA section into a dataset. Example of XML file <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"...
  3. M

    Generate Xml from DataSet

    Hi, I am populating a datagrid with a dataset, after making required changes user will press Save button, which will save updated records in dataset. after that i am generating an xml file from dataset like this <NewDataSet> <Person> <PERSONFNAME>ABC</PERSONFNAME>...
  4. M

    Generate Xml from DataSet

    Hi, I need to generate an xml document from several datatables in a dataset which is loaded from oracle. There are several parent-child relationships between these tables. I want to convert the data set into xml with the child nodes being nested under the parent nodes How can i do that, can any...
  5. M

    Adding a new Element

    Hi, I have following XML, <?xml version="1.0" encoding="UTF-8" ?> - <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Header>...
  6. M

    How to append to the middle of a file

    Hi, I have an xml file like this <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"...
  7. M

    How to add multiple namespaces in Soap Envelope

    Hi I am writing a soap message manually by using XMlTextWriter, in which i want to write this line. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> i am writing these...
  8. M

    Datagrid

    I have a Updatable DataGrid & that is filled from a DataSet. My question is whenever user changes any record in datagrid that should be updated in dataset also, i am not getting how to update dataset with updated data. Regards Mahesh
Back
Top