POST
|
Hi Michael, I managed to get the dump file and loaded in Visual Studio. Here is the stack trace. [External Code] [Managed to Native Transition] Esri.ArcGISRuntime.dll!RuntimeCoreNet.GeneratedWrappers.CoreVector.Remove(long position) Unknown Esri.ArcGISRuntime.dll!Esri.ArcGISRuntime.RuntimeCollection<System.__Canon>.ExecuteActionWithUndo(System.Collections.Generic.Stack<System.Action> undoStack, System.Action action, System.Action undoAction) Unknown Esri.ArcGISRuntime.dll!Esri.ArcGISRuntime.RuntimeCollection<Esri.ArcGISRuntime.UI.Graphic>.SetItem(int index, Esri.ArcGISRuntime.UI.Graphic item) Unknown Esri.ArcGISRuntime.dll!Esri.ArcGISRuntime.RuntimeObservableCollection<Esri.ArcGISRuntime.UI.Graphic>.SetItem(int index, Esri.ArcGISRuntime.UI.Graphic item) Unknown > CadMap.exe!WpfCadMap.WpfMapControl.AddGraphicsOverlay(WpfCadMap.CfsMasterList itm, Esri.ArcGISRuntime.UI.GraphicsOverlay gpOverlay, string symbolPath) Line 2930 C# CadMap.exe!WpfCadMap.WpfMapControl.AddGraphicsOverlay(WpfCadMap.CfsMasterList itm) Line 2746 C# CadMap.exe!WpfCadMap.WpfMapControl.PlotAvlDisconnectList() Line 3113 C# CadMap.exe!WpfCadMap.WpfMapControl.GeoCodeCfsMasterList() Line 2348 C# CadMap.exe!WpfCadMap.WpfMapControl.DrawMapPoint() Line 1601 C# CadMap.exe!WpfCadMap.WpfMapControl.MapRefreshChangedWorker_RunWorkerCompleted(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e) Line 355 C# System.dll!System.ComponentModel.BackgroundWorker.OnRunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventArgs e) Unknown WindowsBase.dll!System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate callback, object args, int numArgs) Unknown WindowsBase.dll!System.Windows.Threading.ExceptionWrapper.TryCatchWhen(object source, System.Delegate callback, object args, int numArgs, System.Delegate catchHandler) Unknown WindowsBase.dll!System.Windows.Threading.DispatcherOperation.InvokeImpl() Unknown WindowsBase.dll!MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(object obj) Unknown mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Unknown mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Unknown mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) Unknown WindowsBase.dll!MS.Internal.CulturePreservingExecutionContext.Run(MS.Internal.CulturePreservingExecutionContext executionContext, System.Threading.ContextCallback callback, object state) Unknown WindowsBase.dll!System.Windows.Threading.DispatcherOperation.Invoke() Unknown WindowsBase.dll!System.Windows.Threading.Dispatcher.ProcessQueue() Unknown WindowsBase.dll!System.Windows.Threading.Dispatcher.WndProcHook(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam, ref bool handled) Unknown WindowsBase.dll!MS.Win32.HwndWrapper.WndProc(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam, ref bool handled) Unknown WindowsBase.dll!MS.Win32.HwndSubclass.DispatcherCallbackOperation(object o) Unknown WindowsBase.dll!System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate callback, object args, int numArgs) Unknown WindowsBase.dll!System.Windows.Threading.ExceptionWrapper.TryCatchWhen(object source, System.Delegate callback, object args, int numArgs, System.Delegate catchHandler) Unknown WindowsBase.dll!System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority priority, System.TimeSpan timeout, System.Delegate method, object args, int numArgs) Unknown WindowsBase.dll!MS.Win32.HwndSubclass.SubclassWndProc(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam) Unknown [Native to Managed Transition] [External Code] [Managed to Native Transition] WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame frame) Unknown PresentationFramework.dll!System.Windows.Application.RunDispatcher(object ignore) Unknown PresentationFramework.dll!System.Windows.Application.RunInternal(System.Windows.Window window) Unknown CadMap.exe!WpfCadMap.App.Main() Unknown [Native to Managed Transition] [External Code]
... View more
11-12-2019
10:56 AM
|
0
|
0
|
16
|
POST
|
Hello All, I ran into an unhandled exception that related to security on Windows 10. Here are the exception that I captured. Description: The source was not found, but some or all event logs could not be searched. To create the source, you need permission to read all event logs to make sure that the new source name is unique. Inaccessible logs: Security. Error Type: System.Security.SecurityException at System.Diagnostics.EventLog.FindSourceRegistration(String source, String machineName, Boolean readOnly, Boolean wantToCreate) at System.Diagnostics.EventLog.SourceExists(String source, String machineName, Boolean wantToCreate) at System.Diagnostics.EventLogInternal.VerifyAndCreateSource(String sourceName, String currentMachineName) at System.Diagnostics.EventLogInternal.WriteEvent(EventInstance instance, Byte[] data, Object[] values) at System.Diagnostics.EventLog.WriteEvent(EventInstance instance, Object[] values) at System.Diagnostics.TraceInternal.TraceEvent(TraceEventType eventType, Int32 id, String format, Object[] args) at Esri.ArcGISRuntime.UI.Controls.GeoView.Esri.ArcGISRuntime.Internal.IDxSurfaceSource.OnDrawException(String intro, Exception ex) at Esri.ArcGISRuntime.UI.Controls.GeoView.<OnLoadedAsync>d__236.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Esri.ArcGISRuntime.UI.Controls.GeoView.<MapSurfaceElement_Loaded>d__17.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler) When I run the application as administrator, it works. The application is working after the first run as administrator. We are using a Wpf application. The exception happened after page loaded event completed. Please let me know why it is causing it. I am using ArcGIS Runtime SDK for .NET version 100.5 Thanks, Steven
... View more
06-24-2019
08:56 AM
|
0
|
0
|
134
|
POST
|
Same issue with 100.8 Application: XXXXX.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.AccessViolationException at RuntimeCoreNet.GeneratedWrappers.CoreClientReference.CoreRT_ClientReference_destroy(IntPtr, IntPtr ByRef) at RuntimeCoreNet.GeneratedWrappers.CoreClientReference.PrivateDestroyHandle(IntPtr ByRef) at RuntimeCoreNet.GeneratedWrappers.CoreWrapperBase.PrivateDestroyHandle(Boolean) at RuntimeCoreNet.GeneratedWrappers.CoreWrapperBase.Finalize()
... View more
08-06-2020
05:44 AM
|
0
|
0
|
10
|
POST
|
Check out this article https://www.esri.com/arcgis-blog/products/arcgis-online/transportation/waze-arcgis-marketplace/
... View more
04-02-2019
08:57 AM
|
0
|
0
|
15
|
POST
|
Thank you very much for your help. I was able to get it integrate into our application.
... View more
04-01-2019
02:29 PM
|
1
|
0
|
3
|
POST
|
Hello Mike, Thank you very much for the reply. I saw the video about the vector map tiles. This is what we are looking for. Can we user ArcGIS Pro to generate the map tile in *.tpk that support ArcGIS Runtime for .Net desktop application?
... View more
09-11-2015
06:48 AM
|
0
|
0
|
12
|
POST
|
I worked with the analyst and we found out that the laptop had limitation the graphic controller and it is only supported OpenGL version 1.4. The analyst explained to me that we need OpenGL at least version 2.0 from the System requirement.
... View more
03-26-2015
04:10 PM
|
0
|
0
|
5
|
Online Status |
Offline
|
Date Last Visited |
11-16-2020
12:57 PM
|