Tagged Questions
0
votes
1answer
24 views
.Net MVC4 - How to return exception in json format?
I have a MVC4 application where I call a controller action from javascript using jquery. When an exception occurs in the controller the returned response text is in HTML format. I want it to be in ...
1
vote
0answers
14 views
Awesomium WebControl Hang
I have a tabcontrol and in the tabcontrol I have two tabitems, and both of them contain an awesomium Webcontrol. However after some random time the Webcontrols don't display anything. When I try to ...
2
votes
2answers
83 views
Can you get Method name that threw Exception?
Is there a C# method that returns to the upper-most caller, the Name of MY Method that threw an exception, even if the actual exception was thrown by another (e.g. database driver errors when my ...
0
votes
1answer
57 views
Exception.ToString() path
I'm using log4net to maintain an exceptions log of an application. I realized that the log info shows the file path of the development environment even thought it's not published in the same machine ...
2
votes
1answer
30 views
“Oh noes!” exception in Nancy testing
The inner exception:
{"Unable to locate view 'home'\r\nCurrently available view engine extensions: cshtml,vbhtml,sshtml,html,htm\r\nLocations inspected: ,,,,,,,,views/Store/home-he- ...
2
votes
4answers
50 views
ApplicationException or create custom exceptions?
In my file repository, I will throw the following exceptions when the InsertFile() method is called:
When the upload file size limit is exceeded
When the storage capacity is exceeded
At the moment ...
0
votes
1answer
54 views
Handling Entity Framework SaveChanges() exceptions for cleanup
I have a File Repository library which handles the saving of files onto the server. Along with saving the physical file, a database entry is also recorded.
Below is the insert method.
public ...
1
vote
1answer
107 views
The given key was not present in the dictionary. Even when dictionary.ContainsKey(“given_key”) == true
I have a class that gathers 7-day forecast data from the Bureau or Meteorology and presents it on a web page. A script runs every 30 minutes to get updated data from the Bureau.
The bureau provides ...
2
votes
2answers
25 views
How to propagate an exception across SOAP Web Services?
I have a standard ASMX web service. I want to throw a custom exception and have it be caught on the client side. The only thing that ever comes across is a SoapException. Example:
// Server side ...
0
votes
1answer
123 views
ASP.NET Web API Exception filter - A way to get request url from HttpRequestBase?
I've implemented a custom exception filter to my Web API. It is working as intended, except for one small detail...
In the following code sample, SaveToErrorLog saves exception details and tries to ...
-1
votes
0answers
25 views
in a multithreaded application is it possible for a COMException to return the wrong exception message?
I'm puzzled by a COM Exception that returns information that appears to be irrelevant to the actual problem I'm experiencing. To be more specific, instead of the expected
...
0
votes
1answer
55 views
SEHException not caught by Try/Catch
In a background thread, my application regularly examines a network folder (UNC Path) for application updates. It reads out the assembly version of the file, like so:
Try
newVers = ...
0
votes
2answers
43 views
Win32Exception caught by Application.ThreadException - missing own code
I am getting an unhandled exception somewhere in the Ribbon of the UltraToolbarsManager (Infragistics). But that is not the relevant part I want to ask here. The question I have is: why don't I see ...
1
vote
3answers
39 views
C#, MAF, Unhandled Exception Management in separate AppDomain
Okay, so I have a MAF application which loads up each addin inside of a separate appdomain. This is working fantastic for what I need as it allows me to dynamically unload and reload my addins at ...
0
votes
0answers
18 views
ASP.NET Webservice Marshal.Copy Security exception
I am attempting to make a webservice, one of the functions of which is image editing. In one method that works with a bitmap, I need to call Marshal.Copy(...), however seemingly at that point I get ...
4
votes
2answers
121 views
What exception to throw on invalid object state?
I always missed a built-in exception type in c# which would indicate that an object is corrupted. What do you throw in such cases?
Usually I miss it when I realize that a method, that is supposed to ...
0
votes
1answer
33 views
Handling exception when Worksheet is not present
I'm trying to handle the exception when Worksheet is not present using this code:
int k = blYear.SelectedIndex;
ExcelWorksheet currentWorkSheet;
try
{
currentWorkSheet = workbook.Worksheets[k + ...
0
votes
1answer
61 views
Problems using Mashape API in .NET
I found some great code on the net for using the Mashape API to get a QR code. Here.
Their code works great, but if I try and change it to use another Mashape, I get a
"An exceptions occured ...
0
votes
1answer
40 views
Adding list in list
I have class SellStatement
public class SellStatement
{
public long billNo
public DateTime paymentDate;
public List<string> ProductName;
public List<double> quantity;
...
2
votes
1answer
38 views
Strange localization issue with ArgumentOutOfRangeException
This "problem" will probably be hard to test/reproduce for someone whose Windows version is installed with English as the only language. I'm doing this on a Windows 7 machine installed with "Danish ...
0
votes
2answers
64 views
Throw Database not found Exception
Is there a "built-in" Exception in .NET for DatabaseNotFound that I could use for a program that connects to a database server to perform maintenance tasks?
I feel there should be but I haven't been ...
4
votes
4answers
95 views
Display Exception on try-catch clause
Up to now, whenever I wanted to show an exception thrown from my code I used:
try
{
// Code that may throw different exceptions
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString()); ...
0
votes
0answers
18 views
FOPException is thrown
Exception Message: A table cell must be child of fo:table-row, not
fo:table-body
public string XmlFilePath { get; set; } // The xml file path
public string XslFilePath { get; set; } // ...
0
votes
1answer
50 views
I get the DateTime constructor's ArgumentOutOfRangeException when checking IsDBNull
I have a ODBC data source, one of the columns is a DateTime. If I attempt to do anything with the field (IsDbNull,GetValue,GetValues) I will get an exception if the value is this databases equivalent ...
0
votes
1answer
83 views
C# AutoMapper exception when mapping nullable byte to enum
I'm using AutoMapper (http://automapper.org/) to automatically map one object to the other.
Source object:
public partial class SrcObject
{
public int Id { get; set; }
...
public ...
3
votes
4answers
104 views
Re-throwing the exception of a wrapped object
I use ConcurrentDictionary<TKey, TValue> to implement a ConcurrentSet<T>.
public class ConcurrentSet<T> : ISet<T>
{
private readonly ConcurrentDictionary<T, byte> ...
1
vote
1answer
47 views
Continue using subscription after exception
I was trying out a "type-to-search" Reactive-Extensions sample which takes a string from a textbox (WPF app if it matters) and does a potentially-lengthy server-side search (simulated in my case with ...
0
votes
1answer
27 views
Debugging an installed .NET application
Dealing with an error which only seems to occur with an installed .NET 4.0 application on only about half of the machines the application has been installed on.
Is there any way to debug the ...
0
votes
2answers
62 views
MonoDevelop : “The number of bytes to be written is greater than the specified ContentLength”
I'm trying to develop the sms sending app but it gives an exception "The number of bytes to be written is greater than the specified ContentLength"
here's the code
using System;
using Gtk;
using ...
1
vote
2answers
38 views
Unhandled exception not stopping execution
I have the following code in my application, which is handling the Load event in System.Windows.Forms.Form:
Private Sub frmBillingPoller_Load(ByVal eventSender As System.Object, ByVal eventArgs As ...
2
votes
2answers
106 views
'System.Collections.Generic.IList<object>' does not contain a definition for 'Add' when using 'dynamic' and 'ExpandoObject'
Say that I have a class, Foo, looking something like this:
public class Foo : IFoo
{
public Foo()
{
Bars = new List<dynamic>();
}
public IList<dynamic> Bars { get; ...
6
votes
0answers
72 views
WCF ExceptionShielding Error ID does not match up with handlingInstanceId passed to Handler
I have the following decorated on my service
<ExceptionShielding("MyExceptionPolicyName")>
when a fault exception is thrown, my policy picks up the error and logs in just fine. It takes the ...
0
votes
3answers
43 views
Exceptions inside the lock block
Say, if I have the following block on C# code:
public class SynchedClass
{
public void addData(object v)
{
lock(lockObject)
{
//Shall I worry about catching an ...
0
votes
0answers
59 views
System.AccessViolationException in simple .Net4 program
I have a very simple .NET program, that uses no pointers, unsafe code or third party libraries. But when it is executed as a 64bit release build, it crashes with an AccessViolationException.
This ...
2
votes
0answers
75 views
WPF unhandled exception handler and preserve call stack
I have a WPF application and I need to write a mini dump file whenever my application encounters an unhandled exception for help with debugging. However, every time the exception handler is called, ...
2
votes
4answers
79 views
Exception during xml processing [duplicate]
I'm just referring back to my question here (not yet resolved):
c# Exception The process cannot access the file
The exception is not happening when I'm running in Debug mode, it's only doing it when ...
0
votes
0answers
22 views
ThrowHelper used depending on the runtime environment?
Replicating an issue that occurred in PROD, I found that the stack trace in PROD (app run inside IIS)
System.ArgumentException: An item with the same key has already been added.
at ...
0
votes
2answers
36 views
Mapping an IL dump back to the source code leveraging the CLR20R3 information
I am getting a CLR20R3 error in a running ASP.NET application. And I know in the end I need to be catching this error - clearly - but that's a maintenance task I'll get to after I get this resolved in ...
0
votes
0answers
46 views
Windows 8 - Assembly does not allow partially trusted caller
We copied the binary folder of our application onto a shared directory within our company network.
We allways could start the application there to test it. Now it still works everywhere but on a new ...
5
votes
1answer
169 views
File.Copy error: The requested operation could not be completed due to a file system limitation
After getting more than 4000000 jpeg files in structure we've problem with adding new.
File.Copy throw an exception: The requested operation could not be completed due to a file system limitation.
...
1
vote
3answers
92 views
behaviour of try catch and finally with return statement workflow in c#
I have little doubt about this try, catch and finally with return statement workflow...
This function is used to retrieve employee leave information for supervisor view. It works very well, but if ...
0
votes
1answer
33 views
Will using an API without the capabilities cause my app to terminate or just throw an exception?
I'm working on a piece of code that tries to get as much information as possible from a users device on Windows Phone 8. I noted this quote in certification guidelines
Your app may close ...
0
votes
1answer
53 views
what does it mean when an exception properly handled by the UI thread causes the Windows Form application to quietly exit?
My understanding is that in a windows forms application if the UI thread throws an exception and it is not handled by user code the application will crash in a manner that is obvious to the user. (A ...
0
votes
0answers
54 views
VB.NET - Problems with Sendkey
i have a problem with SendKeys.
I made a Keybinder for an online multiplayer game.
If a key e.g.: Numlock 1 is registred, my software sends the word or letters or whatever in textbox1.
everything ...
4
votes
2answers
137 views
How to understand the JITed code for “using” with exception handling in C#
I've written a very simple class in C#:
class DisposableClass : IDisposable {
public void Dispose() { }
}
static void UsingClass() { // line 31
using (var dc = new ...
13
votes
4answers
297 views
Client-Side CommunicationException while Service works properly
Currently i am facing a problem i do not understand. I have an wcf client that calls a wcf service through several threads at the same time (both on the same machine). Sometimes, i encounter the ...
5
votes
2answers
106 views
Why is exception from impersonated code not caught?
My C# code uses impersonation by calling Win32 functions via P/Invoke
internal class Win32Native
{
[DllImport("advapi32.dll", SetLastError = true)]
public static extern int ...
0
votes
0answers
61 views
Need help on solving xmlexception from System.Xml.Dll
Been trying to figure this out for a while now, using ILDasm. Here is what I've got from the event log:
Fault bucket 50, type 5
Event Name: CLR20r3
Response: Not available
Cab ...
8
votes
3answers
229 views
Checking if a file is in use without try catch?
Is there a way I can check if a file is in use or is not opened by other process without just trying to open it and catching an exception? Is there no service method to test such a thing?
0
votes
2answers
48 views
Does System.Exception have a built-in thrown timestamp?
Is there a way to extract when an exception was thrown from the exception itself, or will I need to manually add this information to the exception?




