WebAppBuilder developer edition deployment

401
1
07-17-2019 02:19 AM
SantoshV
New Contributor II

Hi,

 I have configured WAB developer edition in my windows system, connected it to my portal, configured a web application downloaded the code and deployed it on IIS.

Setup a proxy as well.

Proxy

<?xml version="1.0" encoding="utf-8" ?>

<ProxyConfig allowedReferers="*"

             mustMatch="true">

    <serverUrls>                   

        <serverUrl url="http://services.arcgisonline.com"

                   matchAll="false"/>

  

                <serverUrl url="https://server.com/arcgis/rest/services"  

            username="portaladmin"  

    password="server3434"  

    matchAll="false" /> 

                </serverUrls>

</ProxyConfig>

 

My WAB confog.json

  },

  "wabVersion": "2.12",

  "isTemplateApp": true,

  "isWebTier": false,

  "httpProxy": {

    "useProxy": true,

    "alwaysUseProxy": false,

    "url": "http://localhost/DotNet/proxy.ashx",

    "rules": [ ]

               

  }

 

But when I run the application the page does not load, what am I missing here?

0 Kudos
1 Reply
KenBuja
MVP Esteemed Contributor

Did you also do steps 5 and 6 on the "Deploy your app" page?

5. Add and register the app. See Add apps and Register your app for details

6. Copy and paste the AppID to the appId property in the app config.json file. Save the file.

0 Kudos