Example Flex code using HTTPService:
var params:Object = {};
params["principal.username"] = this.idUsername.text;
params["password"] = this.idPassword.text;
svcRequest.url = this.idUrl.text + "/services/v1/rest/Auth/login";
svcRequest.send(params);
The above produces this HTTP request on the wire:
GET /services/v1/rest/Auth/login?principal%2Eusername=dude&password=1234
HTTP/1.1
The CXF server side expecting principal.username fails to undecode and as a
result principal
object is not initialized.
Any ideas?
Thanks,
-Vitaly
--
View this message in context:
http://old.nabble.com/Adobe-Flex-HTTPService-escapes-dot-with--2e-breaking-CXF-logic-on-the-server-tp26719627p26719627.html
Sent from the cxf-user mailing list archive at Nabble.com.