|
POST
|
Is it possible to add a WMS service as a layer in a Flex Viewer app? I'm a little confused that all the layers show as the same server, how do you specify a specific layer?
... View more
03-23-2015
12:30 PM
|
0
|
1
|
4284
|
|
POST
|
Does the eSearch widget need to be placed in the Web AppBuilder developer edition folder somewhere...?
... View more
03-23-2015
11:07 AM
|
0
|
1
|
455
|
|
POST
|
Thank you sir! Sorry I don't know all the details about the config and version...as I said, I inherited it and am not familiar with what is all needed. Do you plan on...or do you have a similar widget available for the Web AppBuilder? Is there accompanying documentation?
... View more
03-23-2015
08:44 AM
|
0
|
3
|
455
|
|
POST
|
...that does not work... https://gis.linncounty.org/webapps/auditor/flexviewer/index.html?esearch=142830800200000&slayer=0&exprnum=1 If I use the widget and enter the GPN value, it does...but passing the search through the URL does not.
... View more
03-23-2015
08:22 AM
|
0
|
5
|
1680
|
|
POST
|
So what would the URL need to look like to add in the PIN number...?
... View more
03-23-2015
08:01 AM
|
0
|
7
|
1680
|
|
POST
|
Robert, Below is a screenshot of the eSearch widget .xml file. The expression we'd want to use is the 2nd one listed, the Search GPN expression. Does this mean we need to use exprnum=2 or does this expression block count as 1 item? Thanks again!
... View more
03-23-2015
07:46 AM
|
0
|
9
|
1680
|
|
POST
|
I inherited this app, so I have no idea how to configure the URL search string. I can tell you the layer we want to query is not the first layer listed, the layer number of layer we want to query is 18. I would need some guidance on how to configure either the eSearch .xml or what needs to be entered in the URL. Thanks!
... View more
03-23-2015
07:27 AM
|
0
|
11
|
1680
|
|
POST
|
We recently migrated to a new ArcGIS Server that is using SSL and whose data sources for services are now using a local file gdb instead of our production SDE gdb. One thing our Assessor's office uses is the eSearch widget to pass a search string in the URL to find a particular parcel by PIN number. That no longer seems to work and I'm wondering what we need to do to fix it... Example URL used: https://..../index.html?esearch=142830800200000 Is there something in the eSearch widget I need to update, or some other config.xml file?
... View more
03-23-2015
07:03 AM
|
0
|
13
|
6024
|
|
POST
|
William, It's been awhile since I created the replica...but if I remember correctly, what I did was use the 'Create Replica' (not Create Replica from Server) tool in the Distributed Geodatabase toolbox. Input parameters would have been along the lines of: a. Replica Datasets = 'county' gdb SDE database connection b. Replica Type = TWO_WAY_REPLICA c. Geodatabase to replicate to = 'city' geodata service d. Replica Name = whatever you want e. Advanced Settings = all defaults So...the 'county' gdb acted as the parent and pushed data to the 'city' gdb using the 'city' geodata service as the connection. I did not publish a map service since I did it all through ArcCatalog...and for what we're testing, I don't think it would be necessary or helpful. I'm not sure what you mean by 'Default GDB is set to protected vs. public'. I originally struggled with the concept of a geodata service and how to replicate the data using a geodata service. I believe all SDE gdbs need to be in place as well as all geodata services. You should be able to then use the 'Create Replica' tool in the Distributed Geodatabase toolbox using the 'child' geodata service as geodatabase to replicate data to parameter...that way you don't have to create a XML or some other static snapshot of your data and load into the 'child' / replica gdb.
... View more
03-10-2015
01:42 PM
|
0
|
11
|
4106
|
|
POST
|
William, What I have setup is more of a test environment. What I have are two SDE geodatabases and two geodata services (one for each SDE gdb). In my test environment, one SDE gdb is meant to represent the 'county' gdb and the other is meant to represent the 'city' gdb. I have scripts setup that will sync changes, analyze datasets, compress, rebuild indexes, and analyze datasets once again on each SDE gdb. So...for example, if I'm synchronizing changes to my 'county' gdb, then the I use a database connection file to the 'county' gdb as gdb1 and a ArcGIS Server connection file to the 'city' geodata service as gdb2. What this would do is sync changes in both directions between my 'county' gdb and 'city' gdb using the geodata service as my remote connection to the 'city' gdb. On the flip-side when I sync changes and run the gdb admin tools on the 'city' gdb, you basically just flip-flop gdb1 and gdb2...where gdb1 would be the database connection file to the 'city' gdb and gdb2 would be the ArcGIS Server connection to the 'county' geodata service. I run these scripts on a daily basis and while we haven't been testing thoroughly, they haven't failed, and when I have tested by entering data into the 'county' gdb and then syncing back to the 'city' geodata service, it has been successful...likewise if I edit data in the 'city' gdb and then sync back to the 'county' geodata service. Both the geodata services are within a secured folder on our test ArcGIS Server site. Both SDE gdbs are versioned.
... View more
03-10-2015
12:13 PM
|
0
|
13
|
4106
|
|
POST
|
...there are two layers whose pop-ups do work. They are the two layers that are turned on in the table of contents in the original web map. All other layers are turned off by default. Is it possible this has something to do with what pop-ups work and those that do not?
... View more
02-25-2015
10:05 AM
|
0
|
1
|
865
|
|
POST
|
I have a web map that has pop-ups configured for every layer. However, there is a significant number of layers that do not show the pop-up when the web map is brought into Web AppBuilder (developer edition). The pop-ups display when within the web map. Wondering if anyone has any ideas as to why the layers do not show the pop-up once in Web App Builder. I am using ArcGIS Server 10.1 sp1. The map service containing the layers has all operations allowed (map, query, and data). Thanks in advance!
... View more
02-25-2015
09:22 AM
|
0
|
2
|
4724
|
|
POST
|
I'm looking for a way to generate one complete list of all feature classes within all feature datasets inside a gdb. If I execute the script below, it generates multiple lists of feature classes for each dataset within the gdb. Is there a way to combine each of these separate lists of feature classes into one complete list? import arcpy
gdb = r"...path to some gdb"
arcpy.env.workspace = gdb
dsList = arcpy.ListDatasets("*", feature_type="Feature")
dsList.sort()
for ds in dsList:
print ds
...list of datasets...
for ds in dsList:
fcList = arcpy.ListFeatureClasses("*", feature_type="ALL", feature_dataset=ds)
fcList.sort()
print fcList
...separate lists of feature classes per feature dataset... Thanks in advance!
... View more
02-23-2015
06:51 AM
|
0
|
5
|
17241
|
|
POST
|
Got it...you can use the Synchronize Changes tool to sync in both directions. I'm assuming this would be useful if trying to schedule syncing on a regular basis through a model or script. I really appreciate your help with this Jake Skinner !
... View more
02-19-2015
08:08 AM
|
0
|
15
|
3061
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-03-2026 09:59 AM | |
| 1 | 03-02-2026 11:02 AM | |
| 6 | 02-18-2026 04:58 PM | |
| 2 | 02-18-2026 05:01 PM | |
| 1 | 12-09-2025 07:06 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|