Updated wizard template ecf to take into account current limitation, or known issue related to libcurl and ssl.

This commit is contained in:
2015-06-12 12:00:54 +02:00
parent 7d089a88c2
commit 0160ce05dd

View File

@@ -27,6 +27,8 @@
{if condition="$WIZ.connectors.use_standalone ~ $WIZ_YES"} {if condition="$WIZ.connectors.use_standalone ~ $WIZ_YES"}
<target name="{$WIZ.project.name/}_standalone" extends="common"> <target name="{$WIZ.project.name/}_standalone" extends="common">
<root class="{$APP_ROOT/}" feature="make_and_launch"/> <root class="{$APP_ROOT/}" feature="make_and_launch"/>
<variable name="httpd_ssl_disabled" value="true"/><!-- for now ... due to issue with libcurl+eiffelnet ssl -->
<setting name="concurrency" value="thread"/><!-- for now, due to temp issue with generating_type and scoop -->
<library name="default_standalone" location="$ISE_LIBRARY\contrib\library\web\framework\ewf\wsf\default\standalone-safe.ecf"/> <library name="default_standalone" location="$ISE_LIBRARY\contrib\library\web\framework\ewf\wsf\default\standalone-safe.ecf"/>
<cluster name="launcher" location=".\launcher\"> <cluster name="launcher" location=".\launcher\">
<cluster name="default_launcher" location="$|default"/> <cluster name="default_launcher" location="$|default"/>
@@ -36,6 +38,7 @@
{if condition="$WIZ.connectors.use_nino ~ $WIZ_YES"} {if condition="$WIZ.connectors.use_nino ~ $WIZ_YES"}
<target name="{$WIZ.project.name/}_nino" extends="common"> <target name="{$WIZ.project.name/}_nino" extends="common">
<root class="{$APP_ROOT/}" feature="make_and_launch"/> <root class="{$APP_ROOT/}" feature="make_and_launch"/>
<setting name="concurrency" value="none"/>
<library name="default_nino" location="$ISE_LIBRARY\contrib\library\web\framework\ewf\wsf\default\nino-safe.ecf"/> <library name="default_nino" location="$ISE_LIBRARY\contrib\library\web\framework\ewf\wsf\default\nino-safe.ecf"/>
<cluster name="launcher" location=".\launcher\"> <cluster name="launcher" location=".\launcher\">
<cluster name="default_launcher" location="$|default"/> <cluster name="default_launcher" location="$|default"/>
@@ -45,6 +48,7 @@
{if condition="$WIZ.connectors.use_cgi ~ $WIZ_YES"} {if condition="$WIZ.connectors.use_cgi ~ $WIZ_YES"}
<target name="{$WIZ.project.name/}_cgi" extends="common"> <target name="{$WIZ.project.name/}_cgi" extends="common">
<root class="{$APP_ROOT/}" feature="make_and_launch"/> <root class="{$APP_ROOT/}" feature="make_and_launch"/>
<setting name="concurrency" value="none"/>
<library name="default_cgi" location="$ISE_LIBRARY\contrib\library\web\framework\ewf\wsf\default\cgi-safe.ecf"/> <library name="default_cgi" location="$ISE_LIBRARY\contrib\library\web\framework\ewf\wsf\default\cgi-safe.ecf"/>
<cluster name="launcher" location=".\launcher\"> <cluster name="launcher" location=".\launcher\">
<cluster name="default_launcher" location="$|default"/> <cluster name="default_launcher" location="$|default"/>
@@ -54,6 +58,7 @@
{if condition="$WIZ.connectors.use_libfcgi ~ $WIZ_YES"} {if condition="$WIZ.connectors.use_libfcgi ~ $WIZ_YES"}
<target name="{$WIZ.project.name/}_libfcgi" extends="common"> <target name="{$WIZ.project.name/}_libfcgi" extends="common">
<root class="{$APP_ROOT/}" feature="make_and_launch"/> <root class="{$APP_ROOT/}" feature="make_and_launch"/>
<setting name="concurrency" value="none"/>
<library name="default_libfcgi" location="$ISE_LIBRARY\contrib\library\web\framework\ewf\wsf\default\libfcgi-safe.ecf"/> <library name="default_libfcgi" location="$ISE_LIBRARY\contrib\library\web\framework\ewf\wsf\default\libfcgi-safe.ecf"/>
<cluster name="launcher" location=".\launcher\"> <cluster name="launcher" location=".\launcher\">
<cluster name="default_launcher" location="$|default"/> <cluster name="default_launcher" location="$|default"/>