Reflection is the process by which a program can observe and modify its own structure and behavior at runtime.
3
votes
0answers
107 views
Strange behavior of toolbox compilation when referencing an inner static java class
Supposed I have the following java class:
package com.test;
public class Outer {
public static class Inner { public static final String VAL = "Inner"; }
}
I can reference the VAL constant from ...
3
votes
0answers
132 views
System.Reflection.TargetInvocationException when running Project Hawaii Sample app
I am using the Project Hawaii SDK to create Speech to Text application. I ran the sample project and upon starting the following exception was raised.
System.Reflection.TargetInvocationException was ...
3
votes
0answers
145 views
Graph out message flow in a service oriented architecture (using NServiceBus)
I have a large service oriented system that's using NServiceBus as a messaging bus. I need to produce a graph/flow diagram of where messages are sent, where they're handled, etc.
My plan was to run ...
2
votes
0answers
58 views
Java encompasing class interface through reflection? Workaround for Java Proxy?
Possible duplicate of:
Alternatives to java.lang.reflect.Proxy for creating proxies of abstract classes (rather than interfaces)
Suppose I have this class:
public class MyClass {
public ...
2
votes
0answers
38 views
Pre compiled views are not working
I was trying to use pre-compiled views for good performance, i generated the views successfully and everything is same in compile time and at run time .edmx. Earlier there was mismtach of data ...
2
votes
0answers
100 views
Instantiating a class and running its methods in a different JVM
Let's say I have a class X with a no-arg constructor and a method m that I need to run in a fresh new JVM for wizardry purposes.
My first thought lay in calling it from the command line ...
2
votes
0answers
97 views
Do custom attribute classes inherit the “Inherited” AttributeUsage flag?
Consider the following scenario:
A base attribute class BaseAttribute has an AttributeUsageAttribute specifying that it is not inheritable (Inherited = False).
A derived attribute class ...
2
votes
0answers
142 views
How to check type forwarding for type in mscorlib to system.runtime?
I'm analysing code at runtime and the IObservable appears to be coming from the System.Runtime assembly when running in a .Net 4.5 application.
Now I know IObservable is defined in mscorlib (system ...
2
votes
0answers
49 views
Accessing DataConnectionTracker methods in Android 2.2
To enable mobile data connection for Android 2.3+ I currently use the following code:
Method setMobileDataEnabled = ConnectivityManager.class.getDeclaredMethod("setMobileDataEnabled", boolean.class);
...
2
votes
0answers
173 views
Android Bluetooth cannot connect to Medical Devices with fixed port# - use Java reflection?
I'm trying to develop an Android application for a medical device using Bluetooth SPP. My Android application works as Bluetooth server. The problem is that the medical device (UA-767PBT) may not ...
2
votes
0answers
69 views
Implement a 4g toggle for android (private only)
Im building an application which needs to toggle the networkmode e.g. from 4g to 3g, to simulate a inter-MSC handover. Since this application will be private only, and the device is rooted, I am open ...
2
votes
0answers
83 views
Control when referenced .NET assemblies are loaded
Normally a referenced assembly of an assembly is loaded when the first method from a type in the referenced assembly is executed.
Does it make sense to force loading all referenced assemblies at a ...
2
votes
0answers
196 views
Calling a DLL with reflection and configuration dependencies
I have a service that calls methods in other libraries through reflection. However, some of these libraries have external dependencies such as app.config files that it sometimes uses to perform its ...
2
votes
0answers
84 views
Getting Non-Constant Constructor Arguments from Expression Selector
I have a method that looks something like this:
public static T GenerateProxy<T>(params object[] ctorArgs)
{
return proxyGenerator.CreateProxy(typeof(T), ctorArgs);
}
Basically, it's ...
2
votes
0answers
166 views
Load WPF application from the memory
So this is how you invoke Main() in non WPF applications:
var entry = assembly.EntryPoint;
if (assembly.EntryPoint.GetParameters().Length == 0)
entry.Invoke(null, new object[0]);
else
...
2
votes
0answers
76 views
Run private strong-named assemblies side-by-side
I have an application depending on version 1.0 of Assembly A (which is strongly named and deployed privately in bin folder). The application also loads Assembly B via reflection. The complication is ...
2
votes
0answers
178 views
ReflectionTypeLoadException with null LoaderExceptions and null InnerException
What is the likely cause of a ReflectionTypeLoadException that has both a null LoaderExceptions property and a null InnerException property?
The MSDN documentation reads as if LoaderExceptions will ...
2
votes
0answers
302 views
How to generate a WPF form that allows editing of any object
What I'm trying to accomplish is to dynamically create a form that allows editing all the fields and properties of an object (recursively).
I already managed to do this in some simple cases.
...
2
votes
0answers
157 views
Can we use Reflection to read COM object properties info?
Can we use Reflection to read COM object properties info?
I am trying to get Property Name and Value of a COM object using the below code.
But it fails.
here connection is my COM object.
foreach ...
2
votes
0answers
228 views
Apk and Jar Reflection
I'm develoing an android app that use reflection to read a project library that I made, I exported as APK and Jar extensions, I can read the apk but it fails with the jar it throws a ...
2
votes
0answers
503 views
How to set a default NHibernate CommandTimeOut default value
How can i set an Session.DBCommand.CommandTimeOut NHibernate default value with Castle ActiveRecord?
this config line don't work.
<activerecord >
<config>
<add ...
2
votes
0answers
643 views
NHibernate Non-static method requires a target error message solution
I was getting this error message below from NHibernate. I searched and did not find a clear solution to this error. I stumbled upon a solution and thought I would share. My problem turned out to be ...
2
votes
0answers
178 views
Android: how to Parcel complex classes and their subclasses
Supose these simple classes:
public class Class_A
{
// no fields
}
public class Class_B extends Class_A
{
public float field_1;
public String / int / float / etc...; // dozens of fields
...
1
vote
0answers
44 views
C#: Dynamic type casting to a generic list of an internal type
I am using a third party API and I need to access a private field ("_fieldOfB") of an internal field ("_fieldOfA"). The example below illustrates the composition. The field I am looking for is a List ...
1
vote
0answers
13 views
Disable Notification on installed apps
How to disable this notification on every existing app through my app using either existing API or reflection or modifying sqlite database.
1
vote
0answers
47 views
Get Type from Fully qualified name only in Windows Store App
I have a string containing a full qualified name like MyNamespace.MyType which I know is in a loaded assembly.
I need to get the Type instance of this, in a windows store app.
The issue I'm having ...
1
vote
0answers
17 views
Identify the ObjectFactory method used to create the object
Given an object o which was or could have been created with a JAXB ObjectFactory, what's the best way to find the method in that ObjectFactory which would be used to create the object?
My objective ...
1
vote
0answers
51 views
VB.NET: Overload extension methods of T
I want to create a XML document by the properties of an instance. For that I write two extensions.
<Extension()>
Public Function ToXml(Of T)(ByVal source As T) As XmlDocument
Dim ...
1
vote
0answers
29 views
How to reflect into internal and private nested classes in MonoTouch?
Environment:
MonoTouch (6.2.1.201)
Mac OSX (10.8.3)
iOS Simulator 6.0
I am trying to write a test to make sure that the NSNotifications that I want are being registered with the ...
1
vote
0answers
71 views
Cast reflected object to reflected generic interface
I am working on a project that is built on .NET 4.5, EF5 and GenericRepository.EntityFramework. I am trying to create a publication service that will take some actions on records in an database used ...
1
vote
0answers
66 views
Dynamic HasMany mapping using reflection in Fluent NHibernate
I am using NHibernate 3.3 and trying to map my class hierarchy to DB via reflection as follows:
class Parent
{
public virtual IList<Child> Children { get; set; }
}
class Child
{
public ...
1
vote
0answers
76 views
Manual AST generation in Scala 2.10
In a response to:
Generating a class from string and instantiating it in Scala 2.10
@EugeneBurmako states:
"The example uses manual AST assembly, but it's possible to write a function that parses a ...
1
vote
0answers
97 views
Is it possible to instantiate an instance of class, passed as parameter to generic trait in Scala?
I have the following code, written in Scala 2.10.0:
trait A[T <: B] {
self : { def foo() } =>
val action : ()=>Unit = this.foo _
//wanna make default for this
val construction : ...
1
vote
0answers
98 views
invocationtargetexception during gson.fromJson()
I'm writing a library which does a lot of stuff.
Situation:
in my android project AAA I include the library XXX and derive from an abstract class A (which is located in the library XXX).
When I ...
1
vote
0answers
183 views
Java reflection invoking main method of jar sometimes throws ClassNotFoundException?
I'm invoking another jar file using reflection like this mainMethod.invoke(null, new Object[] { passargs }); (basic stuff). It works for most jar files, but for one I keep getting a ...
1
vote
0answers
52 views
What is a good unique identifying property of a .NET Method Info
When storing Method Info data, from a Reflection read of a set of .NET assemblies, what would be the best logical key to use from the Method Info instance, to separate it from like name Methods in ...
1
vote
0answers
68 views
creating assembly to generate code (reflection), but getting unknown exception
I am using the following to generate a method at runtime:
System.Reflection.Assembly currentAssembly = System.Reflection.Assembly.GetExecutingAssembly();
System.CodeDom.Compiler.CompilerParameters ...
1
vote
0answers
99 views
How to convert MSIL code into C#?
I want to print method body on my web page using reflection. See attached image file, in that there is a GetAge method. When I select this method from the dropdown than body part of this method should ...
1
vote
0answers
55 views
Temp AppDomain and File Locking
I have successfully created a class that inherits from MarshallByRefObject.
The above class also implements an interface and is invoked remotely from the main AppDomain. DTOs were also created to ...
1
vote
0answers
63 views
How to pass va_list between method IMPs? (objective c)
I'm trying to swizzle a function and call the original implementation with the function args.
the new IMP is of the form:
static id WrapperFunction(id self, SEL _cmd, ...) {
va_list args;
...
1
vote
0answers
84 views
Raise an event via reflection
well ive read a lot of posts here and there about why it isnt reliable to raise events via reflection.. my problem is this.. im using PostSharp to define an interface which allows a class to notify ...
1
vote
0answers
78 views
Best way to clone properties of disparate objects
I have an MVC3 application that needs to sync view models with database models. I found myself writing way too much code to copy properties back and forth between the different objects. I avoided this ...
1
vote
0answers
181 views
sbt can't find scala.reflect.Manifest when getting Unidoc.scala settings with scala 2.10.0
I just updated my project to Scala 2.10.0 using SBT 0.12. But now, when running sbt, I get the following error:
java.lang.NoClassDefFoundError: scala/reflect/ManifestFactory$
at ...
1
vote
0answers
874 views
Could not get a field value by reflection getter of
I have an application that generates code and hibernate annotations as well.
When I use the generated code outside the application it works fine but when I used it inside the application, it gives an ...
1
vote
0answers
114 views
Java Reflect Generic Class DAO Type
I want to access the Class Type name in order to specify the runtime type. For example
DAO<?> i = DAO<?> DOA.class.forName(”Student”).newInstance();
What I am trying to do is I have a ...
1
vote
0answers
94 views
vb.net remove private method from listening to button click event in a private control
I have this FindButton_Click method in a private Control which is causing a crash. I have added a new method to handle the click event. I want to stop this FindButton_Click method from getting called ...
1
vote
0answers
34 views
Is there a way to get the expression in a string in vb.net
LogEvents(System.Text.Encoding.UTF8.GetString(queryPlaces.ToBson))
I want to be able to output not just the content of System.Text.Encoding.UTF8.GetString(queryPlaces.ToBson) but also the actual ...
1
vote
0answers
51 views
Security when compiling custom language to Java
I'm compiling user-inputted code in a custom language to Java. The resulting code, as of now, can only have one class with static methods. Because the user code is insecure, I've set up a security ...
1
vote
0answers
138 views
Alternative to using PropertyPath to find a DependencyProperty + instance?
I am trying to write some generic code that augments a Storyboard. As part of that, I want to be able to get the DependencyProperty that is referenced by TargetProperty. The purpose is to set the ...
1
vote
0answers
63 views
Loading a weak name assembly from AppBase
I want to load a assembly at run time. And the only information which I know about the assembly is its name (weak name). I have read in one of the books that all assembly with weak name are present in ...


