|
POST
|
Hi All I have been fighting the exact issue that @Scott_Tansley outlined for about 3 weeks now (with support) and no solution. Everything has been working fine for the last 8+ years until we upgraded from 10.9.1 to 11.1. Just random crashes/freezes that only seems to affect Server...Portal still functions and the overall webserver is healthy. Incredibly frustrating that it just stops responding -- with no obvious reason. I just found this thread last night and I'm testing out the IIS config suggestions from @SavageTrimble . Fingers crossed! I'll report back. Thanks!
... View more
05-31-2023
12:38 PM
|
1
|
1
|
4847
|
|
POST
|
Check this thread...there seems to be a common theme here: https://community.esri.com/t5/arcgis-enterprise-questions/arcgis-web-adaptor-11-1-app-pool-freezes/td-p/1291473 Testing out the IIS config to see....
... View more
05-31-2023
12:34 PM
|
1
|
2
|
3064
|
|
POST
|
Still stumped here too...there is nothing in the logs, no error reports at all to even begin to diagnose. I upped the page file and still crashes. I removed SOEs, still crashes. At least now it's only once a day which leads me to believe theres a memory issue when the traffic spikes but my VM stats -- RAM/CPU/Network-- appear to be normal when the crashes happen...I will have to roll back to 10.9.1.
... View more
05-30-2023
07:11 PM
|
0
|
0
|
5414
|
|
POST
|
-->
Wire up a sketch widget mySketch = new Sketch( layer: <your graphics layer>, view: <your view> ) When you want to sketch something go: mySketch.create("polygon", {mode: "freehand"});
... View more
05-23-2023
02:36 PM
|
1
|
0
|
1701
|
|
POST
|
Unfortunately it crashed again early Monday morning. Waiting for support again...
... View more
05-22-2023
07:32 AM
|
0
|
2
|
5495
|
|
POST
|
Testing this out over the weekend and (I don't want to jinx it but) I haven't seen a crash since I upped the pagefile size...it was rather small at 5GB. I bumped it to 16 and hoping that's a fix!
... View more
05-21-2023
02:07 PM
|
1
|
3
|
5505
|
|
POST
|
Do you have any ideas or suspicions to the cause? I've been trying to check every possible angle and when I fix something that I think is the culprit it crashes again. Thanks!
... View more
05-19-2023
03:28 PM
|
0
|
5
|
5518
|
|
POST
|
Hi Michelle I currently have a ticket in process about a similar issue and it's been lingering for the last 2 weeks. I'm posting here to get as much help as I can before finally rolling back to a VM snapshot of 10.9.1. I 'upgraded' my production enterprise to 11.1 on 5/6. Since then ArcGIS server crashes/stops responding about 2-3 times a day. The only thing that seems to 'fix' the issue is rebooting the server. I have scoured ArcGIS server logs, windows server logs, and nothing seems to inidcate that a crash is coming or what causes it. There have been no changes to the server itself since the upgrade and I never had this issue when 10.9.1 was running. Please keep in mind that I have done everything in the documentation for the migration to 11 from 10.9.x. All SOEs have been upgraded, server hardware is at least min spec etc. Oddly, the installation/'upgrade' went without a hitch. Also, Portal and the Datastore all seem to be fine...it's just that Server stops responding altogether. I can't reach server manager or the rest endpoint either internally or externally. I'm basically having to watch my system all day to see if it's still running and reboot if it's dead so I can keep my production services up. Please help. Thanks.
... View more
05-18-2023
07:21 PM
|
0
|
7
|
5537
|
|
POST
|
Thanks. I guess I should have emphasized more than just in the post title that I upgraded the SOE. I have migrated all of our SOE's to the new 11 SDK using VS2022. They all migrated fine except for this one issue I'm having with that particular assembly - Microsoft.Data.SqlClient'. I even updated to the latest release and the error still shows up.
... View more
05-10-2023
06:28 AM
|
0
|
1
|
5131
|
|
POST
|
Hello! I just completed full migration from Enterprise 10.9.1 to 11.1. I have most everything back up and running except 1 custom SOE we have was using SqlConnection and System.Data.SqlClient to call a SQL command. I got a 'System.Data.SqlClient' is not supported on this platform. Thinking it was similar to the recent ArcPro add-in issue I swapped that out for 'Microsoft.Data.SqlClient' with the same results. This was working fine before the upgrade. Does any one have any input on this one? Thanks! Mike
... View more
05-09-2023
12:10 PM
|
0
|
13
|
6618
|
|
POST
|
Here's a great article with a code sample to get you started via ESRI....you can tweak the code as needed. https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/automate-reconcile-and-post-operations-for-sync-enabled-branch-versioned-data.htm
... View more
02-02-2023
07:49 PM
|
0
|
0
|
1695
|
|
POST
|
Hello! I may be missing a simple setting but I can't seem to figure out how show the 'Not a member of this organization? Sign in to your account on ArcGIS Online' option in the login dialog when using OAuth sign in options in a 4.25 web app. I have this setting enabled in our ArcGIS Online security options and it does appear on the ArcGIS Online sign in dialog...just not from an app. Any help would be great! Thanks! Mike
... View more
01-28-2023
04:18 PM
|
0
|
0
|
1523
|
|
POST
|
-->
Hello This does require oAuth and you need to register your app with your Portal/AGO instance. Once you register it you get the app id and add it to your oAuth configuration in your app. var oauthInfo;
//get oauthInfo
oauthInfo = new OAuthInfo({
appId: <app id here>,
portalUrl: <portal url here>,
popup: true
});
esriId.registerOAuthInfos([oauthInfo]); Then, when you load your secure layer you pass in the portal you are accessing it from...if it's a secured layer the login dialog will popup for that portal: Layer.fromPortalItem({
portalItem: {
// autocasts as new PortalItem()
id: <item id here>,
portal: new.Portal({ url: <portal or ago url here> });
}
})
.then(function (layer) {
})
.catch(rejection);
}); Hope that helps!
... View more
01-20-2023
01:59 PM
|
2
|
2
|
3225
|
|
POST
|
Sure... require([
"esri/rest/query",
"dojo/query"
], function (
restQuery,
query
){
//esri restQuery call
restQuery.executeQueryJSON(){
});
}
... View more
01-12-2023
01:10 PM
|
0
|
1
|
3247
|
|
POST
|
Gotcha...I should have read slower...I have both in projects and I have the dojo/Query init function parameter set to 'query', and have the esri/rest/query parameter set to 'restQuery' -- then calling restQuery.executeQueryJSON works fine.
... View more
01-12-2023
12:23 PM
|
0
|
3
|
3271
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-01-2026 10:36 AM | |
| 1 | 11-14-2011 01:45 PM | |
| 15 | 10-29-2024 10:14 AM | |
| 1 | 05-31-2023 12:34 PM | |
| 1 | 05-30-2024 02:54 PM |
| Online Status |
Offline
|
| Date Last Visited |
05-19-2026
09:36 AM
|