1
vote
4answers
59 views

Java Reflection - how to set value for the class which are extended from One and Two

Goal : set the value for a class fields as well the extended class fields Example : public class CreateRequisitionRO extends AbstractPortfolioSpecificRO {....} i am able to set value for the ...
1
vote
1answer
91 views

Pseudo code to recursively construct java object using Reflection

I am trying to write code for function that will help me to deep print a java code that will help me with the construction of a given new java pojo's objects. function will get the class type and it ...
0
votes
2answers
28 views

display all array elements of a method param types

I want to get all the element of the array which contains the Param types of a method (getted dynamically with Java.reflect), here's the code if I have 2 params in the method : Method testMethod = ...
0
votes
2answers
140 views

how to pass multiple parameters to a method in java reflections

Hi i am using reflections to achieve something. I have been given class name, method name of that class and parameter values that needs to be passed to that method in a file(Take any file. Not a ...
1
vote
1answer
54 views

How to set a property value from an expression?

I need orientation on this scenario. For example I have this class: public class Schema { public string Value {get; set;} } On the front end the user will have the chance to enter the value for ...
0
votes
2answers
68 views

Add a method dynamically to an object in Objective-C?

I want to do this JavaScript in Objective-C: var obj = {}; obj.myFunc = function() { ... }; Is this possible? Or can methods only be added to a class in Objective-C and not an object? I.e. I found ...
7
votes
2answers
54 views

Attempting to bind a dynamic method on a dynamically-created assembly causes a RuntimeBinderException

I have a handy utility method which takes code and spits out an in-memory assembly. (It uses CSharpCodeProvider, although I don't think that should matter.) This assembly works like any other with ...
2
votes
1answer
77 views

How to implement dynamic feature in .net 3.5

How to implement this behavior in .NET 3.5, where there is no dynamic keyword. Guid CLSID_ShellApplication = new Guid("13709620-C279-11CE-A49E-444553540000"); Type shellApplicationType = ...
1
vote
1answer
60 views

dynamically cast and invoke in Java

I am using a bit of Reflexion in my WebApp. What I am trying to do is invoke a method dynamically after doing type case - which is also not know at compile time Here is the structure of my code: ...
-5
votes
1answer
44 views

Is it Dynamic Casting/ Converting or Reflection C#.NET

Please review my code: /* For the answer, OK to use C#.NET 4.5 - This code is to explain the matter. Can be related to Dynamic Casting/ Converting/ Reflection or Covariance & ...
0
votes
1answer
28 views

Generating a service implementation dynamically

In my company, our service implementations basically just pass the call back to the business layer, which does the actual processing. So, for example, if we have a service contract that looks like ...
2
votes
2answers
103 views

Dynamically Add C# Properties at Runtime

I know there are some questions that address this, but the answers usually follow along the lines of recommending a Dictionary or Collection of parameters, which doesn't work in my situation. I am ...
1
vote
5answers
98 views

Can C# constraints be used without a base type?

I have some classes with common properties, however, I cannot make them derive from a base type (LINQ-to-SQL limitations). I would like to treat them as if they had a base type, but not by using ...
2
votes
1answer
95 views

How to attach event to dynamic object or COM object

I think this article has the same problem with me. However, there's no workable solution for my case. I'm using Windows Media Player ActiveX in my program. For some reason, I don't want to add a ...
0
votes
2answers
85 views

cast to a variable type

Is it possible to cast from a Dynamic or an Object to a variable type? The target variable type is one generic class, only the specific data type varies. I'm looking for abstract solution, but the ...
-4
votes
3answers
131 views

C# how Set property dynamically by string?

First of all I'm not into programming, but could figure out the basic concept up to my needs. In blow code, I want to set the property by name "Gold" in something like: _cotreport.Contract = ...
7
votes
5answers
133 views

Dynamically Compose a Class in C#

Is it possible to dynamically compose a class, "Class D", from the methods contained in Classes "A, B and C"? For instance. Class A, B and C have public methods named such that they can be ...
3
votes
2answers
96 views

Creating fields dynamically java

i was wondering if their is any way to dynamically create a static field for a class during run-time using reflection or a related API. If needed i can use the java native interface to accomplish ...
0
votes
1answer
55 views

Initialize classes of dynamic types

I have a method where I need to dynamically change the class used depending on user settings as below, class dEnvelope needs to have its properties initialized as well to fill all subclasses and used ...
0
votes
0answers
78 views

Accessing dynamically created objects in C#

I have a project where I am creating dynamic objects (A list of parameters, taken from an XML file and loaded into a dictionary). The loading and object creation part is being done by using c# scripts ...
1
vote
1answer
76 views

Primitive object size in java/scala and 'as<SomePrimitive>Buffer() methods invocation

My objective is generalize shapes creation from Android OpenGL ES tutorial here: http://developer.android.com/training/graphics/opengl/shapes.html It looks like this right now: val squareCoords = ...
0
votes
1answer
72 views

Dynamically invoking RavenDB Statistics method regardless of query source

RavenDB provides 2 APIs for querying data, IDocumentQuery<T> for advanced lucene query and IRavenQueryable<T> for a strongly typed linq provider model. They share a method called ...
0
votes
1answer
48 views

Reloading dynamic code / reloading type

I ran into some issues in my current project and I'd really appreciate if someone could provide me with some insight, or possibly advice. My project is a service, that is executing user scripts. ...
2
votes
2answers
121 views

c# dynamic and extension method solution?

I have a method in Base class which calls ( by reflection to another method). type.InvokeMember(context.Request["MethodName"], System.Reflection.BindingFlags.InvokeMethod | ...
2
votes
2answers
186 views

Why reflection does not find property

I have the class: class Person { public string Name { get { return "Antonio"; } } } and the Code: IEnumerable<object> uncknownObject; uncknownObject = ...
4
votes
2answers
127 views

How to use reflection and abstract objects to dynamically load classes?

I'm building a protocol handler. The protocol may support an unknown set of request types, and I will have a single class that implements each request type. These request handler classes will extend a ...
5
votes
2answers
218 views

Passing data between objects in c#

I'm developing a Desktop Applicaiton which is akin to a plugin based system. I have a client module, that will load a DLL containing a 'Machine' object. Thereafter the 'Machine' object is manipulated ...
0
votes
3answers
59 views

Python: Invoke class & class methods by name with using eval

class Test: @staticmethod def call(): return def callMethod1(): return def callMethod2(): return var methodName='Method1' I want to invoke callMethod1 or callMethod2 in call() ...
2
votes
1answer
47 views

Init lazy property with dynamic property

I would like init a lazy property dynamically with reflection. I loop on my object properties and I want to create a lazy loading of this property like this : Lazy<propertyInfo.propertyType> = ...
0
votes
3answers
164 views

PetaPoco - Property names from a dynamic type

I'm attempting to return names of properties of returned from database dynamic type: var d = mDataAccess.Single<dynamic>("select col1 = 'asd', col2 = 'qwe'"); object o = d; var props = ...
1
vote
1answer
877 views

dynamic JContainer (JSON.NET) & Iterate over properties at runtime

I'm receiving a JSON string in a MVC4/.NET4 WebApi controller action. The action's parameter is dynamic because I don't know anything on the receiving end about the JSON object I'm receiving. public ...
1
vote
1answer
599 views

Add a property at runtime to an existing object by using propertyBuilder

An object has some properties , now at runtime -- when a condition is met .. I want to add new properties to this object . "DynamicObject" cant be ustilised since i wont be knowing the property Names ...
1
vote
1answer
166 views

Creating a method with Reflection.Emit, and then invoking it

This sounds like such an obvious thing but I am having a lot of difficulty. Basically, what I'm doing is generating a method using Reflection.Emit and I then want to call it. So far, I have the method ...
1
vote
1answer
234 views

Exception while dynamically creating assemblies using DefineDynamicAssembly on non-current AppDomain

I want to dynamically create assemblies in the integration tests for the purpose of testing some assembly manipulation classes. If I use the following code to create the testing assemblies: var ...
4
votes
1answer
92 views

Dynamically executing delegates

I have a class which is basically a message handler, it accepts requests, finds a processor for that message type, creates an appropriate response and returns it. To this end, I have created a ...
0
votes
1answer
45 views

How to dynamically generate an implementation of an interface [closed]

Let's say I have an interface that provides connection properties for a server: public interface ServerConfig { String getHostname(); int getPort(); } Is there any way to dynamically ...
4
votes
1answer
148 views

Dynamic keyword does not work with IoC but classic reflection does

I have made a little CQRS API for our system I tried to replace some reflection code by using the dynamic keyword but it does not work Each command handler is Generic CommandHandler<TCommand> ...
0
votes
1answer
89 views

Run unit tests on dynamically created DLL

I am thinking on how to implement this , and seems like my knowledge is too poor to understand the implementation. I have a code that compiles source code to DLL. Then I need somehow to run Unit ...
1
vote
2answers
117 views

General Linq Data Method

I would like to create general method that gets data from Linq based on given parameters such as: table , field1 and field2. one method that will be used instead of these 2 specific ones for example: ...
3
votes
3answers
278 views

Call dynamic methods using reflection in C#

I have a DynamicObject-based class that implements an interface dynamically (via TryGet* and TryInvoke*). I want to call the methods that it implements using reflection. The problem is that it throws ...
0
votes
1answer
30 views

.NET Dynamic Decision to Call Similar Classes?

C# on .NET 4.5: public Interface IMyInterface { public string DoSomething( string input1 ) } public MyClass1 : IMyInterface { public string DoSomething( string input1 ) ...
-1
votes
1answer
149 views

Dynamically injecting attributes into java any java object?

Is it possible in java to declare and inject and instantiate a class at runtime? I am attempting following code: public static void t4() { Object o = new Object() { private String ...
0
votes
1answer
365 views

C# use reflection to get method name [duplicate]

Possible Duplicate: get methodinfo from a method reference C# This is most likely something simple but so far I have not come up with anything on how to do this. I want to be able to get ...
0
votes
1answer
60 views

How to get started with taking a dynamic model class and filling it with data

I have a small routing engine. It matches patterns and populates a dictionary of route-parameters. So /blog/{action}/{id} will match /blog/view/123 and put 123 as the value to the key of id in a ...
1
vote
1answer
177 views

C# Late Binding and dynamic keyword won't work together

I'm trying to follow the examples on the book Pro C# 5.0, and I've stumbled upon one that I cannot make work: static void Main() { Assembly asm = Assembly.Load("CarLibrary"); Type MiniVan = ...
4
votes
1answer
127 views

Dynamic creation of classes in Java [duplicate]

Possible Duplicate: Dynamically create classes in Java I have a query regarding Reflection concept in Java. I am trying to create a SAX XML parser in Java. What is required to be done is I ...
1
vote
1answer
400 views

Creating dynamic web forms in ASP.NET

My project aims to provide the end user the ability to dynamically design forms in run-time. That would be something like a simple web based IDE to design web-forms. The end user should be able ...
5
votes
2answers
148 views

C# dynamic type causes Console.WriteLine to be resolved with reflection in IL

I've been playing around with some C# statements in LINQPad with a view to understanding what intermediate language code is emitted. I first tried the following code: var Container = new {Name = ...
1
vote
2answers
504 views

Call random method of random class in java

I am working on a training program that has a Training class, with a function that returns a random method (one of the exercise types). This generic class is extended by some specific classes, wich ...
0
votes
1answer
247 views

How do I update single field value using Reflection in LINQ

I receive two variables from the client postback which match 'fieldname' and a 'value'. The fieldname could be one of 50 fields I have within a db table column. How would I use reflection to ...

1 2 3 4 5