473,785 Members | 2,990 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

String to XML

RamananKalirajan
608 Contributor
I am currently working on a Typical Project, in which I have a requirement such that i have to fetch a data which is in CLOB format that holds XML Element. I am passing that value as a String to Javascript through AJAX. My need is I have to convert that String to XML or use that String and print the XML data in a Table dynamically Please can any one help me in doing so

Thank You,
Ramanan
Mar 7 '08 #1
5 1557
acoder
16,027 Recognized Expert Moderator MVP
If you're using Ajax, make sure the XML is valid and use responseXML.

If you have problems, post your code.
Mar 7 '08 #2
RamananKalirajan
608 Contributor
If you're using Ajax, make sure the XML is valid and use responseXML.

If you have problems, post your code.

Thank you very much sir, I had did this by using the following code

Expand|Select|Wrap|Line Numbers
  1. var temp=http.getAttribute("empxml");
  2. if (window.ActiveXObject)
  3.   {
  4.   var doc=new ActiveXObject("Microsoft.XMLDOM");
  5.   doc.async="false";
  6.   doc.loadXML(temp);
  7.  alert("converted");
  8.   }
  9. // code for Mozilla, Firefox, Opera, etc.
  10. else
  11.   {
  12.   var parser=new DOMParser();
  13.   var doc=parser.parseFromString(temp,"text/xml");
  14.   }
  15.  
  16.  
  17. var _root = doc.getElementsByTagName("emp").item(0);
  18. var rows = _root.getElementsByTagName("pname");
  19. var projName=rows[0].firstChild.nodeValue;
  20. alert(projName);
  21. document.getElementById("pname").innerHTML=projName;
  22. var release=_root.getElementsByTagName("r");
  23.  
  24.     var _dhtml="<select name='relsel' id='relsel'>";    
  25.             for(var _n=0;_n<release.length;_n++)
  26.             {
  27.                 alert( release[_n].firstChild.nodeValue);
  28.                 _dhtml+="<option val='"+_n+"'>"+ release[_n].firstChild.nodeValue+"</option>";
  29.  
  30.             }
  31.     _dhtml+="</select>"
  32.  
  33.     document.getElementById("reldiv").innerHTML=_dhtml;
  34. }

Thank you
Mar 10 '08 #3
acoder
16,027 Recognized Expert Moderator MVP
OK, so what happens with that code? How much of it is working as you want? What's not working? What errors have you got if any?
Mar 10 '08 #4
RamananKalirajan
608 Contributor
OK, so what happens with that code? How much of it is working as you want? What's not working? What errors have you got if any?

It's working good I am not having any error on it. Thank You Sir
Mar 11 '08 #5
acoder
16,027 Recognized Expert Moderator MVP
It's working good I am not having any error on it. Thank You Sir
Oh right. I misunderstood your post. Glad to see that it's working.
Mar 11 '08 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

16
6755
by: Krakatioison | last post by:
My sites navigation is like this: http://www.newsbackup.com/index.php?n=000000000040900000 , depending on the variable "n" (which is always a number), it will take me anywhere on the site... this number is always changing as I have hundreds of thousand of pages of text on my site. Problem: - in my opinion this just not only look weird, but the variable "n" (number)
5
31180
by: Stu Cazzo | last post by:
I have the following: String myStringArray; String myString = "98 99 100"; I want to split up myString and put it into myStringArray. If I use this: myStringArray = myString.split(" "); it will split myString up using the delimiter of 1 space so that
9
8004
by: John F Dutcher | last post by:
I use code like the following to retrieve fields from a form: recd = recd.append(string.ljust(form.getfirst("lname",' '),15)) recd.append(string.ljust(form.getfirst("fname",' '),15)) etc., etc. The intent is to finish by assigning the list to a string that I would write to disk: recstr = string.join(recd,'')
10
8184
by: Angus Leeming | last post by:
Hello, Could someone explain to me why the Standard conveners chose to typedef std::string rather than derive it from std::basic_string<char, ...>? The result of course is that it is effectively impossible to forward declare std::string. (Yes I am aware that some libraries have a string_fwd.h header, but this is not portable.) That said, is there any real reason why I can't derive an otherwise empty
2
4784
by: Andrew | last post by:
I have written two classes : a String Class based on the book " C++ in 21 days " and a GenericIpClass listed below : file GenericStringClass.h // Generic String class
29
4324
by: zoro | last post by:
Hi, I am new to C#, coming from Delphi. In Delphi, I am using a 3rd party string handling library that includes some very useful string functions, in particular I'm interested in BEFORE (return substring before a pattern), AFTER (return substring after a pattern), and BETWEEN (return substring between 2 patterns). My questions are: 1. Can any tell me how I can implement such functionality in C#? 2. Is it possible to add/include function...
2
3179
by: Badass Scotsman | last post by:
Hello, Using VB and ASP,NET I would like to be able to search a STRING for a smaller STRING within, based on the characters which appear before and after. For example: String1 = " That was a tasty burger"
15
50261
by: morleyc | last post by:
Hi, i would like to remove a number of characters from my string (\t \r \n which are throughout the string), i know regex can do this but i have no idea how. Any pointers much appreciated. Chris
11
3070
by: ramu | last post by:
Hi, Suppose I have a string like this: "I have a string \"and a inner string\\\" I want to remove space in this string but not in the inner string" In the above string I have to remove spaces, but not in the inner string(\"and a inner string\\\"). Will anyone please tell me how to do this?
8
4741
by: drjay1627 | last post by:
hello, This is my 1st post here! *welcome drjay* Thanks! I look answering questions and getting answers to other! Now that we got that out of the way. I'm trying to read in a string and add the unique words in the string to a map. Eg:
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10327
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10151
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8973
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.