RPC Message receiver does not populate arguments properly if one is absent
--------------------------------------------------------------------------
Key: AXIS2-4223
URL: https://issues.apache.org/jira/browse/AXIS2-4223
Project: Axis 2.0 (Axis2)
Issue Type: Bug
Reporter: Amila Chinthaka Suriarachchi
Attachments: adb.txt
deploy a POJO service which has a method like this.
public String echoString(String param1, String param2, String param3){
System.out.println("Param1 ==> " + param1);
System.out.println("Param2 ==> " + param2);
System.out.println("Param3 ==> " + param3);
return "OK";
}
Invoke the service using browser like this (or using an stub class without
giving one argument)
http://localhost:8080/axis2/services/POJOService/echoString?param1=test1¶m3=test3
this gives an output like this
Param1 ==> test1
Param2 ==> test3
Param3 ==> null
So RPCMessage receiver does not populate parameters properly
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.