IDML Datei mit zahlreichen stories.xml files

Hallo,
ID CC: exportiere ein Kapitel eines Buches zur Übersetzung in eine idml Datei.
Liefere den Übersetzern dann die xml files welche in der entpackten idml-Datei im Ordner "stories" zu finden sind zur Übersetzung. (danach wieder import angedacht)
Diese xml Dateien sehen jedoch so aus, dass in einer größeren Datei der Haupttext des Kapitels zu finden ist und in 100 weiteren einzelnen xml Dateien jeweils nur ein bis wenige Worte zu finden sind, welche z.B. im Kapitel Bildbeschriftungen, Textfelder, Tabellen etc.. darstellen.
Ist es möglich, dass man nur eine einzige xml generiert, wo der gesamte Kapitel Inhalt/Code auf einmal dargestellt wird? Wäre für die Übersetzer weit praktischer, als 100 Dateien pro Kapitel beachten zu müssen.
beste grüße

Incopy in Bezug auf die Adobe Programm Serie her gesehen die Lösung. Aber wenn man andere Programme (Trados, MemoQ, Wordfast) verwenden möchte, gibt es dazu keine andere Möglichkeit einen Übersetzungsworkflow zu optimieren?
Hatte von Ihnen vor einem Jahr den Vorschlag erhalten, die idml zu enpacken- stories/xmls - an die Übersetzer zu senden- und alles wieder zu importieren.
Nicht gesehen, dass dies aber dann soviele einzelne xmls werden können.

Similar Messages

  • How to store XML files

    Hi experts,
    I have an abap applicatrion that has to store xml files received from a web service.
    Where is better to store these files, in sap transparent tables or in the IXOS for example?
    Thanks

    Brad,
    An java application will call that BAPI passing the XML when error occurs in the process. The XML will contain the error details.
    I want to associate the error messages with the respective XMLs.
    What do you mean with  "object type / object value" ?
    Thanks
    Edited by: Jorge Castro on Jan 18, 2011 5:09 PM

  • Store xml files in the database like Microsoft Access

    Dear friends,
    I have come up here with a problem. I have to insert xml files in the database like Microsoft Access.
    So would somebody help me out.
    The query syntax to insert file and then retreive it back from database.
    How would u do it with picture files?
    I am waiting for your help.
    Thanks in advance.
    Yours Truly,
    Khawaja Salman Sarfraz

    Large files are usually stored as binary large objects (BLOBS.) I think MS Access calls these Memo fields.

  • How to store .xml file in mime repository.

    I AM USING CL_MIME_REPOSITORY_API
    TO UPLOAD FILE TO MIME REPOSITORY
    it shows the following outcome
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    Element was not closed. Error processing resource 'file:///C:/Documents and Settings/User/Local Settings/Temp/a9c41e8HTML00...
    <?xml version="1.0"?><TY_CUSTAC><TY_CUSTAC><CUSTNO Datatype="C" Length="20">0000000001</CUSTNO>...
    i am unable to read it in xml format any help will be appriciated.
    Edited by: SAMI ABAP on Apr 15, 2010 12:36 PM

    Hi,
    Uploading XML file in the repository takes lot of space, check whether you have it or else request the concerned person to extend the space or to create another directory with bigger space.
    Regards,
    Ni3

  • How to store xml-file direct on file-directory on server ?

    Hello,
    I have created a xml-data by using xmlelements, xmlforest .... and so on in a sql-statement and want to store it as file in a ( windows) server-directory.
    I can find some samples to store it in XML-DB by using dbms_xmlGEN and dbms_XDB,
    but how to store it direct ?
    thank you
    Norbert

    Try dbms_xmldom.writeToFile()..
    Or create a resource from your SQL Statement using dbms_xdb.createResource() and then access the resource via FTP or HTTP

  • How to store xml files in oracle as xmltype

    public class writexmldb2
         public static void main(String args[]) throws SQLException, FileNotFoundException
              DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
              Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@172.24.198.131:1521:ncad","scott","tiger");
              OracleXMLSave oracleXMLSave = new OracleXMLSave(conn, "RK1");
              Reader xsltReader=new FileReader(new File("d:/input.xslt"));
              oracleXMLSave.setXSLT(xsltReader, null);
              oracleXMLSave.setRowTag("RK1");
              oracleXMLSave.insertXML(oracleXMLSave.getURL("d:/catalog.xml"));
              OracleXMLQuery query = new OracleXMLQuery(conn, "SELECT JOURNAL_TITLE, PUBLISHER, EDITION, " +"ARTICLE_SECTION, TITLE, AUTHOR FROM JOURNAL");
              Reader xsltReader1=new FileReader(new File("d:/output.xslt"));
              query.setXSLT(xsltReader1, null);
              query.setRowTag("RK1");
              String xmlString=query.getXMLString();
    i wrote this one... but i am getting following errors
    Exception in thread "main" oracle.xml.sql.OracleXMLSQLException: No rows to modify -- the row enclosing tag missing. Specify the correct row enclosing tag.
         at oracle.xml.sql.dml.OracleXMLSave.saveXML(OracleXMLSave.java:2385)
         at oracle.xml.sql.dml.OracleXMLSave.saveXML(OracleXMLSave.java:2257)
         at oracle.xml.sql.dml.OracleXMLSave.insertXML(OracleXMLSave.java:1345)
         at writexmldb2.main(writexmldb2.java:18)

    i also tried with following code. but this one also give some errors.
    import oracle.sql.CLOB;
    import oracle.xml.sql.dml.*;
    import java.sql.*;
    import oracle.jdbc.driver.*;
    import oracle.jdbc.*;
    import java.io.Writer;
    import java.net.*;
    public class xmlwritedb
    public static void main(String args[]) throws SQLException, ClassNotFoundException
    String tabName = "RK1"; // Table into which to insert XML data
    String xmlData = "D:\\catalog.xml"; // XML document filename
    Class.forName("oracle.jdbc.driver.OracleDriver");
    // Initialize a JDBC connection
    Connection conn =
    DriverManager.getConnection("jdbc:oracle:thin:@172.24.198.131:1521:ncad","scott","tiger");
    insertXML( xmlData, conn);
    //OracleXMLSave save = new OracleXMLSave(conn, tabName);
    //System.out.println(" successfully inserted "/*rowCount
    // " rows into "*/+ tabName);
    conn.close();
    public static CLOB getCLOB(String xmlData, Connection conn) throws SQLException{
         CLOB tempClob = null;
         try{
         // If the temporary CLOB has not yet been created, create new
         tempClob = CLOB.createTemporary(conn, true, CLOB.DURATION_SESSION);
         // Open the temporary CLOB in readwrite mode to enable writing
         tempClob.open(CLOB.MODE_READWRITE);
         // Get the output stream to write
         Writer tempClobWriter = tempClob.getCharacterOutputStream();
         // Write the data into the temporary CLOB
         tempClobWriter.write(xmlData);
         // Flush and close the stream
         tempClobWriter.flush();
         tempClobWriter.close();
         // Close the temporary CLOB
         tempClob.close();
         } catch(SQLException sqlexp){
         tempClob.freeTemporary();
         sqlexp.printStackTrace();
         } catch(Exception exp){
         tempClob.freeTemporary();
         exp.printStackTrace();
         return tempClob;
    public static void insertXML(String xmlData, Connection conn) {
         CLOB clob = null;
         String query;
         // Initialize statement Object
         PreparedStatement pstmt = null;
         try{
         query = "INSERT INTO RK1 VALUES (XMLType(?))";
         // Get the statement Object
         pstmt = conn.prepareStatement(query);
         // xmlData is the string that contains the XML Data.
         // Get the CLOB object using the getCLOB method.
         clob = getCLOB(xmlData, conn);
         // Bind this CLOB with the prepared Statement
         pstmt.setObject(1, clob);
         // Execute the Prepared Statement
         if (pstmt.executeUpdate () == 1) {
         System.out.println ("Successfully inserted a Purchase Order !");
         } catch(SQLException sqlexp){
         sqlexp.printStackTrace();
         } catch(Exception exp){
         exp.printStackTrace();
    errors;;;;;;;;;
    java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00210: expected '<' instead of 'D'
    Error at line 1
    ORA-06512: at "SYS.XMLTYPE", line 0
    ORA-06512: at line 1
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:305)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:272)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:623)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:181)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:543)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1027)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2885)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:2957)
         at xmlwritedb.insertXML(xmlwritedb.java:70)
         at xmlwritedb.main(xmlwritedb.java:20)

  • Best practice for reducing the number of XML files in an IDML file for translation?

    Our engineering team is looking for ways for us to reduce the number of XML files produced when a (relatively) simple 2-page INDD file is saved out as IDML for translation?

    IDML contains quite a few XML files, but I suspect you're only interested in the Stories folder if you're working on a translation. The way to do that is... to reduce the number of stories. If it's a two-pager, chances are that you have a whole bunch of unthreaded text frames. Thread them in logical reading order. This will help the translator(s) as well - by threading frames in logical reading order, they don't have to work to read the document in the same order as the target audience.

  • I want to store an xml file into database, and transport it to the XI.

    tell me  in how many ways we can store a xml file in database.
    one i know is.- create a table with field same as that of XML. store XML file data in it
    and at the time of transfering data to XI fatch data from table and create an XML file and transfer...
    tell me if u know some more

    Dear Swethi,
    You can move images to SAP using SE78. then u can use them where ever u you require them.
    SE78->GRAPHICS->BMAP here give ur image name and click on save
    Rgds,
    Kiran
    Edited by: Kiran on Jun 11, 2009 7:15 AM

  • Transfer of xml file elements to data base columns

    hi all,
    i have to store xml file's data(element values) into the data base(table columns).
    i heard that we can acheive this by XSU.
    IS it is mediator between xml and db? if yes how to install it.
    i tried something as below
    with t as (
    select xmltype('<Message-Header>
    <Message-Id>1234</Message-Id>
    <Sender-Company-ID>4569</Sender-Company-ID>
    <Sender-Company-Name>abc company</Sender-Company-Nam
    <Sender-User-ID>AA</Sender-User-ID>
    <Recv-Company-ID>050</Recv-Company-ID>
    <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
    <Creation-Time>20101019 15:59:39</Creation-Time>
    </Message-Header>') as xml from dual
    )but i am getting following error. can anybody explain about this
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (
      2  select xmltype('<Message-Header>
      3  <Message-Id>1234</Message-Id>
      4  <Sender-Company-ID>4569</Sender-Company-ID>
      5  <Sender-Company-Name>abc company</Sender-Company-Name>
      6  <Sender-User-ID>AA</Sender-User-ID>
      7  <Recv-Company-ID>050</Recv-Company-ID>
      8  <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
      9  <Creation-Time>20101019 15:59:39</Creation-Time>
    10  </Message-Header>') as xml from dual
    11* )
    SQL> /
    with t as (
    ERROR at line 1:
    ORA-01041: internal error. hostdef extension doesn't existPlease help me..
    my db version is Oracle Database 10g Release 10.2.0.1.0 - Production

    Hi,
    What are you trying to achieve with a single WITH clause and no SELECT?
    Please see this from the documentation if you want to use it properly :
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_10002.htm#i2077142
    Apart from its true purpose of subquery factoring, the WITH clause is often use here and there to simulate a table content, but you'll always need a SELECT.
    Maybe that's what you were trying to do?
    As for your question, starting with release 10.2, Oracle provides XMLTable to shred XML documents into relational structures.
    For example,
    with t as (
    select xmltype('<Message-Header>
    <Message-Id>1234</Message-Id>
    <Sender-Company-ID>4569</Sender-Company-ID>
    <Sender-Company-Name>abc company</Sender-Company-Name>
    <Sender-User-ID>AA</Sender-User-ID>
    <Recv-Company-ID>050</Recv-Company-ID>
    <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
    <Creation-Time>20101019 15:59:39</Creation-Time>
    </Message-Header>') as xml from dual
    select x.*
    from t,
         XMLTable(
          '/Message-Header'
          passing t.xml
          columns
            message_id          number       path 'Message-Id',
            sender_company_id   number       path 'Sender-Company-ID',
            sender_company_name varchar2(30) path 'Sender-Company-Name',
            sender_user_id      varchar2(30) path 'Sender-User-ID',
            recv_company_id     varchar2(30) path 'Recv-Company-ID',
            recv_company_name   varchar2(30) path 'Recv-Company-Name',
            creation_time       varchar2(30) path 'Creation-Time'
         ) x
    ;If you're working in PL/SQL, and the XML resides in a variable, you can directly do (with necessary datatype conversion in the SELECT) :
    insert into your_table ( <your_columns_list> )
    select <your_columns_list>
    from XMLTable(
          '/Message-Header'
          passing your_xml_var
          columns
            message_id          number       path 'Message-Id',
            sender_company_id   number       path 'Sender-Company-ID',
            sender_company_name varchar2(30) path 'Sender-Company-Name',
            sender_user_id      varchar2(30) path 'Sender-User-ID',
            recv_company_id     varchar2(30) path 'Recv-Company-ID',
            recv_company_name   varchar2(30) path 'Recv-Company-Name',
            creation_time       varchar2(30) path 'Creation-Time'
         ) x
    ;

  • IDML modification using xsl and xml

    Hi All
    I am new to IDML development and get stuck at first step.
    I know that IDML becomes a bunch of xml files so if I create a template and Export it as IDML and for processing the job, I want to modify the story xml file among all the xml files which has some special content in it so is it posible to change only that particular xml file using any java sample example given in SDK or other class files which has this feature ??
    One more question, might be novice, what is use of schema in all IDML process and how to generate the schema using the script given in SDK ??.
    Many Thanks in advance
    Mac

    Hi Frank,
    I assumed I would run into problems like this, so I've decided to transform XML in backing bean and send it to response's output stream and this works for me. Now I'm struggling to get my css file in this backing bean so I can use it as a parameter in my XSLT transformation. We have a css file that ADF loads, can you tell me how do I get a reference on it on a backing bean?
    Thanks,
    regards!

  • SQL*Loader problem - not efficient, parsing error for big xml files

    Hi Experts,
    First of all, I would like to store xml files in object relation way. Therefore I created a schema and a table for it (see above).
    I wants to propagate it (by using generated xml files), hence I created a control file for sql loader (see above).
    I have two problems for it.
    1, It takes a lot of time. It means I can upload a ~80MB file in 2 hours and a half.
    2, At bigger files, I got the following error messages (OCI-31011: XML parsing failed OCI-19202: Error occurred in XML processing LPX-00243: element attribute value must be enclosed in quotes). It is quite interesting because my xml file is generated and I could generated and uploaded the first and second half of the file.
    Can you help me to solve these problems?
    Thanks,
    Adam
    Control file
    UNRECOVERABLE
    LOAD DATA
    CHARACTERSET UTF8
    INFILE *
    APPEND
    INTO TABLE coll_xml_objrel
    XMLTYPE(xml)
    FIELDS
    ident constant 2
    ,file_name filler char(100)
    ,xml LOBFILE (file_name) TERMINATED BY EOF
    BEGINDATA
    generated1000x10000.xml
    Sql Loader command
    sqlldr.exe username/password@//localhost:1521/SID control='loader.ctl' log='loadr.log' direct=true
    Schema
    <?xml version="1.0" encoding="UTF-8"?>
    <schema targetNamespace="http://www.something.com/shema/simple_searches" elementFormDefault="qualified" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.something.com/shema/simple_searches">
        <element name="searches" type="tns:searches_type"></element>
        <element name="search" type="tns:search_type"></element>
        <element name="results" type="tns:results_type"></element>
        <element name="result" type="tns:result_type"></element>
        <complexType name="searches_type">
            <sequence>
                <element ref="tns:search" maxOccurs="unbounded"></element>
            </sequence>
        </complexType>
        <complexType name="search_type">
            <sequence>
                <element ref="tns:results"></element>
            </sequence>
            <attribute ref="tns:id" use="required"></attribute>
            <attribute ref="tns:type" use="required"></attribute>
        </complexType>
        <complexType name="results_type">
            <sequence maxOccurs="unbounded">
                <element ref="tns:result"></element>
            </sequence>
        </complexType>
        <complexType name="result_type">
            <attribute ref="tns:id" use="required"></attribute>
        </complexType>
        <simpleType name="type_type">
            <restriction base="string">
                <enumeration value="value1"></enumeration>
                <enumeration value="value2"></enumeration>
            </restriction>
        </simpleType>
        <attribute name="type" type="tns:type_type"></attribute>
        <attribute name="id" type="string"></attribute>
    </schema>
    Create table
    create table coll_xml_objrel
    ident Number(20) primary key,
    xml xmltype)
    Xmltype column xml
    store as object relational
    xmlschema "http://www.something.com/schema/simple_searches.xsd"
    Element "searches";

    Hi Odie_63,
    Thanks for your answer.
    I will post this question in the XML DB forum too (edit: I realized that you have done it. Thanks for it).
    1, Version: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    2, see above
    3, I have registered my schema with using dbms_xmlschema.registerSchema function.
    Cheers,
    Adam
    XML generator:
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import javax.xml.stream.XMLOutputFactory;
    import javax.xml.stream.XMLStreamException;
    import javax.xml.stream.XMLStreamWriter;
    public class mainGenerator {
        public static void main(String[] args) throws FileNotFoundException, XMLStreamException {
            // TODO Auto-generated method stub
            final long numberOfSearches = 500;
            final long numberOfResults = 10000;
            XMLOutputFactory xof = XMLOutputFactory.newFactory();
            XMLStreamWriter writer = xof.createXMLStreamWriter(new FileOutputStream("C:\\Working\\generated500x10000.xml"));
            writer.writeStartDocument();
            writer.writeStartElement("tns","searches", "http://www.something.com/schema/simple_searches");
            writer.writeNamespace("tns", "http://www.something.com/schema/simple_searches");
            for (long i = 0; i < numberOfSearches; i++){
                Long help = new Long(i);
                writer.writeStartElement("tns","search", "http://www.something.com/schema/simple_searches);
                writer.writeAttribute("tns", "http://www.something.com/schema/simple_searches", "type", "value1");
                writer.writeAttribute("tns", "http://www.something.com/schema/simple_searches", "id", help.toString());
                writer.writeStartElement("tns","results", "http://www.something.com/schema/simple_searches");
                for (long j = 0; j < numberOfResults; j++){
                    writer.writeStartElement("tns","result", "http://www.something.com/schema/simple_searches");
                    Long helper = new Long(i*numberOfResults+j);
                    writer.writeAttribute("tns", "http://www.something.com/schema/simple_searches", "id", helper.toString());
                    writer.writeEndElement();
                writer.writeEndElement();
                writer.writeEndElement();
            writer.writeEndElement();
            writer.writeEndDocument();
            writer.close();
    registerSchema:
    begin
    dbms_xmlschema.registerSchema(
    'http://www.something.com/schema/simple_searches',
    '<?xml version="1.0" encoding="UTF-8"?>
    <schema targetNamespace="http://www.something.com/schema/simple_searches" elementFormDefault="qualified" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.something.com/schema/simple_searches">
        <element name="searches" type="tns:searches_type"></element>
        <element name="search" type="tns:search_type"></element>
        <element name="results" type="tns:results_type"></element>
        <element name="result" type="tns:result_type"></element>
        <complexType name="searches_type">
            <sequence>
                <element ref="tns:search" maxOccurs="unbounded"></element>
            </sequence>
        </complexType>
        <complexType name="search_type">
            <sequence>
                <element ref="tns:results"></element>
            </sequence>
            <attribute ref="tns:id" use="required"></attribute>
            <attribute ref="tns:type" use="required"></attribute>
        </complexType>
        <complexType name="results_type">
            <sequence maxOccurs="unbounded">
                <element ref="tns:result"></element>
            </sequence>
        </complexType>
        <complexType name="result_type">
            <attribute ref="tns:id" use="required"></attribute>
        </complexType>
        <simpleType name="type_type">
            <restriction base="string">
                <enumeration value="value1"></enumeration>
                <enumeration value="value2"></enumeration>
            </restriction>
        </simpleType>
        <attribute name="type" type="tns:type_type"></attribute>
        <attribute name="id" type="string"></attribute>
    </schema>',
    TRUE, TRUE, FALSE, FALSE);
    end

  • How to add data in xml file

    Hi ALL
    I want to add new fields on seeded EBS page to store their values in hr_api_transaction table whoch contain information of other fields on that page which are seeded
    but that table has one column which stores xml file and that xml file has all information about that page's fields
    how can I store my custom fields values in that xml file ?

    Hi,
    As Andy said,  add data to an xml file is overwriting, if you mean append data to xml file, please look this article:
    http://codesamplez.com/programming/linq-to-xml-tutorial, Since this issue is more related to ASP.net, you could also ask this issue in asp.net forum:
    http://forums.asp.net/
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Trying to store XML documents in Oracle XML repository using Java

    Hi,
    I am trying to store XML documents in Oracle XML Repository using a Java program. i just need a functionality to be able to store XML files and retrieve them.
    Can anybody PLEASE provide me some sample code.
    Thanks in Advance
    Sasha

    Did you ever get any samples on doing this and if so could you pass it on to me.
    Thanks

  • Reading XML file in a Store App

    I have an XML file on the web which I want to read from a C# Store app. This file is actually an Atom feed, but that doesn't matter, I just want to get the XML contained within.
    Anyway, I tried several methods but none of them can get me what I want.
    My requirements are pretty simple, I want to get each Entry, and from it take the Summary, and from it take the entire text including the tags. The closest I got was being able to get the entire text contained within <Summary>, but without the child
    tags <short-description> and <tab>, but I want them too.
    <?xml version="1.0" encoding="UTF-8"?>
    <feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <title>Product Details</title>
    <link rel="self" href="http://someLink" />
    <subtitle>Product Details</subtitle>
    <id>somID</id>
    <updated>2015-03-04T11:20:05Z</updated>
    <dc:date>2015-03-04T11:20:05Z</dc:date>
    <entry>
    <title type="text">Loan ABC</title>
    <link rel="alternate" href="http://somLink" />
    <author>
    <name />
    </author>
    <summary type="text">
    <short-description>Get the money you need when you need it! Your perfect banking partner provides you instant gold loans at cheaper interest rates.</short-description>
    <tab id="0" header="Features &amp; Benefits">
    Avail loan amount up to Rs.75 Lakhs
    Quick processing within a few minutes
    No hidden charges or heavy pen
    *Conditions apply
    </tab>
    <tab id="1" header="How to apply ?">
    Who can apply
    Any Individuals.
    How to avail the loan?
    To avail the loan, Please visit any of our branches.
    </tab>
    <accordian id="0" header="Documents Required">
    If you are a new customer, following documents are required:
    Proof of Identity (Passport / Voters ID card/ Driving License/PAN Card)
    Recent Passport size photograph
    Address Proof (Ration card Tel/ Electricity Bill/ Lease agreement/ Passport/Trade license /Sales Tax certificate)
    </accordian>
    <accordian id="1" header="Repayment options">
    Repayment of the loan can be made as lump sum or as installments
    </accordian>
    <accordian id="2" header="Gold loan - Rate per gram">
    To know the maximum amount per gram, please click here.
    </accordian>
    <accordian id="3" header="Interest Rates &amp; Charges">
    Please visit the Interest Rates page for details
    </accordian>
    </summary>
    </entry>
    <entry>
    <title type="text">Federal Proxy Loan </title>
    <author>
    <name> BMA </name>
    </author>
    <summary type="text">
    <short-description>Do you want a loan ? We give out loans !!! At nominal interest rates !!! </short-description>
    <tab id="0" header="ABC &amp; DEF">
    This is Line 1
    This is Line 3 (Line 2 was empty)
    4
    5
    </tab>
    <tab id="1" header="Header of ID 1">
    ABCDEFGHI
    </tab>
    </summary>
    </entry>
    <entry>
    <title type="text">Federal Car Loan </title>
    <author>
    <name> BMA </name>
    </author>
    <summary type="text">
    <short-description>Do you want a loan ? We give out loans !!! At nominal interest rates !!! </short-description>
    <tab id="0" header="ABC &amp; DEF">
    This is Line 1
    This is Line 3 (Line 2 was empty)
    4
    5
    </tab>
    <tab id="1" header="Header of ID 1">
    ABCDEFGHI
    </tab>
    </summary>
    </entry>
    <entry>
    <title type="text">Yet Another Federal Loan </title>
    <author>
    <name>BMA</name>
    </author>
    <summary type="text">
    <short-description>We give wonderful loans, all for you - cum and get it</short-description>
    <tab id="0" header="Header &amp; d">
    This is Line 1
    This is Line 2
    This is Line 3
    </tab>
    <tab id="1" header="abc">
    Only One Line for Tab 1
    </tab>
    </summary>
    </entry>
    </feed>

    Take a look at linq to xml to parse the xml
    https://msdn.microsoft.com/en-us/library/bb387098.aspx?f=255&MSPPError=-2147217396
    Another option if the xml is always in the same format you can create a class to deserialize the xml into.
    http://irisclasson.com/2012/07/09/example-metro-app-winrt-serializing-and-deseralizing-objects-to-storagefile-and-localfolder-using-generics-and-asyncawait-threading/

  • How to read the data from Excel file and Store in XML file using java

    Hi All,
    I got a problem with Excel file.
    My problem is how to read the data from Excel file and Store in XML file using java excel api.
    For getting the data from Excel file what are all the steps i need to follow to get the correct result.
    Any body can send me the code (with java code ,Excel sheet) to this mail id : [email protected]
    Thanks & Regards,
    Sreenu,
    [email protected],
    india,

    If you want someone to do your work, please have the courtesy to provide payment.
    http://www.rentacoder.com

Maybe you are looking for

  • Import security not working

    Hi All, I have exported the security permisions from one server and need to import it to another. When I am importing its saying file not found , exception coming. I have placed teh file in the corrrect location which is K:\Oracle\Middleware\user_pro

  • Is there another cable for syncing ipad 2 ?!?

    Hi I have an Ipad 2 and I was trying to sync my Ipad with my computer and it was not working my computer won't recognise my Ipad my computer has a windows 7 programme on it and I was wondering is there another cable for syncing? Because my ipad isn't

  • Downloading patches via ftp

    Hi I found these instructions for downloading patches via ftp... http://docs.sun.com/app/docs/doc/817-3331/6miuccqni?a=view (Under section entitled "Example—Downloading and Applying a Signed Patch by Using ftp") I tried to follow these, but cannot se

  • How to include WAD objects in BSP

    Hi, I would love it if I could include WAD objects like tables, maps, etc. directly in a BSP page - Is this possible ?

  • My Keyboard/Trackpad is playing up

    I posted a question last week ago (to no reply) about my trackpad playing up but now the problem has gotten worse. My trackpad is nearly dead and now the "QWERTYUIO (except "P") are intermittently dying on me. Is there anything I can do? (Going to an