XLCubed is now FluenceXL. The new wiki can be found here: https://help.fluencexl.com/

Difference between revisions of "XLCubed Web Proxy"

(Created page with "XLCubed Excel and Web editions can connect to the XLCubed Web Proxy (Enterprise Plus customers only). This allows a set of cube and relational connections to be published to X...")
 
Line 52: Line 52:
  
 
|}
 
|}
 +
 +
==Proxy Configuration==
 +
In the {{Code|bin}} folder in the installation directory (usually at {{Code|C:\inetpub\wwwroot\XLCubedWebProxy\bin}} will be the proxy configuration file, {{Code|XLCubed.Data.Proxy.xml}}.
 +
 +
This will contain a {{Code|<config>}} XML element, containing one {{Code|multidimensionalserver}} or {{Code|relationalserver}} for each connection that should be made available through the proxy. Examples are given below.
 +
 +
===Multi-dimensional connections===
 +
  <multidimensionalserver>
 +
    <databases>
 +
      <database name="proxy database">
 +
        <cubes>
 +
          <cube name="my cube">
 +
            <connection id="1" name="">
 +
              <type>AnalysisServices</type>
 +
              <variable type="String" name="server">
 +
                <value>realServerName</value>
 +
              </variable>
 +
              <variable type="String" name="database">
 +
                <value>realDatabaseName</value>
 +
              </variable>
 +
              <variable type="String" name="cube">
 +
                <value>realCubeName</value>
 +
              </variable>
 +
              <writebacktype>AnalysisServices</writebacktype>
 +
              <writebacksetting />
 +
              <nodummyrelationalwriteback>0</nodummyrelationalwriteback>
 +
              <variable type="Boolean" name="requirespassword">
 +
                <value>0</value>
 +
              </variable>
 +
              <lastconnected>0001-01-01T00:00:00</lastconnected>
 +
              <savepassword>False</savepassword>
 +
              <props>
 +
                <prop name="MDXMissingMemberMode" value="Error" />
 +
              </props>
 +
            </connection>
 +
          </cube>
 +
        </cubes>
 +
      </database>
 +
    </databases>
 +
  </multidimensionalserver>
 +
 +
===Relational connections===
 +
  <relationalserver>
 +
    <databases>
 +
      <database name="proxy database">
 +
        <sqlconnection id="1" connectiontype="0">
 +
          <lastconnected>2016-11-16T14:53:24</lastconnected>
 +
          <promptcredentials>False</promptcredentials>
 +
          <variable type="String" name="connectionstring">
 +
            <value>Provider=SQLOLEDB;Data Source=myRealServer;Initial Catalog=myRealDatabase;User Id=connectionUser;Password=SecurePassword</value>
 +
          </variable>
 +
          <authtype>0</authtype>
 +
          <resolvertype>0</resolvertype>
 +
        </sqlconnection>
 +
      </database>
 +
    </databases>
 +
  </relationalserver>

Revision as of 15:39, 2 August 2019

XLCubed Excel and Web editions can connect to the XLCubed Web Proxy (Enterprise Plus customers only). This allows a set of cube and relational connections to be published to XLCubed clients.

Setup

  • Run the setup program while logged onto the server with administrator permissions.
  • This will create a new web application in IIS (XLCubedWebProxy, by default).
  • You will need to install the prerequisites as for XLCubed Web Edition.

Security Configuration

Select the XLCubedWebProxy directory and open the "Authentication" section.

XLCubedWebConfigIIS6Authentication.png

Enable the desired authentication options, and ensure that the others are disabled.

XLCubedWebConfigIIS6AuthenticationWindows.png

If you do not have these options you must add them from Control Panel -> Programs -> Turn Windows features on or off

Web.config

Windows Authentication

Authentication Using HTTPS web.config: on all bindings
Windows Yes <security mode="Transport"> <transport clientCredentialType="Windows"/> </security>
Windows No <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows"/> </security>

Basic Authentication

Authentication Using HTTPS? web.config – on all bindings
Basic Yes <security mode="Transport"> <transport clientCredentialType="Basic"/> </security>
Basic No <security mode="TransportCredentialOnly"> <transport clientCredentialType="Basic"/> </security>

Proxy Configuration

In the bin folder in the installation directory (usually at C:\inetpub\wwwroot\XLCubedWebProxy\bin will be the proxy configuration file, XLCubed.Data.Proxy.xml.

This will contain a <config> XML element, containing one multidimensionalserver or relationalserver for each connection that should be made available through the proxy. Examples are given below.

Multi-dimensional connections

 <multidimensionalserver>
   <databases>
     <database name="proxy database">
       <cubes>
         <cube name="my cube">
           <connection id="1" name="">
             <type>AnalysisServices</type>
             <variable type="String" name="server">
               <value>realServerName</value>
             </variable>
             <variable type="String" name="database">
               <value>realDatabaseName</value>
             </variable>
             <variable type="String" name="cube">
               <value>realCubeName</value>
             </variable>
             <writebacktype>AnalysisServices</writebacktype>
             <writebacksetting />
             <nodummyrelationalwriteback>0</nodummyrelationalwriteback>
             <variable type="Boolean" name="requirespassword">
               <value>0</value>
             </variable>
             <lastconnected>0001-01-01T00:00:00</lastconnected>
             <savepassword>False</savepassword>
             <props>
               <prop name="MDXMissingMemberMode" value="Error" />
             </props>
           </connection>
         </cube>
       </cubes>
     </database>
   </databases>
 </multidimensionalserver>

Relational connections

 <relationalserver>
   <databases>
     <database name="proxy database">
       <sqlconnection id="1" connectiontype="0">
         <lastconnected>2016-11-16T14:53:24</lastconnected>
         <promptcredentials>False</promptcredentials>
         <variable type="String" name="connectionstring">
           <value>Provider=SQLOLEDB;Data Source=myRealServer;Initial Catalog=myRealDatabase;User Id=connectionUser;Password=SecurePassword</value>
         </variable>
         <authtype>0</authtype>
         <resolvertype>0</resolvertype>
       </sqlconnection>
     </database>
   </databases>
 </relationalserver>