Tagged Questions
The targetinvocationexception tag has no wiki summary.
4
votes
2answers
328 views
ASP.NET yellow screen of death - where does it get the stack trace from?
I have a remoting-type set up within my application where I avoid TargetInvocationExceptions and grab the inner exception. I invoke the internal PrepForRemoting method on the Exception class to ...
4
votes
1answer
337 views
log4Net issues with NUnit (Tried v2.5.7, 2.5.2, 2.4.8, 2.4.7)
I'm getting an error (see bottom of post) when running NUnit against a production code assembly. The production code assembly has a reference to a third party framework that uses log4net internally ...
4
votes
2answers
1k views
Why is TargetInvocationException treated as uncaught by the IDE?
I have some code that is using reflection to pull property values from an object. In some cases the properties may throw exceptions, because they have null references etc.
object ...
3
votes
4answers
496 views
How to rethrow the inner exception of a TargetInvocationException without losing the stack trace
I have many methods which are calling using Delegate.DynamicInvoke. Some of these methods make database calls and I would like to have the ability to catch a SqlException and not catch the ...
2
votes
2answers
106 views
C# Deserialization - Is it safe to catch TargetInvocationException?
I am using BinaryFormatter to serialize and deserialize some objects. The structure of those object is as follows:
[Serializable()]
public class SerializableObject : ISerializable
{
public void ...
2
votes
2answers
559 views
TargetInvocationException on Image update in WPF
I've built a WPF Control which displays an Image. Now I would like to change that image at a very fast rate.
I've build an ImageContainer class which holds the image and has a ChangedEventHandler ...
1
vote
1answer
344 views
EPPlus 2.9.0.1 throws System.IO.IsolatedStorage.IsolatedStorageException when trying to save a file bigger than ~1.5 MiB from a SSIS package
The problem
When I try to save a file over ~1.5 MiB with EPPlus ExcelPackage.Save() throws a System.IO.IsolatedStorage.IsolatedStorageException.
The explanation
I'm creating a SSIS package with ...
1
vote
2answers
1k views
C# multithreading - 'System.Reflection.TargetInvocationException'
I started multithread programming in C# (WPF) few days ago and here is a problem which I can't solve... I'm using this piece of code:
void timer_Elapsed(object sender, ...
1
vote
1answer
147 views
How are these two invocations different?
I'm trying to modify a combo box on my WinForms application, and I'm getting some strange behavior. I'm trying two methods:
Here is the method I need to invoke:
private void ...
1
vote
1answer
140 views
Error Modifying MOSS web part
Whenever I try to edit the shared properties of my custom web part in sharepoint 2007, I get the following error:
Exception has been thrown by the target of an invocation.
at ...
1
vote
2answers
2k views
Code-First Entity Framework - error creating SQL CE DB
I have been using Entity Framework CTP with Code-First as in this tutorial by Scott Guthrie and another by Scott Hanselman (can't post the link, but google "Simple Code First with Entity Framework 4 - ...
1
vote
2answers
297 views
Getting an exception when site is pushed to production
This is probably a shot in the dark but here goes nothing...
I have a Sitecore 6 site that I am developing locallty. When I pushed it to the production server, I now get an exception when trying to ...
0
votes
1answer
80 views
thrown TargetInvocationException after calling sentiment API
We are developing Silverlight web application to display the tweets on the map and analyse the tweets by using sentiment API. we used sentiment API without problems for 3 or 4 weeks. Then, we ...
0
votes
2answers
109 views
C# TargetInvocationException - (should not be there?)
I am trying to make a simple app in WPF, and i've run into a bit of an anomaly. I have 2 classes: a partial class (for the WPF Window), and another public class I have set up myself. When I try to ...
0
votes
1answer
197 views
DispatcherUnhandledException with Class Library called via Reflection
I Load a WPF MVVM Class Library with reflection.
I also need an exception Handler as described here.
Since this is a Hosted WPF App, I can't use App.xaml !
It's why I implemented all needed in the ...
0
votes
0answers
89 views
TargetInvocationException using stringbuilder AppendFormat
The following code works just fine.
Dim s As New StringBuilder("{")
s.Append("""items"": [")
Dim var1 As String = "Product's Name"
s.Append("{""productName"":""")
s.Append(var1)
s.Append("""")
The ...
0
votes
0answers
243 views
Visual C++ System.Reflection.TargetInvocationException
I was looking for the sollution for a while, but I could not find any help. My problem is that during debbuging my project in Visual C++ CLR I got some errors:
A first chance exception of type ...
0
votes
1answer
505 views
TargetInvocationException on multiple WCF-service calls
I'm using SL 4 and a .net-4 WCF service with a PollingDuplexHttpBinding. Calling the service and calling the client back from the service works fine. But as soon as I call the service, say 15 times ...
0
votes
2answers
568 views
Trapping exceptions for logging in a C++ CLI app
I'm trying to trap any and all exceptions in a C++/CLI app so that I can log and record them (including a stack trace). So far I have some code which looked promising:
[STAThreadAttribute]
int ...