Girish Jetty

Greenhorn
+ Follow
since Apr 25, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Girish Jetty

Thanks Will for your answer. It really worked!!
Hi
I have to parse an XML document with HTML formatting tags in it. I embedded the HTML tags within <![CDATA[ as in
<TERM name="access">
<DEFINITION>Principle that <![CDATA[ <br> ]]> obligates companies to guarantee consumers the right to inspect the personal information.
</DEFINITION>
</TERM>
The problem with this is that when I try to extract the value of DEFINITION using the xml parser, I get it as 'Principle that' compared to what I intend to get like 'Principle that <br> obligates companies to guarantee consumers the right to inspect the personal information'.
I don't understand why the parser is totally returning the value ignoring the text after the CDATA has begun.As far as my understanding CDATA makes the text within it to be ignored by the parser while validating it and returns the embedded text too('<br>' in this case).
Can somebody suggest a way to solve this problem?
Hi
We have our applications currently running on weblogic 6.1 and are thinking of migrating to
7.0. Can Somebody pls. let me know about any major advantages or issues in moving(and even developing new) applications in 7.0 compared to 6.1.
Thanks
22 years ago
Hi vikram
U need to put the userid and password within single quotes like below:
String st1="SELECT Ssn FROM Authentication WHERE Email='" +userId+"' AND Password='"+password+"'";
Good Luck!!
Bye
Girish
23 years ago
JSP