<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged iis</title>
<link>https://overflow.efficy.io/?qa=tag/iis</link>
<description>Powered by Question2Answer</description>
<item>
<title>How to avoid extranet to use CRM rewriting</title>
<link>https://overflow.efficy.io/?qa=5408/how-to-avoid-extranet-to-use-crm-rewriting</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I recently received this question.&lt;br&gt;
How can we avoid &lt;a rel=&quot;nofollow&quot; href=&quot;https://extranet.domain.com/crm&quot;&gt;https://extranet.domain.com/crm&lt;/a&gt; to be accessible while having an Efficy installation on the same folder (Efficy is using &lt;a rel=&quot;nofollow&quot; href=&quot;https://efficy.domain.com/crm)&quot;&gt;https://efficy.domain.com/crm)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can simply add a blocking request rule&lt;br&gt;
&lt;em&gt;Requested url: &quot;matches the pattern&quot; &lt;br&gt;
Using: &quot;Exact Match&quot; &lt;br&gt;
Pattern: &quot;crm/&quot; or &quot;^crm&quot; if you prefer using regular expressions&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Warning, this rule will need to be above the regular crm rewriting rule&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You'll also need to add a condition &lt;br&gt;
input :{HTTP_HOST}&lt;br&gt;
&quot;Does not matches the pattern&quot;&lt;br&gt;
Pattern: extranet.domain.com&lt;/p&gt;

&lt;p&gt;If you want to allow it only for one website, use &quot;matches the pattern&quot; and your URL&lt;br&gt;
(in this example efficy.domain.com)&lt;/p&gt;

&lt;p&gt;Hope it can help some of you :-)&lt;/p&gt;

&lt;p&gt;Yannick&lt;/p&gt;
</description>
<category>IT</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5408/how-to-avoid-extranet-to-use-crm-rewriting</guid>
<pubDate>Fri, 24 Apr 2020 03:45:56 +0000</pubDate>
</item>
<item>
<title>How to have a customized numerical display on cloud</title>
<link>https://overflow.efficy.io/?qa=2955/how-to-have-a-customized-numerical-display-on-cloud</link>
<description>&lt;p&gt;If you cannot use the server settings for the numerical float formatting, you can overrule the standard formatting by using a customized server script. This simple code example shows you how to achieve it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;macros\MacroListCustom.txt&lt;/strong&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;ListScriptsCustom {[&amp;lt;%LoadScript(&quot;CommonLibrary&quot;)%&amp;gt;]}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;macros\GridColumnsCustom.txt&lt;/strong&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;td.NUMERIC {[&amp;lt;td class=&quot;text-end&quot;&amp;gt;&amp;lt;%RunScript(formatCurrency, value=&quot;&amp;lt;#F=$FIELD$&amp;gt;&quot;)%&amp;gt; €&amp;lt;/td&amp;gt;]}
sumfield.NUMERIC {[&amp;lt;td class=&quot;sumfield text-end&quot;&amp;gt;&amp;lt;b&amp;gt;&amp;lt;%RunScript(formatCurrency, value=&quot;&amp;lt;#F=$FIELD$&amp;gt;&quot;)%&amp;gt;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;]}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;serverscripts\CommonLibraryCustom.js&lt;/strong&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function formatCurrency() {
    var 
        f = StrToFloatDef(Arguments.Values(&quot;value&quot;), 0),
        thousandSeparator = &quot; &quot;,
        decimalSeparator = &quot;,&quot;;

    return f.toString().replace(/\B(?=(\d{3})+(?!\d))/g, thousandSeparator).replace(/\./g, decimalSeparator);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This will yield the following result&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=7254936764931658615&quot; alt=&quot;Numerical formatting&quot;&gt;&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=2955/how-to-have-a-customized-numerical-display-on-cloud</guid>
<pubDate>Mon, 19 Feb 2018 17:34:14 +0000</pubDate>
</item>
<item>
<title>Slowness when SSO is activated</title>
<link>https://overflow.efficy.io/?qa=1418/slowness-when-sso-is-activated</link>
<description>&lt;p&gt;Dear all,&lt;/p&gt;

&lt;p&gt;When you are experiencing issues concerning slowness when SSO is activated, you can check the following.&lt;/p&gt;

&lt;p&gt;We encountered the problem when using SOAP calls to Efficy with SSO activated.&lt;/p&gt;

&lt;p&gt;The difference between SSO and no-SSO is indeed in IIS, meaning there is an extra load of processing because of the authentication module, which involves network communications, resolving in adding extra http headers. These communication involve communication with the domain controller / active directory. &lt;/p&gt;

&lt;p&gt;You should first measure the impacts of windows authentication with IIS without Efficy and see if you then experience a slowness.&lt;br&gt;
If indeed you observe a slowness with authentication ON, then it is an infrastructure issue.&lt;/p&gt;

&lt;p&gt;How to test:&lt;br&gt;
&lt;strong&gt;On the web server :&lt;/strong&gt; &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Put the attached file “test.html” in a folder accessible in the website of their IIS (for example c:\inetpub\wwwroot, depending on their IIS configuration)&lt;/li&gt;
&lt;li&gt;Activate windows authentication in IIS, and disable anonymous authentication&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;- Go to IIS management&lt;br&gt;
 - Select the website corresponding to the folder in 1&lt;br&gt;
 - Go to “Authentication“ area&lt;br&gt;
 - Disable “Anonymous authentication”&lt;br&gt;
 - Enable “Windows authentication”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On the client&lt;/strong&gt;&lt;br&gt;
 3. Open a web browser&lt;br&gt;
 4. Visit the URL corresponding to the test.html in 1 (on server)&lt;br&gt;
 5. For more accurate measurements of speed, open Developper Tools (F12 in most browsers), go to network tab, and take measurement of the speed&lt;br&gt;
Example in Chrome : &lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=9789728203051437815&quot; alt=&quot;enter image description here&quot;&gt;&lt;br&gt;
 6. Repeat step 2, but inverse the authentication modes :&lt;br&gt;
-   Enable “Anonymous authentication”&lt;br&gt;
-   Disable “Windows authentication”&lt;br&gt;
 7. Repeat steps 3,4,5 and compare speed results with the previous ones.&lt;/p&gt;

&lt;p&gt;If the speed is dramatically slower (bigger time value) with windows authentication enabled only, then we know that efficy is not causing the speed issue in SSO.&lt;/p&gt;

&lt;p&gt;If they want to try running efficy without sso but with Windows Authentication:&lt;br&gt;
Disable the SSO in efficy with the registry key HKEY_LOCALMACHINE\SOFTWARE\DSoft\Efficy\Web\SsoMode&lt;br&gt;
Set the value to 0 and do a refresh settings.&lt;/p&gt;

&lt;p&gt;If you try to access to efficy with an url like this &lt;a rel=&quot;nofollow&quot; href=&quot;https://webserver/efficy.dll/home?page=logon.htm&amp;amp;filebase=efficy&amp;amp;database=dbName&quot;&gt;https://webserver/efficy.dll/home?page=logon.htm&amp;amp;filebase=efficy&amp;amp;database=dbName&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;With Sso, this url will lead you to the desktop of efficy. Without Sso, you will just arrive to the logon page and you will have to manually logon.&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1418/slowness-when-sso-is-activated</guid>
<pubDate>Wed, 16 Mar 2016 10:43:02 +0000</pubDate>
</item>
<item>
<title>How to restart COM+ and IIS</title>
<link>https://overflow.efficy.io/?qa=1132/how-to-restart-com-and-iis</link>
<description>&lt;p&gt;How to restart COM+ and IIS&lt;/p&gt;
</description>
<category>IT</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=1132/how-to-restart-com-and-iis</guid>
<pubDate>Thu, 07 Jan 2016 09:00:59 +0000</pubDate>
</item>
<item>
<title>503 Error when installing Efficy on a server where Exchange is installed.</title>
<link>https://overflow.efficy.io/?qa=906/error-when-installing-efficy-server-where-exchange-installed</link>
<description>&lt;p&gt;Hi there,&lt;/p&gt;

&lt;p&gt;I have some troubles to make run Efficy on a server were Exchange is Installed.&lt;/p&gt;

&lt;p&gt;I Follow the procedure from the documentation : &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.mosmar.com.au/chris-blog/2011/3/15/taking-care-of-bitness-or-how-to-run-a-32-bit-app-with-owa-2.html&quot;&gt;http://www.mosmar.com.au/chris-blog/2011/3/15/taking-care-of-bitness-or-how-to-run-a-32-bit-app-with-owa-2.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;BUt nothing to do. it's not working.&lt;/p&gt;

&lt;p&gt;I still get the error :&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;The Module DLL 'C:\Program Files\Microsoft\Exchange Server\V14\Bin\kerbauth.dll' 
could not be loaded due to a configuration problem. The current configuration only supports 
loading images built for a x86 processor architecture. The data field contains the error 
number. To learn more about this issue, including how to troubleshooting this kind of 
processor architecture mismatch error, see http://go.microsoft.com/fwlink/?LinkId=29349.
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Any ideas ?&lt;/p&gt;

&lt;p&gt;Alex.&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=906/error-when-installing-efficy-server-where-exchange-installed</guid>
<pubDate>Fri, 06 Nov 2015 14:04:40 +0000</pubDate>
</item>
<item>
<title>IIS: Is there a way to &quot;quick&quot; configure it for Efficy ?</title>
<link>https://overflow.efficy.io/?qa=868/iis-is-there-a-way-to-quick-configure-it-for-efficy</link>
<description>&lt;p&gt;Hi Guy's,&lt;/p&gt;

&lt;p&gt;Who dreamed about a one click IIS Configuration ?&lt;/p&gt;

&lt;p&gt;at least me and it almost Exist ! :-)&lt;/p&gt;

&lt;p&gt;Alex.&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=868/iis-is-there-a-way-to-quick-configure-it-for-efficy</guid>
<pubDate>Mon, 19 Oct 2015 08:58:29 +0000</pubDate>
</item>
<item>
<title>Efficy 2014 on Windows 20125R2: Default Pages redirection is not working argument replaced by $0</title>
<link>https://overflow.efficy.io/?qa=424/windows-20125r2-default-redirection-working-argument-replaced</link>
<description>&lt;p&gt;Dear,&lt;/p&gt;

&lt;p&gt;I have created a simple HTML Page in order to setup the redirection (default page) on Windows 2012 R2 IIS.&lt;/p&gt;

&lt;p&gt;Here is the HTML page content:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;META HTTP-EQUIV=&quot;refresh&quot; content=&quot;0;URL=http://CUSTOMERADDRESS/efficy.dll/home?page=logon.htm&amp;amp;filebase=efficy&amp;amp;custombase=default&amp;amp;database=CUSTOMERALIAS&quot;&amp;gt;

&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;a href=&quot;http://CUSTOMERADDRESS/efficy.dll/home?page=logon.htm&amp;amp;filebase=efficy&amp;amp;custombase=default&amp;amp;database=CUSTOMERALIAS&quot;&amp;gt;If you are not redirected, click here&amp;lt;/a&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But When I access the &lt;a rel=&quot;nofollow&quot; href=&quot;http://CUSTOMERADDRESS&quot;&gt;http://CUSTOMERADDRESS&lt;/a&gt; all the argument pass to URL are replace by $0, $1 ... $XX&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;http://CUSTOMERADDRESS /efficy.dll/home?PAGE=pages/logon.htm&amp;amp;filebase=efficy&amp;amp;custombase=default&amp;amp;database=$0&amp;amp;user=$1&amp;amp;password=&amp;amp;language=$2
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;How can I solve this issue?&lt;/p&gt;

&lt;p&gt;Best Regards,&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=424/windows-20125r2-default-redirection-working-argument-replaced</guid>
<pubDate>Tue, 02 Jun 2015 09:03:03 +0000</pubDate>
</item>
</channel>
</rss>