Package it.eng.spagobi.tools.dataset.common.dataproxy

Examples of it.eng.spagobi.tools.dataset.common.dataproxy.WebServiceDataProxy


  /**
   * Instantiates a new wS data set.
   */
  public WebServiceDataSet() {
    super();
    setDataProxy( new WebServiceDataProxy());
    setDataReader( new XmlDataReader() );
    //addBehaviour( new QuerableBehaviour(this) );
  }
View Full Code Here


  }
 
  public WebServiceDataSet(SpagoBiDataSet dataSetConfig) {
    super(dataSetConfig);
   
    setDataProxynew WebServiceDataProxy() );
    setDataReader( new XmlDataReader() );
   
    setAddress( dataSetConfig.getAdress() );
    setOperation( dataSetConfig.getOperation() );
    //setParamsMap(dataSetConfig.getP)
View Full Code Here

    IDataProxy dataProxy;
   
    dataProxy = super.getDataProxy();
   
    if(dataProxy == null) {
      setDataProxy( new WebServiceDataProxy() );
      dataProxy = getDataProxy();
    }
   
    if(!(dataProxy instanceof  WebServiceDataProxy)) throw new RuntimeException("DataProxy cannot be of type [" +
        dataProxy.getClass().getName() + "] in WebServiceDataProxy");
View Full Code Here

TOP

Related Classes of it.eng.spagobi.tools.dataset.common.dataproxy.WebServiceDataProxy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.