作成日: 2014/09/26 最終更新日: 2016/05/10
文書種別
技術情報
詳細
コントロールの配置時や右クリックにより、web.configにHttpHandlerが自動で追加されますが、これはIIS5/IIS6用の内容である為、IIS7以降ではグラフが正常に表示されません。
IIS7以降の場合は、web.configに、手動で下記の内容を追記する必要がございます。
【C1.Web.C1WebChart.2/C1.Web.C1WebChart3D.2を参照している場合】
【C1.Web.C1WebChart.4/C1.Web.C1WebChart3D.4を参照している場合】
※VS2008の場合、validateIntegratedModeConfiguration属性はデフォルトで記載済みです。
IIS7以降の場合は、web.configに、手動で下記の内容を追記する必要がございます。
【C1.Web.C1WebChart.2/C1.Web.C1WebChart3D.2を参照している場合】
<system.webServer>
<handlers>
<add name="xxxx(任意の名前1)"
path="c1chartimage.aspx"
verb="*"
type="C1.Web.C1WebChart.ImageHttpHandler,C1.Web.C1WebChart.2"
resourceType="Unspecified" />
<add name="xxxx(任意の名前2)"
path="c1chart3dimage.aspx"
verb="*"
type="C1.Web.C1WebChart3D.ImageHttpHandler,C1.Web.C1WebChart3D.2"
resourceType="Unspecified" />
</handlers>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
<handlers>
<add name="xxxx(任意の名前1)"
path="c1chartimage.aspx"
verb="*"
type="C1.Web.C1WebChart.ImageHttpHandler,C1.Web.C1WebChart.2"
resourceType="Unspecified" />
<add name="xxxx(任意の名前2)"
path="c1chart3dimage.aspx"
verb="*"
type="C1.Web.C1WebChart3D.ImageHttpHandler,C1.Web.C1WebChart3D.2"
resourceType="Unspecified" />
</handlers>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
【C1.Web.C1WebChart.4/C1.Web.C1WebChart3D.4を参照している場合】
<system.webServer>
<handlers>
<add name="xxxx(任意の名前1)"
path="c1chartimage.aspx"
verb="*"
type="C1.Web.C1WebChart.ImageHttpHandler,C1.Web.C1WebChart.4"
resourceType="Unspecified" />
<add name="xxxx(任意の名前2)"
path="c1chart3dimage.aspx"
verb="*"
type="C1.Web.C1WebChart3D.ImageHttpHandler,C1.Web.C1WebChart3D.4"
resourceType="Unspecified" />
</handlers>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
<handlers>
<add name="xxxx(任意の名前1)"
path="c1chartimage.aspx"
verb="*"
type="C1.Web.C1WebChart.ImageHttpHandler,C1.Web.C1WebChart.4"
resourceType="Unspecified" />
<add name="xxxx(任意の名前2)"
path="c1chart3dimage.aspx"
verb="*"
type="C1.Web.C1WebChart3D.ImageHttpHandler,C1.Web.C1WebChart3D.4"
resourceType="Unspecified" />
</handlers>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
※VS2008の場合、validateIntegratedModeConfiguration属性はデフォルトで記載済みです。
旧文書番号
69805