Skip to Main Content

Cloud Platform

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Dyn removes content under "&lt;" and "&gt;" when HTML code has anchor tags (<a href="...">Hello!</a>

4129781Jan 14 2020 — edited Jan 14 2020

For the below HTML code, Dyn give this as output (Removes the content under "&lt;" and "&gt;" which translates to <foobar>): Testing text. To know more Click here

     HTML code:

<html>

    <body>

     Testing &lt;special&gt; text.

     To know more <a href = “https://www.google.com”> Click here </a>

    </body>

   </html>

If you remove the anchor tag(tag denoted by <a>) tag and give the below HTML, it gives the following output: Testing <special> text. To know more Click here

     HTML code:   

<html>

    <body>

  Testing <special> text.

  To know more Click here

     </body>

  </html>

We observed similar behavior in our application too, which had a lot more HTML code. But, when we removed all the anchor tags, the content under  “&lt;” and “&gt;” started rendering as desired.

Hence, we were wondering if this is a known issue with Dyn and anchor tags ? If so, is there a way to eliminate this problem? Is there anyone we can get in touch with to talk about this issue?

Comments

Mike Kutz
Answer

Oracle Multimedia ORDImage Object Type

This won't work in XE.

Otherwise, you'll need to create your own Web Service that does this for you.  (or hunt one down)

MK

Marked as Answer by Reza.Gh. · Sep 27 2020
Reza.Gh.

Hi,

Ok, thanks.

1 - 2

Post Details

Added on Jan 14 2020
4 comments
818 views