Hanno Fietz

5,261
Reputation
843 views

Registered User

Name Hanno Fietz
Member for 1 year
Seen 2 hours ago
Website
Location Berlin, Germany
Age 29

Personally, I don't think an electricity meter has to be on Twitter. But I'm sure we should do a lot more with the metering data that we're able to get now.

So, after spending six years as co-founder and lead developer at dezem who build advanced metering solutions, I founded my own company in 2008 that focuses on scalable middleware powering such systems.

Also see my public CV on careers.stackoverflow.com for some of my background.
6h
asked How do I implement floating licenses in a distributed environment?
6h
revised Is there a way to secure access to bundles in OSGi?
rephrased and extended question, reflecting new insights I had; added 16 characters in body
1d
revised Is there a way to secure access to bundles in OSGi?
added 2 characters in body
1d
asked Is there a way to secure access to bundles in OSGi?
Nov
23
awarded  Popular Question
Nov
18
comment What can I do about ambigous wildcard patterns in Struts?
Guvante, there is no error message. The URL is parsed, and, from a technical point of view, correctly. It just isn't working as I intend it to.
Nov
17
comment What can I do about ambigous wildcard patterns in Struts?
I rephrased my question almost completely after I got a clearer picture of what my problem is. Sorry if that made your answer look weird.
Nov
17
revised What can I do about ambigous wildcard patterns in Struts?
added 221 characters in body; edited title
Nov
17
revised Can i do this in Java?
made link clickable
Nov
17
revised What can I do about ambigous wildcard patterns in Struts?
rephrased question; added 112 characters in body
Nov
17
comment What can I do about ambigous wildcard patterns in Struts?
Yes, I checked that I'm calling the URL I think I am. Appending "/" leads to the whole path ending up in filter. I think my problem depends a lot on some details in how Struts handles this.
Nov
16
revised What can I do about ambigous wildcard patterns in Struts?
edited tags
Nov
16
revised What can I do about ambigous wildcard patterns in Struts?
added 217 characters in body
Nov
16
asked What can I do about ambigous wildcard patterns in Struts?
Nov
12
revised Is Collections.copy broken (in OpenJDK 6)?
added 1 characters in body
Nov
12
comment Is Collections.copy broken (in OpenJDK 6)?
I took "must be at least as long" to mean "must have at least the capacity to contain all items".
Nov
12
comment Is Collections.copy broken (in OpenJDK 6)?
I took "must be at least as long" to mean "must have at least the same capacity", which isn't what it did mean. clone(), as long as it's shallow, is what I want here, but for lists specifically, I can in fact use addAll or the constructor of ArrayList (duh).
Nov
11
revised Is Collections.copy broken (in OpenJDK 6)?
edited tags
Nov
11
comment Is Collections.copy broken (in OpenJDK 6)?
Right, that's even better, thanks.
Nov
11
answered Is Collections.copy broken (in OpenJDK 6)?
Nov
11
asked Is Collections.copy broken (in OpenJDK 6)?
Nov
10
awarded  Nice Answer
Nov
10
comment What’s a good and simple way to backup an SVN repo to an FTP server?
Well, it's a buildin command, it probably doesn't get easier, so I'll just use it. Thanks, I wasn't aware of this.
Nov
10
comment What’s a good and simple way to backup an SVN repo to an FTP server?
RedGlyph in his answer suggested using the hotcopy command, were you aware of that command and is there a reason why you would prefer dump?
Nov
10
comment What’s a good and simple way to backup an SVN repo to an FTP server?
Why are you saying "theoretical"?
Nov
10
asked What’s a good and simple way to backup an SVN repo to an FTP server?
Nov
9
comment How do I change the appearance of nodes in a Tree control in Flex using an extended TreeItemRenderer?
I don'r really get the difference between listData and data, i. e. when to use what, do you?
Nov
9
revised What are recommended strategies for load-testing (i. e. simulating large numbers of clients) server applications in a small shop?
edited title; edited title
Nov
9
revised Loading executable code through <img> or <a> tags?
tags weren't visible
Nov
9
comment Need to use body onload event, but third party JavaScript library has hijacked it.
If you don't want to use jQuery, you could still use it as a reference to how it might be done.
Nov
9
comment Need to use body onload event, but third party JavaScript library has hijacked it.
Now, you're hijacking the handler and Simile loses, right? Shouldn't he also store the value somewhere and call it from inside his handler?
Nov
9
answered Need to use body onload event, but third party JavaScript library has hijacked it.
Nov
9
comment Most elegant way to extract data from multiple lists into a new one in Java?
Cool, but in my case, I didn't want to add yet another library just for that little perk. Went with the interfaces.
Nov
9
accepted Why can’t JAXB find my jaxb.index when running inside Apache Felix?
Nov
9
comment Why can’t JAXB find my jaxb.index when running inside Apache Felix?
This actually turns out to generally be a quite nasty problem in OSGi environments when you're using libraries that aren't designed for OSGi and make assumptions about the classloader they get. This issue is why people claim that Eclipselink is the only JPA provider that works in OSGi (don't know if that's still true).
Nov
9
revised Can I create server-side Java classes, OR mapping, and client-side AS classes from a single model description?
added 82 characters in body; edited tags
Nov
9
accepted How do I get Eclipse to resolve classes generated with Maven 2?
Nov
9
accepted How do I bundle multiple modules and 3rd-party JARs in a ZIP using Maven2?
Nov
9
revised Where is “int main()” in my Flex application?
added 52 characters in body
Nov
9
comment Where is “int main()” in my Flex application?
Months later, I'm somewhat wiser - using events all over now. creationComplete triggers a HTTP request, the returning result triggers update of a data model to which I data bound the control. This seems to be very Flex-y and works great.
Nov
9
accepted How do I get support for GPB in Eclipse?
Nov
9
answered How do I get support for GPB in Eclipse?
Nov
9
comment Where can I find good Flex documentation?
The book is really great and has helped me a lot.
Nov
9
revised What are recommended strategies for load-testing (i. e. simulating large numbers of clients) server applications in a small shop?
edited tags; edited title
Nov
9
accepted Using GPB, how do I make my wrapper classes stop accepting binary messages that aren’t meant for them?
Nov
6
answered Using GPB, how do I make my wrapper classes stop accepting binary messages that aren’t meant for them?
Nov
6
comment Using GPB, how do I make my wrapper classes stop accepting binary messages that aren’t meant for them?
Extending messages didn't work out (because extending Foo means you get different classes all called Foo, not a child of Foo, i. e. you can't have the different extended classes next to each other). Having a wrapper message with a required type and payload field now works fine.
Nov
6
comment Using GPB, how do I make my wrapper classes stop accepting binary messages that aren’t meant for them?
If all fields on all messages are optional, you don't get InvalidProtocolBufferException. At least I didn't, and it took me a while to figure out why my objects were bogus. I expected to get some kind of error if I just try to deserialize the wrong message, but after thinking about it, it now makes sense to me, because I couldn't see how the parser should ever distinguish them.
Nov
6
awarded  Great Question
Nov
5
asked Using GPB, how do I make my wrapper classes stop accepting binary messages that aren’t meant for them?