|
POST
|
I tested this on my end and wasn't able to reproduce the behavior. I have a shapefile sitting on the C:\ drive and I'm using Windows Server 2012 R2. I created a new shapefile, edited it in ArcMap, closed ArcMap, reopened it, and the shapefile loaded successfully. This occurs with any shapefile you edit?
... View more
07-23-2015
01:19 PM
|
0
|
1
|
1161
|
|
POST
|
If you're concerned with performance, reducing the amount of requests that need to go over the network is going to be key. You'll want to put the file geodatabase on the local Server machine so that at least to reach the mosaic dataset, ArcGIS Server doesn't need to reach the network. It will have to to retrieve the actual tiles through the network, but that seems unavoidable given the amount of data you're serving. Following Lance's suggestion, you can still set up a UNC path for the data so other users can use it in their Desktop applications.
... View more
07-23-2015
11:38 AM
|
1
|
2
|
1530
|
|
POST
|
Are you appending new features to the feature service, or updating existing features? If you're appending new features, (maybe the excel spreadsheet has spatial information, like X/Y fields), then you can create the features and use the append tool to append the new features to the datasets included in the feature service. If you're updating existing features, you can use an UpdateCursor. You can find the features you need to find within the feature service using the attributes within the excel sheet and then use an Update Cursor to update the feature attributes. You can either update the datasets in your SDE database or use the editing functions through Rest, (ApplyEdits, AddFeatures, etc) to update the feature service in a Rest call.
... View more
07-23-2015
11:28 AM
|
0
|
0
|
998
|
|
POST
|
This also might be the following issue: NIM102777 - When ArcGIS for Server loses connectivity to the config-store, the setting changes from 'public' map services to 'private', due to the loss of 'esriEveryone' principal. The bug is resolved at 10.3, so following what Vince is saying, I would upgrade to 10.3 and make sure you check the patches site for relevant patches to install.
... View more
07-15-2015
12:38 PM
|
1
|
1
|
2653
|
|
POST
|
It looks like you generate a Portal token using the http referer approach, which I believe is the only way to generate a token. What that means, though, is that every time you use the Portal token, the only way it's going to be valid is if you include a referer header equal to the referer parameter when you generated the token in every request where the token is used. That's the only way the token is valid. If you're not including the referer header in the request using the Portal token to generate the Server token, then maybe the Server token is not being generated correctly.
... View more
07-14-2015
08:35 AM
|
1
|
2
|
4085
|
|
POST
|
Even though you're signing in with your active directory credentials, I'm pretty sure requests to services in webmaps won't use those same credentials. If you're interested in avoiding prompts for security, then you should embed credentials within the service items. Note this does not work with web tier security. Add items—ArcGIS Online Help | ArcGIS - See step 5
... View more
07-13-2015
11:03 AM
|
0
|
0
|
2265
|
|
POST
|
I'm not sure if this is still a relevant issue for you or not, but if you want to simply upgrade your 10.1 site to 10.3, you can do an in-place upgrade and install 10.1 on top of 10.3 to upgrade it. If you want to move your 10.1 site to a separate machine and then upgrade to 10.3, you can disconnect the machine from the site, (under Manager > Site > Machines), and then copy the site folder, (by default C:\arcgisserver), to the new Server. You'll be redirected to the Create a site or Join a site page for the original Server site, so select Create a site and enter the same exact path as was originally set for your site. You're simply telling the installation to look at the existing content for the site. On the new machine, install 10.1, and set the site to point to the copied arcgisserver folder. Once that's done, you should have identical sites at 10.1 on separate machines. On whichever machine you want, you can then upgrade to 10.3 by running the installer.
... View more
07-13-2015
10:49 AM
|
2
|
0
|
707
|
|
POST
|
You can also look into using a proxy page: Using the proxy | Guide | ArcGIS API for JavaScript Use proxy—Web AppBuilder for ArcGIS (Developer Edition) | ArcGIS for Developers You can embed the valid credentials within the proxy page so that users won't be prompted to login to the application to access the secure service.
... View more
07-13-2015
10:34 AM
|
2
|
0
|
1339
|
|
POST
|
Yes, you're considering display, but then attribute information. The operational layers is the display, but query and search widgets and popups are separate. You can still query the service regardless if it's cached, (as we can also see when you add the feature layer to the map).
... View more
07-10-2015
03:28 PM
|
2
|
0
|
1521
|
|
POST
|
When you look at the service in the Javascript API at Rest, you're viewing the cached service which returns pre-created tiles. A cached service will perform better than a dynamic service, as a cached service is returning pre-created tiles instead of dynamically creating images to send ot the client. In your application, though, it looks like you're adding the feature layer of the cached service to the application, which then forces the application to submit query requests for the data. Why are you adding the feature layer to the application, instead of the whole map service to take advantage of the cache? You can still access the popups for the map service even if it's cached.
... View more
07-10-2015
03:08 PM
|
2
|
1
|
1521
|
|
POST
|
I see no problems in Portal 10.3.1 on my end: Could you try to run fiddler and see what requests it's making, and if they're successful? The file will be added through the Portal /sharing/KML utility, so chances are the request is not making it through there. A Fiddler log or developer tools log from Firefox, Chrome, or IE will be helpful here.
... View more
07-10-2015
08:52 AM
|
1
|
1
|
6834
|
|
POST
|
Ben, So you're able to click on the white space and select whichever basemap should be listed there? That seems strange. Can you run Fiddler while opening the Select a Basemap dialog window? You should see requests to the thumbnails. If there are any error codes in the requests to the thumbnails, then that's why they don't show up, and it'll be important to know what those errors are. Ex.
... View more
07-10-2015
08:46 AM
|
1
|
3
|
6161
|
|
POST
|
Good find, Douglas. Something to keep in mind for anyone else who runs into an issue where symbols, groups, users, or other items are not visible is to run a full Portal reindex. This issue may occur during an upgrade of Portal from one version to another: Steps to perform an upgrade of your portal deployment - Steps 10-12 Upgrade Portal for ArcGIS—Portal for ArcGIS (10.3 and 10.3.1) | ArcGIS for Server After upgrading, I don't see all of my items, groups, and users in my portal. What's going on? Common problems and solutions—Portal for ArcGIS (10.3 and 10.3.1) | ArcGIS for Server
... View more
07-10-2015
08:31 AM
|
0
|
0
|
1547
|
|
POST
|
When you check the service at Rest, is there a default value for that parameter? If so, is it in quotes or is it unquoted? There should be a default value, which would be the value you used when you ran it originally in ArcMap before publishing, so you could try to just submit the job at Rest with the default parameters to make sure it goes through.
... View more
07-10-2015
08:26 AM
|
1
|
2
|
9455
|
|
POST
|
Yeah, I agree that exporting from MB has the potential to get weird. Can you also describe the inputs? Are they feature sets, raster layers, strings, or choice lists? The first thing we should look at is how the data is being entered to run the tool, given the error message on the Server end. Your original post indicates you're running the model as a service, yet you include the code that it's failing on. Did you try to publish the model, and did that fail as well? Let us know how you're providing input to the tool, as that's going to be helpful in determining if those inputs are valid or not. Can you provide a screenshot of the task parameters from the REST endpoint?
... View more
07-08-2015
11:37 AM
|
1
|
0
|
753
|
| 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
|