把你要解析的soap消息贴出来看看。

解决方案 »

  1.   

    下面是要调用的服务package webservice;/**
     * <p>Title: </p>
     * <p>Description: </p>
     * <p>Copyright: Copyright (c) 2002</p>
     * <p>Company: </p>
     * @author unascribed
     * @version 1.0
     */public class Exchange implements IExchange
     {
     public float getRate( String country1, String country2 )
     {
     System.out.println( "getRate( " + country1 + ", " + country2 + " )" );
     return 144.52F; // always return the same value for now
     }
     }