Vineet Solabannavar

Greenhorn
+ Follow
since Aug 27, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Vineet Solabannavar

Hi,

I have the following string as an attribute value for a tag.



I want to parse it such that I have "/Test_Cabinet" in one parameter and
article_consumer_article_Feature.xml as another parameter so that I can use them separately.

Thanks,
Vineet
Hi,

Thanks for the suggestion.
I have one more problem, I want to just match the img tags in the XML and copy all the remaining HTML tags as they are to the output.

Please suggest a solution.

Thanks in advance

Vineet
Hi,

I have an XML with HTML tags.
I want to remove the <a href> tags and keep the remaining XML as it is using XSL transformation.

How can I do it using xsl:copy-of?


The above code is the input xml.
Yeah i was able to remove them.
Thanks a bunch

Vineet
Hi,

I have a requirement where the tags like <?dctmLink....> have to be removed from the generated output.
Please could you guide me regarding on how do we do this?

Eg:



I want to remove such tags using an XSL.

Thanks,
Vineet S
Hi,

I need to convert the below input to the output below:
Please suggest an xsl for the same.
Note that we just need to add extra attributes when we encounter an attribute of the form "directive='imageurl'"


INPUT



OUTPUT



Thanks,
Vineet
Actually there will be some other attributes attached to the xml generated using the xsl... This is one part of it....
Hi I am trying to copy to elements from the input to output as it is.
Please can u let me know if the xsl below is correct?

INPUT


My XSL:
I actually want the <section_header> to appear after <section_text>.
Now the output I generate is all <section_header>'s tags followed by all <section_text> tags.

Please advise
Craig,

Actually I have gone through tutors. I tried to do the conversion but am unable to find a solution. Have done the other parts, just need to add the <section_header> tag followed by <section_text>. Each time a <section_header> tag appears, the following tag should be a <section_text> tag.

Vineet
Hi,

I need to convert the below input.xml to the output.xml format.
Please advice

Input.xml:


Output.xml:

Hi,

I am using Oracle 10g with WebLogic 8.1 SP3 connection pooling.
I am getting the below error.


Oracle 10g driver throws java.sql.SQLException: OALL8 is in an inconsistent state.

Please suggest a fix.
Hi,

I am using WebLogic 8.1 SP3 and trying to connect to Oracle 10g.
I have created WebLogic JDBC connection pool. But i am getting Oracle 10g driver throws java.sql.SQLException: OALL8 is in an inconsistent state.

Please suggest me a solution to solve the above issue.
18 years ago




In the above code, we are using allnodes.getFirstChild().getNodeValue() to get the value of the node. Please explain as to why we need to use getFirstChild() method to retrieve the values, since allnodes is of type Node?