如何在 ApacheAxis2 的 Skelton 类中接收来自 JSP 的参数传递
我想从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案,可能对某人有用。
I found out the answer , may be useful to somebody .