> 1. Am I wrong in my assumption that the URI should not have 
> parameters on it if it is a POST request and not a GET request?

No, not wrong. There is a bug report about it at 
http://bugzilla.qooxdoo.org/show_bug.cgi?id=17

> 2. How can I solve the problem either way?

Sometime back I posted this:

The problem comes if you add parameters to the request via addParameter. These 
are always encoded and added to the URL in the post, rather than being put in 
as data. The data is added separately.

I've worked round it for the moment by explicitly calculating the POST data, 
then calling setData(sData). Also have to call setRequestHeader("content-type", 
"application/x-www-form-urlencoded"). Having to set up the data manually is a 
bit of a pain, especially with a lot of parameters.

Hugh

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to