Am 24.03.2011 01:25 schrieb Oliver Bock:
> I have had a few requests where the values in request.fields() do not
> agree with what is in QUERY_STRING. Below, see that the referrer,
> QUERY_STRING and REQUEST_URI all show _id=BK0000000579561338, and yet in
> fields we see _id=BK0000000579558176! How can this be?

Looks strange, but this can actually happen when the POSTed fields (sent 
with the request body) are different from those in the URI.

Like if you do this:

<form action="myaction?_id=BK0000000579561338" method="post">
<input type="hidden" name="_id" value="BK0000000579558176">
<input type="submit" value="OK">
</form>

The POSTed vars always override the query string in Webware.

Maybe some JavaScript is adding the _id param in the URI instead of 
changing it in the field element?

-- Christoph

------------------------------------------------------------------------------
Enable your software for Intel(R) Active Management Technology to meet the
growing manageability and security demands of your customers. Businesses
are taking advantage of Intel(R) vPro (TM) technology - will your software 
be a part of the solution? Download the Intel(R) Manageability Checker 
today! http://p.sf.net/sfu/intel-dev2devmar
_______________________________________________
Webware-discuss mailing list
Webware-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to