如何在 ApacheAxis2 的 Skelton 类中接收来自 JSP 的参数传递

发布于 2024-12-05 15:10:43 字数 786 浏览 0 评论 0原文

我想从 JSP 接收参数到 ApacheAxis2 的 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;

    }

}

请帮助我,谢谢。

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

Please see 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 .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日暮斜阳 2024-12-12 15:10:44

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

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

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

public samples.quickstart.xsd.GetPriceResponse getPrice(
            samples.quickstart.xsd.GetPrice getPrice0) {
getPrice0.getSymbol()) + "")
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文