|
POST
|
Hi Natalie, Confirmed with our developers, this should be a bug, we'll try to fix this. Current work around is as you say, to reopen the Editor widget, sorry for the inconvenience. And also thanks for the feedback and letting us know:)
... View more
08-10-2015
03:37 AM
|
0
|
0
|
847
|
|
POST
|
Hi Mark, Would you give some details background of the specific "layer A"? I think there must be some reasons for it does not show in configure dialog of Attribute Table widget. However, we cannot give you any further suggestions unless we know the details of your "layer A", such as what's data source of it? Where it redirects to when you click the "description" in the context menu of Layer list widget? A map service layer or feature service layer? Is it secured? Or it's an csv layer? Can it be shown in the table of ArcGIS Online mapviewer? etc.
... View more
05-27-2015
08:50 AM
|
0
|
0
|
565
|
|
POST
|
Hi Lefteris, Have you tried the Query Widget? I think you can filter a layer in Query Widget UI and also in the configuration json file. Query widget—Web AppBuilder for ArcGIS | ArcGIS Query—Web AppBuilder for ArcGIS (Developer Edition) | ArcGIS for Developers
... View more
05-27-2015
08:23 AM
|
1
|
0
|
2989
|
|
POST
|
Thanks for reminding, it's supposed to be fixed in next release.
... View more
02-09-2015
11:32 PM
|
0
|
1
|
1585
|
|
POST
|
Hi Alex, Registering an app in ArcGIS Online or Portal is mainly for oAuth2 authentication purpose, as soon as you got the Client ID and Client Secret, you have to exchange a valid token for your private resources by yourself. ArcGIS Online Authentication | ArcGIS for Developers How the "proxy" part in config.json file works can be found here: Use proxy—Web AppBuilder for ArcGIS | ArcGIS. For your scenario, I think you have to write some server code in your proxy file to identify the requests to private resources and append valid token (it's your responsibility to get a valid token, also needs server code) to those requests at least. In "proxy" part of config.json file, you may want to set some rules to reduce the unnecessary request passing to your proxy. Hope this helps.
... View more
02-09-2015
11:26 PM
|
1
|
1
|
9888
|
|
POST
|
Hi Alex, The reason why you can see the agol popup(oAuth2 authentication dialog indeed) is because your webmap or some layers in the webmap is not shared to public. Otherwise no authentication dialog will appear. To remove the oAuth2 authentication dialog, it means on every request to private resources in your deployed app(private webmap or private layers in webmap) have to come along with a valid token. This can be done by putting a proxy which has valid token in it in front of your deployed app, as long as the end users visit the deployed app through the proxy(indeed end users will not know the real url of the app), then no security challenge will occur to end user. To achieve your goals, you need do following things: In your proxy file, write server code to process all requests to the private resources. Specifically, identify all requests that need token, and concatenate valid token to those requests. In your proxy file, write server code to refresh the token if it’s expired. Put your own IIS security challenge before the proxy, which also needs some code. By the way, you've mentioned proxy.config and <ProxyConfig> tags, I assume you're using the sample proxy file from esri’s github. This proxy file is just too simple for you to achieve above goals, more server code is needed.
... View more
02-05-2015
07:35 PM
|
1
|
3
|
9888
|
|
POST
|
Hi Dan, This is expected behavior for the current release, the feature of highlight feature in the attribute table which is clicked on the map is not supported currently. We are working on this and may introduce this feature in the future version of WAB, thanks.
... View more
10-12-2014
06:26 PM
|
1
|
2
|
921
|
|
POST
|
Hi Ben, Just check out this thread to see if you are in the trouble with the same proxy reason. Working with WebAppBuilder behind a corporative http proxy Thanks!
... View more
08-05-2014
12:32 AM
|
0
|
1
|
2179
|
|
POST
|
Hi Steve, Just check out this thread to see if you are in the trouble with the same proxy reason. Working with WebAppBuilder behind a corporative http proxy Thanks.
... View more
08-05-2014
12:24 AM
|
0
|
4
|
2162
|
|
POST
|
Thank you for helping us to figure out the workaround!
... View more
08-05-2014
12:23 AM
|
1
|
0
|
2372
|
|
POST
|
Hi Tarig, Your steps is very clear and is helpful for us to research the reason. As Alexis Rodriguez said, are your network traffic all go through some sorts of proxy? If this is the case, please keep eyes on Working with WebAppBuilder behind a corporative http proxy this thread, we are trying to find a solution to the proxy issue. Thanks!
... View more
08-04-2014
10:42 PM
|
0
|
0
|
2372
|
|
POST
|
Hi Alexis, Thanks for providing the details, this helps a lot. Please following the instructions given by Junshan below to see if you can managed to log into Portal.
... View more
08-04-2014
10:33 PM
|
0
|
0
|
4623
|
|
POST
|
Hi Alexis, Thanks for providing the information. Could you please describe what is your office network environment? What kind your proxy is or the steps to setup your proxy network? So we can reproduce your problem and find a workaround. Thanks!
... View more
08-03-2014
08:03 PM
|
0
|
2
|
4623
|
|
POST
|
Hi Tarig, The error message " [2014-08-01 13:42:58.191] [DEBUG] repo - watch dir: D:\git projects\arcgis-weba ppbuilder\client\stemapp\widgets\ register /dojo -> D:\git projects\arcgis-webappbuilder\client\libs\dojo events.js:72 throw er; // Unhandled 'error' event ^ Error: listen EACCES at errnoException (net.js:904:11) at Server._listen2 (net.js:1023:19) at listen (net.js:1064:10) at Server.listen (net.js:1138:5) at Object.<anonymous> (D:\git projects\arcgis-webappbuilder\server\server.js :139:24) at Module._compile (module.js:456:26) at Object.Module._extensions..js (module.js:474:10) at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) at Function.Module.runMain (module.js:497:10) " can occur when the port 80 is using by another process, such as IIS, please check your port 80 is available before you try "node_x86.exe server.js -port=80". Thanks.
... View more
07-31-2014
10:54 PM
|
0
|
6
|
2372
|
|
POST
|
When you start nodejs manually like above, then you can leave the startup.bat batch file away. So when you execute "node_x86.exe server.js -port=80" and got " Server listening http connection on port 80 in development mode Server listening https connection on port 443 in development mode " message, then you can enter "http://yourmachinename/webappbuilder" in the browser now to open Web AppBuilder. Just try this to see if your can log into your Portal when nodejs running on port 80. Thanks.
... View more
07-31-2014
08:30 PM
|
0
|
0
|
2162
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 2 | 11-20-2025 07:20 PM | |
| 2 | 09-08-2024 11:16 PM | |
| 1 | 07-08-2025 12:07 AM | |
| 2 | 05-08-2025 02:46 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|