posted 12 years ago
Hi
I am working on a webproxy portlet which fetches the contents of a web page and displays it in a portlet.
while doing so this portlet creates proxy of all the links. This is done with the help of an XSL.
Here is the XSL contents:
My problem is that if the page that is being accessed using this portlet contains html tag with xmlns then it does not get properly parsed
but if it just has <html> tag then it works properly.
Here is the example:
----------------------------------------
HTML Source:
Since the source has HTML with xmlns <HTML xmlns="http://www.w3.org/1999/xhtml">
The output to the portlet remains same as the original html (which is wrong).
If the source htlm doesn't have xmlns then following is the output for the portlet. (This is desired)
Please suggest me what needs to be changed in XSL to fix this problem.