error:
org.apache.cxf.interceptor.Fault: Found element productInfoView but could not find matching RPC/Literal part
remote 接口文件:
@WebService
@SOAPBinding(style = Style.RPC)
public interface IProductInfoRemote {
public String findProductInfoList(@WebParam(name = "productInfoView")String pro);
}
原因:
ibatis 在remote接口文件里面param (name=?)参数名要和
HashMap<String, String> map=new HashMap<String, String>(); ----传入参数
map.put("productInfoView", strProductView);
map里面设置的key值相同,