浏览代码

HPCC-10175 Remove Roxie test page option from HPCC Platform

Signed-off-by: Rodrigo Pastrana <Rodrigo.Pastrana@lexisnexis.com>
Rodrigo Pastrana 11 年之前
父节点
当前提交
c34b753788
共有 2 个文件被更改,包括 0 次插入3 次删除
  1. 0 2
      esp/bindings/http/platform/httpbinding.cpp
  2. 0 1
      esp/bindings/http/platform/httpbinding.hpp

+ 0 - 2
esp/bindings/http/platform/httpbinding.cpp

@@ -101,7 +101,6 @@ EspHttpBinding::EspHttpBinding(IPropertyTree* tree, const char *bindname, const
     Owned<IPropertyTree> proc_cfg = getProcessConfig(tree, procname);
     m_viewConfig = proc_cfg ? proc_cfg->getPropBool("@httpConfigAccess") : false;   
     m_formOptions = proc_cfg ? proc_cfg->getPropBool("@formOptionsAccess") : false;
-    m_roxieOption = proc_cfg ? proc_cfg->getPropBool("@roxieTestAccess") : false;
     m_includeSoapTest = true;
     m_configFile.set(tree ? tree->queryProp("@config") : "esp.xml");
     Owned<IPropertyTree> bnd_cfg = getBindingConfig(tree, bindname, procname);
@@ -1892,7 +1891,6 @@ int EspHttpBinding::onGetXForm(IEspContext &context, CHttpRequest* request, CHtt
 
         xform->setParameter("formOptionsAccess", m_formOptions?"1":"0");
         xform->setParameter("includeSoapTest", m_includeSoapTest?"1":"0");
-        xform->setParameter("includeRoxieTest", m_roxieOption?"1":"0");
 
         // set the prop noDefaultValue param
         IProperties* props = context.queryRequestParameters();

+ 0 - 1
esp/bindings/http/platform/httpbinding.hpp

@@ -148,7 +148,6 @@ protected:
     bool                    m_includeSoapTest;
     StringBuffer            m_challenge_realm;
     StringAttr              m_defaultSvcVersion;
-    bool                    m_roxieOption;
 
 public:
     EspHttpBinding(IPropertyTree* cfg, const char *bindname=NULL, const char *procname=NULL);