Parameter are not mapped properly. While calling webservice using URL
---------------------------------------------------------------------

                 Key: AXIS2-3480
                 URL: https://issues.apache.org/jira/browse/AXIS2-3480
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
    Affects Versions: 1.2
         Environment: XP
            Reporter: Boopathy Madhavan


While calling Web Method using URL with multiple parameters the parameter are 
not assigned properly to the calling web method i.e mapped improperly 

e.g
@WebService(serviceName = "AuthRulesConfigWebService")
public class AuthRulesConfigWebService {

public AuthRulesConfigWebService() {
        }

@WebMethod
        public void getRuleTestTransTypeMap_Asp
(@WebParam(name="getRuleTestTransType")  String reqcode,String testUid,String 
name)
        {
        System.out.println("testUid="+testUid+": reqcode ="+reqcode+" 
name="+name);
        }

}

if I call the web Method using url
http://localhost:8080/Auth_Rules_Config/services/AuthRulesConfigWebService?method=getRuleTestTransTypeMap_Asp&testUid=0&reqcode=


the o/p
testUid=0: reqcode = name=null


url
http://localhost:8080/Auth_Rules_Config/services/AuthRulesConfigWebService?method=getRuleTestTransTypeMap_Asp&testUid=0&reqcode=&name=test

O/P
testUid=: reqcode =test name=0


URL
http://localhost:8080/Auth_Rules_Config/services/AuthRulesConfigWebService?method=getRuleTestTransTypeMap_Asp&reqcode=&name=test&testUid=0

o/p
testUid=: reqcode =test name=0






-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to