我希望从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;
}
}
请帮帮我,谢谢。
答案 0 :(得分:1)
我找到答案,可能对某人有用。
public samples.quickstart.xsd.GetPriceResponse getPrice(
samples.quickstart.xsd.GetPrice getPrice0) {
getPrice0.getSymbol()) + "")
}