Hi,
I'm upgrading my Axis2 1.1.1 based service to 1.4.1. REST behavior
seems to have changed in 1.4.1. When I made a GET request to my
service under 1.1.1 Axis would pass a simple XML OMElement to my
service method that looked something like this:

<certifyContact><licenseID>blahblahblah</licenseID><clientUserID>blah</clientUserID><phoneNumbers>9999999999</phoneNumbers></certifyContact>

where licenseID, clientUserID, etc. were parameters in the query
string of my request. Under 1.4.1, Axis seems to pass a valid SOAP
request as an OMElement to my service method, but it's an empty one
and looks like this:

<axis2ns1:certifyContact xmlns:axis2ns1="http://myhost.com/rest/certify"; />

So the question is, what happened to my request parameters? Do I have
to do something special to get 1.4.1 to include the query parameters
in the OMElement that it constructs?

Thanks,
-Ben

Reply via email to