I also found another solution without modification of "request-params" word.
We can get values of request query, as assoc, just from current "request" variable:
"request get url>> query>>"

And I was wrong about PHP -- it places post data into the $_POST array, and params from request url query part into the $_GET array, when there is POST-request, not in the $_POST.
But in factor we have only one array for POST and for GET data.

31.01.2013 8:05, ??????? ???????? ?????:
Hi!
Does anybody knows, why when processing request parameters in http.server in 
the word request-params silently ignored parameters given as part of url when 
it's POST request and processed only post-data.
I think this line should look like this: { "POST" [ dup post-data>> params>> >alist [ 
url>> query>> >alist ] dip append ] }
It's not prohibited as far as I know to supply parameters in url (as in GET 
request) when doing POST request. Or I'm wrong?
For example jTable (http://www.jtable.org) is mixing post request with 
parameters in url. And PHP for example stack this parameters from url into 
$_POST array too.



------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan


_______________________________________________
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
_______________________________________________
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk

Reply via email to