The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
151 views

Umbraco Node.getProperty() types

I am setting up a new Umbraco site - this is the first time I have used Umbraco and was wondering how to get the generic properties for the node back as the type I set them as. For example, I have ...
0
votes
1answer
93 views

getting user home folder from JWS signed jar

I'm trying to get the user home folder from a jar launched via JWS. The jar is signed and my JNLP has a line like this <property name="homeFolder" value="@user.home" /> but I still get a ...
0
votes
0answers
162 views

jsp getProperty issue

I'm having a problem getting jsp:getProperty to work in my html page on a Tomcat server. I've been trying alot of example code on my server, but I haven't had any success with that either. I tried ...
0
votes
1answer
127 views

Getting the attached property “Canvas.Left”

I have the following code: this.Object.GetType().GetProperty(this.PropertyName).GetValue(this.Object, null); PropertyName is a string, containing the name of the property I want to get. This works ...
0
votes
1answer
1k views

Why getProperty() returns null?

I have a piece of code defining a property like this: public static final String DEFINED_KEY = "definedKey"; public static final String DEFINED_PROPERTY = "definedProperty"; // [...] File f = ...
3
votes
4answers
725 views

Convert to a Type on the fly in C#.NET

I want to to convert an Object to a type that will be assigned at runtime. For example, assume that I have a function that assigns a string value(from a TextBox or Dropdownlist) to an ...
3
votes
1answer
304 views

Getting an interface from GetPropValue

I want to dynamically get a property value from an object instance. I was able to get the class properties, ordinal types and strings. The delphi source of the GetPropValue does not support ...
1
vote
3answers
359 views

Purpose and usage of “application.path” variable

In the Play! framework source for the main method in Server.java I found these two lines: File root = new File(System.getProperty("application.path")); if (System.getProperty("precompiled", ...
0
votes
2answers
345 views

How do I reliably and consistently get the calculated width style for a VIDEO element?

var vid = document.createElement("video"); vid.src = "big_buck_bunny_640x360.mp4"; document.getElementsByTagName("body")[0].appendChild(vid); console.log(window.getComputedStyle(vid, ...
1
vote
4answers
138 views

Using System.getProperty as a condition

Is it OK to use xxx.equals(System.getProperty(key)) as a condition? Or Am I supposed to use the properties for some other purposes? I have been reading these; ...
4
votes
1answer
2k views

Android KSoap2 how to get property name

I am using KSoap2 for calling web-services for my Android app. I am using following code tto call the web-service. SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); ...
1
vote
3answers
792 views

how to retrieve nested properties in groovy

I'm wondering what is the best way to retrieve nested properties in Groovy, taking a given Object and arbitrary "property" String. I would like to something like this: ...
2
votes
1answer
361 views

Is There a Getproperty or Equivalent Function?

I would like to know if something like this pseudo code: myVar = "functionName" call someObject.(myVar evaluation) which would then be equivalent to: call someObject.functionName is possible ...
0
votes
1answer
328 views

Hows the syntax to getProperty dynamically?

Is this possible and if, how? item.foo = "moo" def x = "foo" item.[x] = "moo"
29
votes
3answers
6k views

BindingFlags.IgnoreCase not working for Type.GetProperty()?

Imagine the following A type T has a field Company. When executing the following method it works perfectly: Type t = typeof(T); t.GetProperty("Company") Whith the following call I get null though ...