POST
|
I'm on Windows 7 and 10.5 is still plagued by the bug I worked with ESRI support to figure out: #BUG-000099147 In virtualized environments of Windows Server 2008 and Windows 7, the ArcGIS License Server Administrator sends eight requests per minute to a dummy IP address. See my post from October above. Whether or not everyone is experiencing this exact issue or bug, I'm not sure...but I can confirm I'm still stuck with slow start-up times.
... View more
04-24-2017
10:06 AM
|
0
|
0
|
27
|
POST
|
Sorry for the delayed response, have been busy with project work and this doesn't fall under that category. Thanks for that video! I don't know how I wasn't able to find it googling, but I've made my code look slightly better. It didn't give me a .NET option, but it looks better than before. Anyway, I did more testing today and got myself back into this, and it turns out that an exception is thrown for pAppROT = New AppROT In the meantime, I'll be doing more digging as to why this worked before, but no longer works. The only thing that has changed, has been the version of ArcGIS as stated originally. Thanks, Edit: I should've mentioned, the exception is an invalid cast exception to a COM object.
... View more
12-05-2016
01:39 PM
|
0
|
1
|
13
|
POST
|
Hi, I have a program that checks a raster catalog against view extent, copies any files to the project folder, and then the final step is to either: 1. Navigate to the project folder where the raster files are saved, if ArcCatalog is open. or 2. Open ArcCatalog, then perform step 1. This worked perfectly fine in ArcGIS 10.1, but after having upgraded to 10.4.1, this no longer works. I'm using .NET, the code is below. I'm curious why this no longer works (serious application error crash). ' Application Running Object Table to access applications. Dim pAppROT As IAppROT pAppROT = New AppROT ' Cycle until ArcCatalog is found. Dim pGxApplication As IGxApplication Dim bCatalog As Boolean Dim iAppCount As Integer pGxApplication = Nothing ' Get the total number of ESRI "Arc" processes running. iAppCount = pAppROT.Count If iAppCount > 0 Then Dim i As Integer For i = 0 To iAppCount - 1 If pAppROT.Item(i).Name <> "ArcCatalog" Then bCatalog = False Else bCatalog = True Exit For End If Next i ' If catalog doesn't exist, launch one. Go to destination folder. If Not bCatalog Then Dim iCount As Integer iCount = 1 Shell("C:\Program Files (x86)\ArcGIS\Desktop10.4\bin\ArcCatalog.exe", AppWinStyle.NormalFocus) Do While pAppROT.Count = iAppCount Thread.Sleep(500) Loop For i = 0 To pAppROT.Count - 1 If pAppROT.Item(i).Name = "ArcCatalog" Then pGxApplication = pAppROT.Item(i) With pGxApplication .Location = sImageryDestination .Refresh(sImageryDestination) End With End If Next i Else pGxApplication = pAppROT.Item(i) With pGxApplication .Refresh("Y:\01_GISProject") .Location = sImageryDestination .Refresh(sImageryDestination) End With End If End If
... View more
10-17-2016
09:09 AM
|
0
|
3
|
863
|
POST
|
Hi Anna, Thanks for replying, reminded me to respond to this thread. After weeks of trying to convince ESRI that this was definitely not expected behavior, they determined a bug existed. Here's the details I was given: #BUG-000099147 In virtualized environments of Windows Server 2008 and Windows 7, the ArcGIS License Server Administrator sends eight requests per minute to a dummy IP address. Not sure if it's related to you or not, but they said mine quite possibly was (even though I am not running a virtual environment). Hopefully they release a patch soon.
... View more
10-14-2016
12:23 PM
|
1
|
1
|
46
|
POST
|
I've got a similar issue with a slightly different upgrade path. Just made the upgrade from 10.1 to 10.4.1. Everything went fine. Launch ArcMap: "Initializing License" takes about a full minute, Document and Application take a few seconds each. I've worked with support on a ton of possible fixes ranging from Normal.mxt to complete uninstall, registry wiping, re-install. No luck. I'm not on Windows 10, but my supervisor just got a brand new computer with Windows 10, so I figured we should all be upgrading to 10.4.1. Installed 10.4.1 on her Windows 10 machine, and it opens in about 10 seconds. ArcGIS for Desktop Basic. Windows 7 Professional. All specs exceed the recommended. We're using AVG, but I've added exceptions to both Map and Catalog exe's. Will reply here again if we end up figuring out what's going on. I haven't found much on this issue for 10.4, but read a few things on 10.2. Still researching.
... View more
09-20-2016
12:24 PM
|
0
|
0
|
46
|
POST
|
Apologies for the delay...work got busy! Here's the thread I created about the issue. Maybe reading through it will give you some insight and hopefully get some sort of answer. http://forums.arcgis.com/threads/100100-Model-Builder-Final-Output-Not-Added-to-Display Hope that helps, have a great weekend.
... View more
04-17-2014
02:13 PM
|
0
|
0
|
1
|
POST
|
Hey there, I'm kicking myself for not writing down how I managed to fix this issue for some models I created recently. I definitely recall my final output not being added to the display, so instead I'm going to give you all the information about my model I see relevant and hopefully it sparks something. My final output doesn't actually have "Add To Display" checked off. It's also not managed, and it is a parameter. I had the same feeling with making it a parameter (I would have preferred not, but that's the only way it would work). I'll have a look around because I recall this issue taking quite some time to resolve. Hopefully we can turn something up.
... View more
04-17-2014
09:22 AM
|
0
|
0
|
1
|
POST
|
Hey all, We have an Add-In to "clip project area" essentially. Bunch of layers sourcing to multiple base data locations on our server, and this program basically says: select all features within extent, export, re-source layers to the exported location (the project folder). My question has to do with the pre-existing lock files to the original datasets. Even after the data has been re-sourced the lock remains. I understand lock files remain for some additional functionality (e.g. remove layer and then allowing the user to 'undo') but figured I'd double check with you guys first. So, is there any way at all, short of closing the MXD, to programatically remove these locks? My thoughts were to try and implement IDataLayer.Disconnect, before re-sourcing the data, but that didn't work as intended. Any info would be appreciated.
... View more
04-07-2014
12:45 PM
|
0
|
0
|
284
|
POST
|
I found a link that may be of some use after searching your error. Hopefully it provides some useful information.
... View more
04-04-2014
06:14 AM
|
0
|
0
|
13
|
POST
|
Hey, I've got a couple applications which utilize some code I found from ESRI (can't recall exactly where, shouldn't be difficult to find). I modified it to match my needs and this is the result. I'm not entirely sure what's wrong with your code, but it looks like it may be missing something (I'm not as familiar with C as VB.NET, so my apologies I can't convert this exactly). ' Create the geoprocessor. Dim gp As IGeoProcessor2 = New GeoProcessor() Dim pGPResult As IGeoProcessorResult = New GeoProcessorResult() gp.OverwriteOutput = True ' Create a variant array to hold the parameter values. Dim parameters As IVariantArray = New VarArray() Dim sev As Object = Nothing Try ' Populate the variant array with parameter values. With parameters .Add(sGPXFullName) .Add(sFDatasetPath & sTempFCName) End With ' Execute the tool. pGPResult = gp.Execute("GPXToFeatures_conversion", parameters, Nothing) ' Wait until the execution completes. While (pGPResult.Status = esriJobStatus.esriJobExecuting) Thread.Sleep(1000) End While ' Print geoprocessing messages. Console.WriteLine(gp.GetMessages(sev)) Catch ex As Exception ' Print generic exception messages. Console.WriteLine(ex.Message) ' Print geoprocessing execution error messages. Console.WriteLine(gp.GetMessages(sev)) End Try Anyway, like I said...most of the above was straight from some ESRI documentation and my code runs just fine. Simply replace the strings where necessary. And if anyone else sees this and has comments I'd be interested to see if there's a "better" way to run this.
... View more
04-02-2014
06:16 AM
|
0
|
0
|
13
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|