|
POST
|
If the service has an associated feature service, you'd be able to right click on the service and export the data as if it were a regular feature class. Considering the service is a map service, (and thus only returns images), you'll need to get the data from the REST endpoint, submitting query requests. If query is disabled on the data and feature access is not enabled, then unfortunately, I don't think there's a way to download the data.
... View more
03-20-2017
08:43 AM
|
5
|
0
|
3922
|
|
POST
|
I don't believe this is possible with a traditional ArcGIS Server service. If your server is federated to Portal, what you can try is to publish a hosted cached service and then try to add that property to that service. The same type of service would be published to AGOL, so you're testing against more similar things.
... View more
03-20-2017
08:41 AM
|
1
|
1
|
6403
|
|
POST
|
The data within the feature classes in the status.gdb determine the completion percentage of the cache and that shouldn't be erased by simply moving the status.gdb to a different directory. It may be a good idea to run the Manage Map Server Cache Status tool regardless if the cache status is 100% or not, as it'll help tell you if the service sees the cache is there.
... View more
03-20-2017
08:40 AM
|
0
|
1
|
1516
|
|
POST
|
You'll first need to access the geometry and attributes of the service and store it in a feature set, or save it to disk as a feature class. After a quick search, this can be done using a few tools that are available: http://epro.maps.arcgis.com/home/item.html?id=16e5cc64178941839eca62837f168ec9 Download ArcGIS Online Feature Service or ArcGIS Server Feature/Map Service You don't really need to store the feature class on disk. Simply make a request to the query endpoint of the service, and store the results in a feature set. If there are more than 1000 features and the maximum number of records returned by a query is 1000, (which is the default), you'll need to make additional query requests to get all of the data. Once you have the feature set, you can use that as input with your other feature class to run the intersect.
... View more
03-17-2017
01:37 PM
|
0
|
0
|
926
|
|
POST
|
No problem. With the user that was used to install Portal, can you reach that location and create a folder or file in it? I haven't run into a situation where that error is thrown and it isn't permissions related.
... View more
03-17-2017
10:52 AM
|
0
|
0
|
1479
|
|
POST
|
I believe you'll need to add the images as attachments to the points. You can also try to add the path to the image to a new field in the attribute table and make sure that the path is accessible to wherever you think the data will be accessed, (internally or externally).
... View more
03-17-2017
10:13 AM
|
0
|
0
|
1489
|
|
POST
|
You can copy the cache to your new cache directory and publish a service with the same exact name. The data frame name should also be the same. Set the service to render based on the cache and it should draw from the cache automatically.
... View more
03-17-2017
10:00 AM
|
1
|
3
|
1516
|
|
POST
|
Are you trying this in your own application? I thought I read in a post somewhere that you can configure the application to render tiles until an LOD, and at that point, render it dynamically. I can't find it now, though, but if you're using your own custom application, it may be a start.
... View more
03-17-2017
09:59 AM
|
0
|
3
|
6403
|
|
POST
|
Right, exactly. Permissions only apply to consuming services. You may be able to control access to folders using an SOI, but I'm not sure.
... View more
03-17-2017
09:43 AM
|
1
|
0
|
3022
|
|
POST
|
Unfortunately, administrators in a site can administer any service in the site, which is the same for publishers. I'd suggest you check to see if an idea exists on the Ideas site and if not, create one. If you federate Portal and Server, and you have multiple federated Servers that each department should publish to, you have the option to restrict publishing based on groups. Then it uses the sharing model in Portal to control security, and you can add members to different groups to control who publishes to what server. This is outlined in the Fine-grained access control of federated servers section in the documentation on federating.
... View more
03-16-2017
12:54 PM
|
1
|
0
|
3022
|
|
POST
|
You're right, for performance considerations, local data will always be faster than UNC data. Ideally, you'd be able to compare the performance of data served locally and data served through a UNC and see if the difference is enough to warrant the additional overhead of maintaining two copies. Of course, that requires you to actually be able to register the data location in both ways, so we'll need to figure out why you can't register the data location when using the D:\ drive. Something you can try is to run ProcMon, run a filter to only return file system operations against the data store you want to register, and try to register it. That should show you the request Server is attempting to make to the folder location, and give you an indication of why it fails.
... View more
03-15-2017
09:17 PM
|
2
|
1
|
2692
|
|
POST
|
You should place the data in one location, share the folder so you can access it via a UNC path, and then publish the data from that location. The Publisher Connection and the Server Connection will be the same in that case, and you won't have to worry about making sure the data is redundant and synchronized. The accounts running the ArcGIS Server Windows service on each ArcGIS Server machine should be able to reach the data through the share.
... View more
03-15-2017
09:06 AM
|
1
|
3
|
2692
|
|
POST
|
You'll have no problem running two web adaptors on that machine.
... View more
03-14-2017
04:16 PM
|
1
|
4
|
3695
|
|
POST
|
I've installed it on Windows Server 2016 and haven't seen any problem. To be honest, I was testing something very specific, unrelated to the OS. The safe thing to do is to wait until the software is verified on Windows Server 2016, but I don't expect there to be any major issues.
... View more
03-14-2017
02:33 PM
|
2
|
0
|
3603
|
|
POST
|
ConvertWebMapToMapDocument takes a string as the WebMap_As_JSON parameter, which is essentially what you have when you do WebMap_as_JSON = jsonResponse.read() Note I got rid of the json.loads as that converts the contents to JSON, (which is why you see the u character, indicating it's unicode). What ends up working is something like this: import arcpy, urllib, urllib2, json
webmap="http://www.arcgis.com/sharing/rest/content/items/95562b6a24994641bbbaa3d1f2b7cf4f/data?f=pjson"
WebMap_as_JSON = urllib.urlopen(webmap).read()
result = arcpy.mapping.ConvertWebMapToMapDocument(WebMap_as_JSON)
mxd = result.mapDocument
mxd.saveACopy(r"C:\Temp\myMap.mxd")
print("Map document saved") I'm not sure the resulting MXD is really giving you a backup of the webmap though. A backup implies that you can restore it in case there was any problems. In the case of turning a webmap into an MXD, you're simply taking the operational layers within the webmap and creating layers in a map document that point to their original source. For example, the feature service layer in the webmap is still simply a feature service in the map document. You can't then publish the map document back to ArcGIS Online. You can backup your webmaps by creating another folder in your My Content called "Backups" or something and save a copy of the webmap in that folder.
... View more
03-14-2017
02:30 PM
|
2
|
1
|
1797
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-28-2026 06:05 AM | |
| 1 | 08-26-2016 10:10 AM | |
| 2 | 02-22-2024 07:22 AM | |
| 1 | 06-07-2024 07:11 AM | |
| 4 | 12-12-2024 08:52 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
07:43 AM
|