You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Boopathy Madhavan (JIRA)" <ji...@apache.org> on 2008/01/28 14:55:34 UTC

[jira] Created: (AXIS2-3480) Parameter are not mapped properly. While calling webservice using URL

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: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org