Examples of RexXMLAPort


Examples of rex.xmla.RexXMLAPort

  // After that, adding it in the vector for the future usage.
  private void doDiscover()
  {
    try
    {
      port=new RexXMLAPort(new URL(txtURL.getText().trim()));
      final String [] dsn=port.discoverDataSourcesAsString(restriction,dProperties);
      cmbDataSource.removeAllItems();
      for(int j=0;j<dsn.length;j++)
      {
        cmbDataSource.addItem(dsn[j]);
View Full Code Here

Examples of rex.xmla.RexXMLAPort

        }
        if(iFlagEditor==1)
        {
          execProperties.setDataSourceInfo(strDataSourcename);
          execProperties.setCatalog(strCatalog);
          port=new RexXMLAPort(new URL(strOLAPURL));
        }
        // Executing Query to check the authencity.
        // execute method throws RexXMLAException if query is not valid.
        port.execute(mdxStr,execProperties);
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.