2 Replies Latest reply on May 5, 2009 7:06 PM by joeloveland

    Using "? (double quote question mark) prepends query string data?

    joeloveland
      Hello,

      In our seam application, it appears that if we ever have any content containing "? or '?, during rendering some sort of query string data will be appended at the point of the question mark.  (For search engine purposes, I'll use text to explain that I'm referring to a double quote or single quote followed by a question mark.)

      For example, if the .xhtml file contains:
      <td>A"?B</td>

      it will be rendered as:
      <td>A"?key=ZJPxHNQozaqVlTW42chVysI.....
      (I'm omitting a bunch of characters here...that key value is quite long).  And the ending </td> will be "consumed" by this...it seems to replace quite a bit of following markup, actually.

      Does anyone know why this is happening?  I've tried wrapping the contents inside f:verbatim and h:outputText (to hopefully escape the characters), but with no success.