XPODA SERVİCE WEB CONFİG SETTINGS
Default Xpoda Service Web Config settings are as follows.
Note: Areas colored red should not be changed.
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
<add key="DatabaseName" value="XPODA" />
<add key="UseRelaying" value="0" />
<add key="StartJob" value="1" />
<add key="ClientHost" value="https://yourdomainaddress/" />
<add key="ClientHostExt" value="https://yourdomainaddress//" />
<add key="ClientPath" value="C:\inetpub\wwwroot\Xpoda Client" />
<add key="ServicePath" value="C:\inetpub\wwwroot\Xpoda Service" />
<add key="ManagerService" value="servicelive.xpodacloud.com" />
<add key="ManagerClient" value="0" />
<add key="ReportBuilderName" value="SQLUSER" />
<add key="ReportBuilderPsw" value="SQLPASSWORD" />
<add key="UseDbMenus" value="0" />
<add key="LDAPUrl" value="" />
<add key="DbClient" value="MsSqlClient" />
<add key="connection" value="data source=SQLSERVERNAME;database=XPODA;uid=SQLUSER;password=SQLPASSWORD;Connect Timeout=100000;pooling=false" />
<add key="connectionSSAS" value="provider=olap;datasource=SQLSERVERNAME;Catalog=SSASDBNAME" />
<add key="DbBackupPath" value="" />
</appSettings>
DatabaseName: Integration database name. If the integrated database is not used, it should be saved as "XPODA".
StartJob: This is the parameter used to activate the Xpoda assistant service. (0 passive – 1 active)
ClientHost: Your Xpoda Client URL is written.
ClientHostExt: Your Xpoda Client URL is written.
ClientPath: It is the file path of the Xpoda Client folder.
ServicePath: It is the file path of the Xpoda Service folder.
ReportBuilderName: It is the information with which user in SQL the queries used in the Xpoda Studio ReportBuilder screen will be run.
ReportBuilderPsw: This is the user password used in the Xpoda Studio ReportBuilder screen.
UseDbMenus: Its value must be 1 in order for user menus to be read from the table.
DbClient: Database type. By default MsSqlClient is used. Other examples of database types that can be used are; PostgreSqlClient, IBMDb2Client, OracleClient.
Connection: Xpoda database access information. SQL Server name is written in the Datasource field. The username we created in SQL is written in the uid field, and the password is written in the password field.
XPODA CLIENT WEB CONFİG SETTINGS
Default Xpoda Client Web Config settings are as follows.
Note: Areas colored red should not be changed.
<appSettings>
<add key="vs:EnableBrowserLink" value="false" />
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="ManagerClient" value="0" />
<add key="ManagerService" value="localhost:SERVICEPORT" />
<add key="ClientPath" value="C:\inetpub\wwwroot\Xpoda Client" />
<add key="ServicePath" value="C:\inetpub\wwwroot\Xpoda Service" />
<add key="RequireSsl" value="0" />
<add key="CaptchaAll" value="0" />
<add key="ChatActive" value="1" />
<add key="FileUploadMimeCheck" value="1" />
<add key="WebappLogoUrl" value="/Theme/assets/images/Xpoda-logo.png" />
<add key="WebappMiniLogoUrl" value="/Theme/assets/images/Xpoda-Mini-Logo.svg" />
<add key="WebappTitle" value="Xpoda No Code Platform" />
<add key="WebappCompany" value="Xpoda Incorporation" />
<add key="DefaultCulture" value="en-US"/> <!-- en-US tr-TR -->
</appSettings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.5.2" />
</system.Web>
-->
<system.web>
<httpCookies requireSSL="true" sameSite="None" />
<customErrors mode="Off" defaultRedirect="~/Home/ErrorPage">
<error redirect="~/Home/ErrorPage/401" statusCode="401" />
<error redirect="~/Home/ErrorPage/403" statusCode="403" />
<error redirect="~/Home/ErrorPage/404" statusCode="404" />
<error redirect="~/Home/ErrorPage/408" statusCode="408" />
<error redirect="~/Home/ErrorPage/411" statusCode="411" />
<error redirect="~/Home/ErrorPage/500" statusCode="500" />
</customErrors>
<sessionState timeout="60" cookieSameSite="None" />
ManagerService: Xpoda web service url.
ClientPath: It is the file path of the Xpoda Client folder.
ServicePath: It is the file path of the Xpoda Service folder.
RequireSsl: The value is set to 1 if Ssl for Xpoda client is installed on the IIS server.
CaptchaAll: When the value is set to 1, it allows logging in with Captcha in every login process on the Xpoda Client screen.
ChatActive: If the value is given as 1, the chat screen becomes active on the client screen.
FileUploadMimeCheck: If the value is set to 1, it allows filtering during file upload.
WebappLogoUrl: It is the logo file path in the upper left of the client login screen.
WebappMiniLogoUrl: It is the logo file path in the upper left of the Client screen in the mobile application.
WebappTitle: The title written in the browser tab.
WebappCompany: Information at the bottom of the client login screen.
DefaultCulture: It is the default language option during client login.
CustomErros mode: You can show the error screens that may be received in the Client application in detail. Or you can turn it off as desired. ( On - Off - RemoteOnly )
SessionState timeout: Client user timeout period. It can be changed upon request.