Strange Resend request on jspx page
547041Apr 6 2009 — edited Apr 6 2009Had a page, which keeping sending a request to the page (tried different browser and weblogic server).
Then I start looking at the code and did see some few different between some others page.
So but just switching the position of 2 lines, the resending request stopped.
I'm kind of more confused now, do the position of the "xmlns" meaning something in the "jsp:root" tag, or should i justr assume that something else happen while I did this change.
DONT WORK
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=UTF-8"
pageEncoding="UTF-8"/>
....................rest of page
WORKS
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=UTF-8"
pageEncoding="UTF-8"/>
....................rest of page