Configuring - Deployment Tab

From Visual WebGui Wiki

Jump to: navigation, search

Contents

Overview

This article is a part of articles on Configuring Visual WebGui application.

In this tab you specify if you will be deploying your application as a DHTML application, SilverLight application or both, as well as specifying the extensions used for each of the deployment options.

Settings

Deployment extensions

Default value web.config Description
DHTML
.wgx
<WebGui>
   <Extension Value=".wgx" />
</WebGui>
 
<httpHandlers>
   <add verb="*" 
        path="*.wgx" 
        type="Gizmox.WebGui.Server.Router, 
             Gizmox.WebGui.Server,
             Version=3.0.5701.0, 
             Culture=neutral, 
             PublicKeyToken=3de6eb684226c24d" />
</httpHandlers>

The extension that will be used for DHTML deployment
SilverLight .swgx
<WebGui>
   <SilverlightExtension Value=".swgx" />
</WebGui>
 
<httpHandlers>
   <add verb="*" 
        path="*.swgx"
        type="Gizmox.WebGui.Server.Silverlight.Router, 
              Gizmox.WebGui.Server.Silverlight, 
              Version=3.0.5701.0, 
              Culture=neutral, 
              PublicKeyToken=ab72e83db5281dc3" />
</httpHandlers>
The extension that will be used for SilverLight deployment

See also

Silverlight Applications tab



Personal tools