Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JohnMethew

    Populating the database by xml

    Sorry to reply late, actually I have done this now.. and sorry for not mentioning the Technology. what I found was keep your database(xml file) ~wellformed. then if you want to populate the databse, simply append the data(entry to be added) to the database file by File IO operation. this is...
  2. JohnMethew

    Populating the database by xml

    I have a database like, <database> <entry> <data> data 1 </data> <data> data 2 </data> </entry> <entry> ---- ---- </entry> </database> I want to add new entry in my database, and that new entry i have in DOM format, how do I add that new entry in existing database of...
  3. JohnMethew

    Lotus notes to SQL Server (RDBMS)

    Any article or tutorial which can explain how to conver lotus notes to SQL Server, There are softwares i know like ToJave, but anything mechinical by which i can do my hands dirty working on it. Regards
  4. JohnMethew

    XML, configuration file

    How can XML be used as an configuration file, XML file on which if i apply different XSLT different output I get. example, if I apply one XSLT it should give me, HTML and on same Configuraton file if I apply different XSLT it should give me lets say, other xml file. Where can I get an...
  5. JohnMethew

    Displaying XML

    http://xmlfiles.com/articles/michael/htmlxml/default.asp I think this should help !! Regards,
  6. JohnMethew

    Posting xml to server and getting xml response back.

    Are you talking about AJAX ? XMLHttpRequest, XMLHttpResponse are used to transfer data in XML format(commenly used). You can easily find tutorials on Ajax, so, google it !!
  7. JohnMethew

    Passing parameter to XSLT file

    HI, What I was intend to do was to sort all the <fname>, so What I was trying to do was to generate a fragment, like in a variable, ex. <xsl:template match="//parents"> <xsl:variable name="nodes"> <xsl:applytemplates/> </xsl:variable> <xsl:for-each select='exsl:node-set($nodes)/*'>...
  8. JohnMethew

    Passing parameter to XSLT file

    I am using SAX Parser, and want to send a parameter (can be integer or string) and want to display out put depending upon the selection. example, <home> <parents> <Mname>Jeni</Mname> <Fname>Tom</Fname> </parents> <parents> <Mname>Carol</Mname> <Fname>Dave</Fname> </parents>...

Part and Inventory Search

Back
Top