source: uKadecot/trunk/tools/EcnlControllerUI/EcnlCtrlUI/Web.config@ 125

Last change on this file since 125 was 125, checked in by coas-nagasima, 9 years ago

ECHONET Lite規格に準拠していない動作を修正。
WebSocketの接続先URLを/webapi.ashxから/webapiに変更。
DHCPのリトライ処理が行われていなかったのを修正。
DHCPの有効/無効設定を追加し、固定IPアドレスを設定できるよう変更。

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain
File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ASP.NET アプリケーションの構成方法の詳細については、
4 http://go.microsoft.com/fwlink/?LinkId=169433 を参照してください
5 -->
6<configuration>
7 <configSections>
8 <section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />
9 </configSections>
10 <system.web>
11 <compilation debug="true" targetFramework="4.5" />
12 <httpRuntime targetFramework="4.5" />
13 <httpModules>
14 <add type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" name="UrlRewriter" />
15 </httpModules>
16 </system.web>
17 <system.webServer>
18 <defaultDocument enabled="true">
19 <files>
20 <clear />
21 <add value="index.html" />
22 </files>
23 </defaultDocument>
24 <staticContent>
25 <mimeMap fileExtension=".json" mimeType="application/json" />
26 <mimeMap fileExtension=".cfg" mimeType="text/plain" />
27 </staticContent>
28 <modules runAllManagedModulesForAllRequests="true">
29 <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" />
30 </modules>
31 <validation validateIntegratedModeConfiguration="false" />
32 </system.webServer>
33 <rewriter>
34 <rewrite url="~/webapi$" to="~/webapi.ashx" />
35 </rewriter>
36</configuration>
Note: See TracBrowser for help on using the repository browser.