如何从Apache Axis2的Skeletal类中的JSP接收参数传递

时间:2011-09-20 10:56:02

标签: web-services axis2

我希望从JSP接收参数到Apache Axis2的Skelton类。

请参阅下面的我的计划:

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;

    }

}

请帮帮我,谢谢。

1 个答案:

答案 0 :(得分:1)

我找到答案,可能对某人有用。

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