Tagged Questions
The missingmethodexception tag has no wiki summary.
6
votes
4answers
445 views
Why is it not possible to catch MissingMethodException?
I have a dependency on .NET 2.0 SP2 in my ClickOnce deployed application
(the ApplicationDeployment.CurrentDeployment.CheckForDetailedUpdate(false) method is SP2 only).
I would like to check whether ...
4
votes
10answers
8k views
Activator.CreateInstance can't find the constructor (MissingMethodException)
I have a class which has the following constructor
public DelayCompositeDesigner(DelayComposite CompositeObject)
{
InitializeComponent();
compositeObject = CompositeObject;
...
3
votes
2answers
2k views
Setting platform target to x86 on my x64 laptop prevent some WPF types to load properly
I have a x64 machine running Windows 7 64 bits. It seems I have a very weird situation since the beginning of the week.
If I build and run a WPF application with platform target set as x86, I got a ...
3
votes
4answers
288 views
MissingMethodException when opening a form in the designer; runtime works fine
Let's say I have a projoct A with a class A that has this property:
public bool IsConnected
{
get { return m_isConnected; }
private set { m_isConnected = value; }
}
In ...
2
votes
1answer
407 views
Get Visual Studio to deploy dbnetlib.dll on Windows CE
I'm developing a device application, using a connection with a 'regular' Sql Server 2005 (not a Compact DB). Whenever I try to open SqlConnection on Windows CE (a Datalogic Memor CE), I’m getting a ...
2
votes
2answers
534 views
How to do action injection for MVC 3 using Autofac?
I'm creating an ASP.NET MVC 3 application trying to take advantage of controller action injection as described here.
Controller constructor injection works without any issues, but I can't seem to ...
2
votes
1answer
178 views
Grails Webflow errors on first access
I've developed a simple webflow in Grails (mostly to experiment with using webflows- its a bit overkill for this case). After some trials and tribulations with Serializable objects, I have it working ...
1
vote
0answers
245 views
Excel.Worksheet.ListObjects.Add(…) throws HRESULT: 0x80020003 (DISP_E_MEMBERNOTFOUND)
Could anyone tell me why a call to ListObjects.Add() would be throwing a member not found exception? If I call GetEnumerator() on the same object that works fine, as does the Count property (zero as ...
1
vote
1answer
110 views
Why am I getting a MissingMethodException with querying the TableServiceContext?
I am trying to query a Azure Table Storage. For that I use the following two methods:
TableServiceContext:
public IQueryable<T> QueryEntities<T>(string tableName) where T : ...
1
vote
1answer
272 views
MissingMethodException w/ Mono
I am aware that typically, MissingMethodException in Mono means that you are referencing a part of the framework that isn't implemented in Mono, even though it is available in the Microsoft .NET ...
1
vote
1answer
77 views
reading Google calendar values
I have set an event successfully using
myEntry.setTitle(new PlainTextConstruct("TEST"))
myEntry.setContent(new PlainTextConstruct("See how much text will fit in there"))
Then I have successfully ...
1
vote
2answers
876 views
MissingMethodException in C# Program
I wrote a Windows Form Application in C# and it works well for my computer. But on another PC, an error occurs when I try to do some stuff.
MenuItem_Click Event Handler
private void ...
1
vote
2answers
467 views
What next step should I take to fix MissingMethodException while debugging?
I'm calling some VB.NET code in one assembly from C# code in another assembly. The code builds fine, but I'm getting MissingMethodException when I make the call.
Usually, according to the Stack ...
0
votes
1answer
40 views
InsertOnSubmit() causes MissingMethodException
I'm trying to implement SQL CE in a WP7 Mango project, but now I'm encountering this error when I try to insert/save an object to my DB.
My code below:
public static void Save(MyObject myobject)
...
0
votes
4answers
60 views
MissingMethodException in Grails Bootstrap on Tomcat
after updating my grails app's security plugins, i get the following error when deploying to tomcat:
2012-01-17 09:13:04,970 [pool-2-thread-1] ERROR context.ContextLoader - Context initialization ...
0
votes
2answers
100 views
RavenDB In Memory database errors: Method not found: 'Raven.Json.Linq.RavenJObject
Im having Trouble setting up an in memory database using RavenDB.
The error I get is: I get is:
SetUp : System.MissingMethodException : Method not found: 'Raven.Json.Linq.RavenJObject ...
0
votes
4answers
76 views
Grails: ConfigObject.plus() not available in integration test
I am testing a service which is using config attributes and concatenates it to a string, like that:
GrailsConfig.config.test.directory + System.getProperty('file.separator')
+ <filename>
...
0
votes
1answer
69 views
HTTPBuilder get method with closure parameter return MissingMethodException
below code:
def http = new HTTPBuilder( 'http://twitter.com/statuses/' )
http.get( path: 'user_timeline.json',
query: [id:'httpbuilder', count:5] ) { resp, json ->
println resp.status
...
0
votes
0answers
188 views
.NET Framework 3.5 Client Profile - Missing method System.Windows.Threading.Dispatcher.BeginInvoke(System.Delegate, System.Object[])
My application targets the .NET Framework 3.5 client profile and my setup is configured to install this framework using the online installer, but sometimes (at 3 users out of 12000) the application ...
0
votes
1answer
166 views
NHibernate 3.1: MissingMethodException when calling LambdaExtensions
Since upgrading from NH 3.0 to 3.1 I've been having some trouble using the following code:
criteria = session.CreateCriteria<User>()
.Add(SqlExpression.InG<User, int>(user => ...
0
votes
2answers
183 views
Checking what version of .NET is required to run my code
I am writing a code base in C#, and have had issues with test PC's not having the correct service pack of .NET 3.5 installed to run the code (the same issue as occuring here: ...
0
votes
2answers
1k views
MissingMethodException when running application on different computer
I have a problem where I compiled my application on Visual Studio 2010 while targetting the .NET Framework 3.5, deployed it to a client server, only to find it gives me the following error:
...
0
votes
1answer
94 views
ASP.NET troubles with updating DataGrid binded to custom DataTable
I bind custom DataTable to DataGrid through ObjectDataSource, where i use SelectMethod and UpdateMethod. SelectMethod working great, but when I try to update row it's breaking by ...
0
votes
1answer
544 views
Where is this System.MissingMethodException occurring? How can I tell?
I am a newbie to ASP.NET MVC (v2), and I am trying to use a strongly-typed view tied to a model object that contains two optional multi-select listbox objects. Upon clicking the submit button, these ...
0
votes
0answers
710 views
How to get values from different resource files,instead of using a Case or If/Else Condition (Asp.net)?
Different resource files meaning i have different resource files having with no culture,they are not english,french,german files.
I get an exception when i try to do:
Dim res As ...
0
votes
4answers
560 views
.NET MissingMethodException occuring on one of thousands of end-user machines — any insight?
This issue has me baffled, it's affecting a single user (to my knowledge) and hasn't been reproduced by us...
The user is receiving a MissingMethodException, our trace file indicates it's occuring ...