Thanks for getting back to me Anne. According to the spec:
http://www.w3.org/TR/html4/interact/forms.html#form-content-type the body of a POST request with the"application/x-www-form-urlencoded" content type also URL encoded. So why is the body not decoded by Axis' XFormURLEncodedBuilder.java at the server side? On 17/02/2008, Anne Thomas Manes <[EMAIL PROTECTED]> wrote: > > You should only use urlencoded with GET. > For POST, you send the input message in the HTTP message body, not in the > URL. > > See http://ws.apache.org/axis2/1_3/rest-ws.html > > Anne > > On Feb 13, 2008 4:31 AM, Steve <[EMAIL PROTECTED]> wrote: > > Hello, > > > > My web service client is sending application/x-www-form-urlencoded POST > > requests to the web service. The problem is that Axis2 is not decoding > the > > POST body name/value pairs. I've tracked this down to > > XFormURLEncodedBuilder.java, which is decoding the URL but not the body. > I > > could use GET requests but this is not ideal. > > > > Is this the way it's supposed to work or is it a bug? > > > > Thanks, > > > > Steve > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
