开发者

How to recivie the parameter passes from JSP inside the Skelton class of ApacheAxis2

开发者 https://www.devze.com 2023-04-05 22:25 出处:网络
I want to recive the Parameter from the JSP to the Skelton class of ApacheAxis2. Please s开发者_StackOverflow中文版ee my program below :

I want to recive the Parameter from the JSP to the Skelton class of ApacheAxis2 .

Please s开发者_StackOverflow中文版ee my program below :

package samples.quickstart;

public class StockQuoteServiceSkeleton implements
        StockQuoteServiceSkeletonInterface {

    public samples.quickstart.xsd.GetPriceResponse getPrice(
            samples.quickstart.xsd.GetPrice getPrice0) {

        System.out.println(getPrice0.toString());

        samples.quickstart.xsd.GetPriceResponse response = new samples.quickstart.xsd.GetPriceResponse();

        HashMap map = new HashMap();

        map.put("Kiran", "122");
        map.put("Kiran", "122");
        map.put("Kiran", "122");
        map.put("Kiran", "122");
        map.put("Kiran", "122");

        response.set_return("Kiran");

        return response;

    }

}

Please help me , thank you .


I found out the answer , may be useful to somebody .

public samples.quickstart.xsd.GetPriceResponse getPrice(
            samples.quickstart.xsd.GetPrice getPrice0) {
getPrice0.getSymbol()) + "")
}
0

精彩评论

暂无评论...
验证码 换一张
取 消