Re: Subversion is now an official ASF project!

2010-02-18 Thread Eelco Hillenius
Congrats! Subversion looks way more inviting when it has Apache in front of it ;-) Eelco On Wed, Feb 17, 2010 at 1:16 PM, Greg Stein gst...@gmail.com wrote: Hi all, The ASF Board just voted to approve the graduation of Subversion from the Incubator. We are now an official project of the

Re: best way to detect session termination

2010-02-15 Thread Eelco Hillenius
ther error message java.lang.IllegalStateException: you can only locate or create sessions in the context of a request cycle. Do you know how I can achieve this? Andreas -Original Message- From: Eelco Hillenius [mailto:eelco.hillen...@gmail.com] Sent: Saturday, February 13, 2010 7

Re: best way to detect session termination

2010-02-13 Thread Eelco Hillenius
http://www.xyzws.com/Servletfaq/when-do-i-use-httpsessionlistener/7 Eelco On Sat, Feb 13, 2010 at 8:38 AM, Andreas Lüdtke sam.lued...@t-online.de wrote: I would like to detect the termination of the session to set the lastAccesTime in the user profile. This should also happen if the session

Re: DI with Heavy Weight Objects: Initialization and Recovery (or re-init)

2010-02-10 Thread Eelco Hillenius
This is actually applicable to Socket Producer/Consumers, Database failovers, etc.., hence the post.  My sense is that implementing Providers for each heavy weight object is the way to go, using a Callable in a separate thread to re-connect in the get() method. The problem of re-establishing

Re: Guice + Warp + Hibernate = Session Closed

2010-02-02 Thread Eelco Hillenius
for servlet requests. *If* you're not in a servlet request, using WorkManager directly is one of the ways you can do it. Eelco On Tue, Feb 2, 2010 at 1:55 PM, Eelco Hillenius eelco.hillen...@gmail.com wrote: Keep in mind though, that you want to call beginWork before calling any @Transactional

Re: wicket osgi (not Pax)

2010-01-29 Thread Eelco Hillenius
In any case, this is getting REALLY off topic... ;-) On the contrary; this is really helpful for OSGi n00bs like me. Thanks for replying everyone. Eelco - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: wicket osgi (not Pax)

2010-01-27 Thread Eelco Hillenius
Is there a How-to for OSGI and wicket, not from pax I managed to install jetty servlet api in equinox...now I have to install wicket somehow Good luck! Due to serialization issues, it's not an easy problem to solve. I don't know of any how-to. All I can say is that you have a long road

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Eelco Hillenius
The problem i have is adding components to the Window/tab because there is not existing markup. Use panels as place holders. They can contain anything you like at runtime including nothing at all. Rinse and repeat. Eelco - To

Re: Why @Inject?

2010-01-25 Thread Eelco Hillenius
His article is forgettable, but nobody ever forgets an open-source flame war. Let your community speak for itself, as I'm sure it will.  ;-) Though come on, anything without a bit of arguing every now and then tends to get boring :-) Eelco -- You received this message because you are

Re: Maven users survey

2010-01-21 Thread Eelco Hillenius
6. In eclipse we just start Debug as Web application. (with all libraries manually copied into war/WEB-INF/lib) This is our main problem, and I don't think it is related to only maven builds. Instead of using the project's class path including references to other projects and external jars

Re: Configuring two instances of the same class

2010-01-16 Thread Eelco Hillenius
You could use a provider and let it construct the appropriate one using the parameter you get through @Named. You can cache instances with the provider if you want. Eelco 2010/1/16 Willi Schönborn w.schoenb...@googlemail.com: On 16/01/2010 18:02, Kartik Kumar wrote: This may help.

Re: Singleton by default

2010-01-07 Thread Eelco Hillenius
that. So it is very strange for me that Guice's default scope is new. Imho this is a good default because it is the safest one. Being explicit about whether something is a singleton forces developers to think about the consequences. It may also be more efficient for objects that are cheap to

Re: guice without annotations

2009-12-31 Thread Eelco Hillenius
I have no problem with annotations in general.  Here are my concerns: - don't want code to depend on guice; jsr would be better here, for the @Inject; but this issue is minor compared to the others They are annotations, not interfaces. - 3rd party code (or any code which I can't or shouldn't

Re: Tag Oriented Development

2009-12-25 Thread Eelco Hillenius
On Tue, Dec 22, 2009 at 7:59 PM, Altuğ B. Altıntaş alt...@gmail.com wrote: In business, decision makers choose standards Maybe obig conservative corporations. On the other hand, there are plenty of examples of companies that were able to have an edge over competition by choosing languages and

Re: Tag Oriented Development

2009-12-22 Thread Eelco Hillenius
I love Wicket and the natural approach it offers to do web-development... and I have been pushing hard to use it whenever possible...  but on the real world it is not enough to be an excellent product to gain wide acceptance...  Does last sentence ring a bell? I think we've gained pretty wide

Re: Spring/Wicket/Hibernate testing driving me banana nuts

2009-11-17 Thread Eelco Hillenius
So in typical web applications, people would install a session filter (like https://www.hibernate.org/43.html), which would open a session at the start of a request, and close it afterwards. You probably need to find an alternative for that filter in your test code. Eelco On Tue, Nov 17, 2009 at

[jira] Commented: (AVRO-200) Let Utf8 implement java.io.Serializable

2009-11-16 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12778545#action_12778545 ] Eelco Hillenius commented on AVRO-200: -- I'm using the introspection based API

[jira] Created: (AVRO-200) Let Utf8 implement java.io.Serializable

2009-11-15 Thread Eelco Hillenius (JIRA)
Reporter: Eelco Hillenius Priority: Minor Fix For: 1.2.1 Is there any reason that Utf8 is not serializable? I can't think of any problems with letting it implement the Serializable interface. Which I would like because then I can send my Avro objects over

Re: Any issues using @SpringBean in WebApplication

2009-10-29 Thread Eelco Hillenius
Is there an impact on performance if Spring beans are injected in a WebApplication and then shared for use in WebSession and WebPages (as opposed to injecting directly in WebSession and WebPages)? Sharing them (just don't keep references in your components) should be slightly more efficient.

Re: Any issues using @SpringBean in WebApplication

2009-10-29 Thread Eelco Hillenius
Hi Eelco -- My colleague and I were thinking that putting them all in the WebApplication would make it easier to mock services for unit testing with WicketTester. Alternatively, you could use e.g. InjectorHolder.setInjector(new MockSpringInjector()); like is documented in

Re: migrating to 1.5

2009-10-29 Thread Eelco Hillenius
Do you guys have any early indication of what the migration impact will be like? I don't know if it is up-to-date, but: http://cwiki.apache.org/WICKET/migration-to-wicket-15.html Eelco - To unsubscribe, e-mail:

Re: Replacing a panel with another panel

2009-10-28 Thread Eelco Hillenius
I am trying to replace a panel with another panel.  The replacement works the first time.  The next time I click on the replacement link, I get an exception. java.lang.IllegalStateException: This method can only be called on a component that has already been added to its parent. My guess is

Spring integration with Guice with interface and implementations separately

2009-10-26 Thread Eelco Hillenius
Hi, I'm looking for advice on how to best integrate Spring with Guice. Basically, I want to be able to use Spring managed modules with Guice managed ones. Guice Spring does that, but the implementation is a bit simplistic. Particularly, the (very typical) case where you'd define the implementing

Re: Wicket Component Overview

2009-10-16 Thread Eelco Hillenius
hmm.. no image attached.. You can't send attachments to the mailing list (true for most public mailing lists); Apache drops 'em. Eelco

Re: Open Source projects using Wicket

2009-10-16 Thread Eelco Hillenius
push: new Model(myObject), which will keep a reference to the object for the entire life span of the component pull: new LoadableDetachableModel() { protected Object load() { return someService.getItFromSomewhereElse(); } } The difference is that with pull, you need to know the model

Re: Open Source projects using Wicket

2009-10-15 Thread Eelco Hillenius
Pushing definitely is more performance efficient - you know exactly when and where you push it and it's easy (happy-day-scenario) to optimize. Partly the ease of optimization results from difficulty of making complex relations. I would expect push to put more load on your servers due to

Re: True?

2009-10-14 Thread Eelco Hillenius
Don't know anything about it. Anyone else? Not me. I don't think anyone of the core team was hired for an optimization job or we'd surely have had a discussion about it. Eelco

Re: True?

2009-10-14 Thread Eelco Hillenius
Hey Matt, if you're reading with us, maybe you can explain the scalability issues you ran into? How many concurrent sessions did you need to be able to handle? What did you try when optimizing? Cheers, Eelco On Wed, Oct 14, 2009 at 2:26 PM, Eelco Hillenius eelco.hillen...@gmail.com wrote

Re: Can I use Guice to discover all implementations of a type?

2009-10-13 Thread Eelco Hillenius
Unless I missed something obvious, it's such functionality isn't built in. I implemented it myself two weeks ago. Here's the code that does that: http://pastebin.com/f6bff61bc. It isn't pretty in anyway, but it does the job for me. You also need ASM on your classpath (or copied to your own

Re: Can I use Guice to discover all implementations of a type?

2009-10-13 Thread Eelco Hillenius
If anyone is interested and has the time, it would be great to see a cleaned up version of this for general use. Heh. Well, I didn't want to bring it up after this thread:

Re: Don't forget about ApacheCon US 2009!

2009-10-13 Thread Eelco Hillenius
Will you be there?  Reply here if you're planning on going.  We should all get together to do something! I'll be going, hope to see you there :-) Eelco - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Eelco Hillenius
Hi, It looks like GenericBaseModel has a reference to a JUnit Description? Maybe you can paste your GenericBaseModel class here? If that's something you'll have a runtime you shouldn't ignore it if you want to support history (the backbutton). If it's just during testing, you can ignore it if

Re: SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Eelco Hillenius
that, make the members transient)? Eelco On Fri, Oct 9, 2009 at 2:16 PM, Ceki Gulcu c...@qos.ch wrote: Eelco Hillenius wrote: Hi, It looks like GenericBaseModel has a reference to a JUnit Description? Maybe you can paste your GenericBaseModel class here? Fortunately, my application is open

Re: SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Eelco Hillenius
Btw, this whole serialization problem is exactly why we have detachable models (though they obviously don't solve every problem out there. Be sure to read up on those while you're at it. Eelco On Fri, Oct 9, 2009 at 3:12 PM, Eelco Hillenius eelco.hillen...@gmail.com wrote: I've looked

Re: self-recursive panel

2009-10-08 Thread Eelco Hillenius
Yeah, that's like Wicket's nested example in wicket-examples. Eelco On Thu, Oct 8, 2009 at 12:27 PM, Ceki Gulcu c...@qos.ch wrote: Hello, I just succeeded to create a self-recursive panel displaying a tree-like structure with less than 40 lines of java code and 10 lines of HTML. I am

Re: self-recursive panel

2009-10-08 Thread Eelco Hillenius
I was not aware of the nested example in wicket-examples. Unfortunately, http://www.wicket-library.com/wicket-examples/nested/ barfs when I try to access it. Hmmm, don't know what's going on there. But you can check out the source and look at it if you're interested. You won't learn much from

Re: self-recursive panel

2009-10-08 Thread Eelco Hillenius
http://wicketstuff.org/wicket13/nested/ Ryan Gravener http://bit.ly/no_word_docs Oh, right. Or http://wicketstuff.org/wicket14/nested/ (and notice the fancy toolbar in the upper right corner). Eelco - To unsubscribe,

Re: [wicket 1.5] url handling refactor preview

2009-10-06 Thread Eelco Hillenius
Looks like an overall improvement. Definitively reduces the spaghetti a bit. Not crazy about getCompatibilityScore though. I understand it's purpose and maybe it's the best solution, but it looks like a crutch. Eelco On Tue, Oct 6, 2009 at 8:13 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote:

Re: [wicket 1.5] url handling refactor preview

2009-10-06 Thread Eelco Hillenius
Why not use toRequestHandler/ toHandler and toUrl in RequestMapper? Eelco On Tue, Oct 6, 2009 at 9:53 AM, Eelco Hillenius eelco.hillen...@gmail.com wrote: Looks like an overall improvement. Definitively reduces the spaghetti a bit. Not crazy about getCompatibilityScore though. I understand

Re: OT: Is IModel an empty interface?

2009-10-06 Thread Eelco Hillenius
I must admit that I don't get the whole detachable stuff in Wicket. I'm used to think in horizontal tiers where one tier does all the caching automagically (e.g. 2nd level cache in JPA/Hibernate) and the other tiers don't know about that fact. What models in Wicket can achieve is that data

Re: taking the I out of Interface

2009-10-05 Thread Eelco Hillenius
On Mon, Oct 5, 2009 at 12:14 AM, Eelco Hillenius eelco.hillen...@gmail.com wrote: I never liked the code format we're using (curly braces on the next line), but heck even though Wicket is the only project I've ever worked on (as far as I can remember) where I used that It's in the Topicus

Re: taking the I out of Interface

2009-10-05 Thread Eelco Hillenius
And good, consistent naming of classes and other identifiers is a non-trivial aspect of good design and coding, especially in publicly used parts of frameworks True, but imho that has more to do with choosing names that communicate what things do well, not so much whether there are certain

Re: taking the I out of Interface

2009-10-02 Thread Eelco Hillenius
-1 Breaks compatibility for nothing other than a superficial 'improvement'. Also, I do see the I used in other projects, and actually like the convention (a whole lot better than using AbstractFoo and Fooimpl fwiw). Eelco On Fri, Oct 2, 2009 at 3:28 PM, Igor Vaynberg igor.vaynb...@gmail.com

Re: How many modules?

2009-09-28 Thread Eelco Hillenius
Therefore I want to start as few modules as possible for some of my unit tests. This results in many, many small modules. At the moment I have 18 production modules (and 5 mock modules) for a project with around 300 classes. Is this normal? How do you solve that problem? I don't know about

Re: google-sitebricks

2009-09-26 Thread Eelco Hillenius
I think it's a very nicely designed minimal framework, and I think it's great that it has a focus on failing as early as possible. I'm considering using it for a site that is halfway the transition of going from Struts 2 to mostly Ajax (extjs). That site currently uses JSPs for templating, which

Re: google-sitebricks

2009-09-26 Thread Eelco Hillenius
I think it's a very nicely designed minimal framework, Maybe I shouldn't say minimal, but rather that Dhanji didn't need a lot of code to create a powerful framework. :-) Eelco - To unsubscribe, e-mail:

Re: rpc question

2009-09-18 Thread Eelco Hillenius
While you could use Wicket for this, personally I think you're getting close to viewing Wicket as the golden hammer :-) Why not use Jersey for instance. I just used that myself (in a project where the UI is in Wicket), and especially together with Jackson for JSON -- Pojo serialization this seems

How to best set up multiple data sources with Guice

2009-09-08 Thread Eelco Hillenius
Hi, I have two different data sources and I want them initialized through properties files. When using Spring I would just instantiate the same class twice with different parameters, but with Guice it is a little bit less straightforward - at least initially, and in fact I already like the end

Re: How to best set up multiple data sources with Guice

2009-09-08 Thread Eelco Hillenius
the properties as parameters, new up the object and return. See the second example here: http://code.google.com/p/google-guice/wiki/ProvidesMethods Robbie On Tue, Sep 8, 2009 at 11:01 AM, Eelco Hillenius eelco.hillen...@gmail.com wrote: Hi, I have two different data sources and I want them

Re: user experience

2009-09-02 Thread Eelco Hillenius
Decoding 3MB/sec seems rather slow to me (121MB log file instantiated to objects in ~40 secs).  For comparison, creating tuple objects from a Hadoop SequenceFile is ~5x faster.  Granted I'm comparing apples to oranges (my objects in SequenceFile to Eelco's test in Avro). Maybe I got carried

Re: user experience

2009-09-02 Thread Eelco Hillenius
I've found that generating classes with the specific API is both simpler and faster.  In particular, if you have a set of related classes, use a method-free protocol file (.avpr) to define them.  The Java classes are generated by an Ant task. The reason we don't want to go for the specific

Re: UTF-8

2009-09-02 Thread Eelco Hillenius
The result is in the attachment file (sorry but I don't have a quick way to do a patch file against SVN trunk at the moment). The mailing list daemon thinks attachments are delicious. The way to submit patches is to attach it to a JIRA issue. Did anyone already open a feature request for this?

Re: UTF-8

2009-09-01 Thread Eelco Hillenius
Because Wicket uses Java Properties objects and it can't handle UTF-8. In Tapestry they made a wapper around Java Properties so that you can use the good old properties format (ie key=value) with UTF8 encoding and IMO it's a nice feature missing in Wicket. Erm

Re: UTF-8

2009-09-01 Thread Eelco Hillenius
Erm http://chillenious.wordpress.com/2006/11/13/wicket-now-supports-resource-bundles-in-xml-format/ Which says Wicket 2.0 (yes, it's that old), but it was also one of the first things backported. Loading is automatic, and .xml takes precedence over .properties. Eelco

Re: UTF-8

2009-09-01 Thread Eelco Hillenius
On Tue, Sep 1, 2009 at 1:19 AM, Olivier Bourgeoisolivier.bourgeois@gmail.com wrote: That's exactly what I said : I had to use XML properties files to have UTF-8 localized properties. You can't use simple properties format because Java can't handle natively anything else than ISO. We use

Re: UTF-8

2009-09-01 Thread Eelco Hillenius
But I'm sure you can write a properties implementation that reads from UTF-8 in a few hours max, especially now that you have an example in Tapestry's code. Patch is welcome :-) Why not just borrow the code from Tapestry?  It's Apache licensed of course, so no issues there. Sure, if it

Re: Session gc

2009-08-28 Thread Eelco Hillenius
see httpsessionlistener http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpSessionListener.html Yep. You can use the session store hooks that Wicket provides, but I found HttpSessionListener to be the most reliable. Eelco

Re: How to detect model leakage into session

2009-08-27 Thread Eelco Hillenius
One 'hack' of a way to check whether you have stuff in your session that shouldn't be, is to make sure that the objects you don't want sticking around are not serializable, and you'll see stacktraces soon enough. If that's an options, it's a useful hack... Eelco On Wed, Aug 26, 2009 at 12:29 PM,

[jira] Commented: (AVRO-104) Reflective API can't handle nulls

2009-08-25 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-104?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12747512#action_12747512 ] Eelco Hillenius commented on AVRO-104: -- ReflectDatumReader/Writer could be done

[jira] Updated: (AVRO-104) Reflective API can't handle nulls

2009-08-25 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-104?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-104: - Attachment: AVRO-104.patch Added a test that uses ReflectDatumWriter and found a bug

[jira] Commented: (AVRO-104) Reflective API can't handle nulls

2009-08-25 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-104?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12747609#action_12747609 ] Eelco Hillenius commented on AVRO-104: -- Patch is in, so we have two alternatives now

[jira] Updated: (AVRO-104) Reflective API can't handle nulls

2009-08-25 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-104?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-104: - Attachment: AVRO-104.patch Uploaded patch that removes the null checks and makes PARANAMER non

[jira] Updated: (AVRO-104) Reflective API can't handle nulls

2009-08-25 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-104?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-104: - Attachment: AVRO-104.patch Final patch I hope: include minor check style fixes Reflective API

user experience

2009-08-25 Thread Eelco Hillenius
Hi, I'd like to share some results I'm having with using Avro. Just fyi :-) We are using Avro to log 'audit events'. Audit events are basically simple Java objects with a few properties that describe the audit event. An example is class SiteNodeDeletedEvent with properties timeStamp, userId and

[jira] Updated: (AVRO-104) Reflective API can't handle nulls

2009-08-21 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-104?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-104: - Attachment: AVRO-104.patch Uploaded a patch that implements a workaround that enables clients

[jira] Updated: (AVRO-104) Reflective API can't handle nulls

2009-08-21 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-104?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-104: - Attachment: AVRO-104.patch updated test case to test with a record with null, and one

[jira] Updated: (AVRO-104) Reflective API can't handle nulls

2009-08-20 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-104?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-104: - Attachment: AVRO-104.patch Attached patch for TestReflect to demonstrate the issue Reflective

[jira] Updated: (AVRO-96) packageName argument ReflectDatumReader fragile

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-96?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-96: Attachment: AVRO-96.patch packageName argument ReflectDatumReader fragile

[jira] Updated: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-95: Attachment: AVRO-95.patch mixing multiple types in one data file using reflection is not supported

[jira] Updated: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-95: Attachment: (was: AVRO-95.patch) mixing multiple types in one data file using reflection

[jira] Updated: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-95: Attachment: AVRO-95.patch mixing multiple types in one data file using reflection is not supported

[jira] Commented: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12744624#action_12744624 ] Eelco Hillenius commented on AVRO-95: - Almost works. I've attached a patch with a unit

[jira] Commented: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12744625#action_12744625 ] Eelco Hillenius commented on AVRO-95: - Btw, I had to move the test record classes to top

[jira] Commented: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12744656#action_12744656 ] Eelco Hillenius commented on AVRO-95: - Yep, that works. Awesome. One final remark

[jira] Commented: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12744666#action_12744666 ] Eelco Hillenius commented on AVRO-95: - Sure. Thanks a lot for the quick cooperation

[jira] Commented: (AVRO-86) NullPointerException when using reflection to create a schema for a class without a package.

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-86?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12744869#action_12744869 ] Eelco Hillenius commented on AVRO-86: - Probably not relevant anymore, since this only came

[jira] Updated: (AVRO-101) unable to work with nested classes and reflection based API

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-101: - Attachment: AVRO-101.patch unable to work with nested classes and reflection based API

[jira] Updated: (AVRO-102) FooRecord and BarRecord need apache headers

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-102?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-102: - Status: Patch Available (was: Open) FooRecord and BarRecord need apache headers

[jira] Created: (AVRO-103) Record objects from different packages is not supported with the reflection API

2009-08-18 Thread Eelco Hillenius (JIRA)
Issue Type: New Feature Components: java Affects Versions: 1.0.0, 1.0.1 Reporter: Eelco Hillenius Fix For: 1.0.1 Attachments: AVRO-103.patch Currently it is not possible to work with record objects that come from different packages

[jira] Updated: (AVRO-103) Record objects from different packages is not supported with the reflection API

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-103?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-103: - Attachment: AVRO-103.patch Uploaded unit test to help with this feature request. Record objects

[jira] Updated: (AVRO-102) FooRecord and BarRecord need apache headers

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-102?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-102: - Component/s: java FooRecord and BarRecord need apache headers

[jira] Commented: (AVRO-101) unable to work with nested classes and reflection based API

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12744874#action_12744874 ] Eelco Hillenius commented on AVRO-101: -- Uploaded unit test that shows the issue

[jira] Closed: (AVRO-93) ReflectData doesn't get fields recursively

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-93?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius closed AVRO-93. --- ReflectData doesn't get fields recursively

[jira] Closed: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius closed AVRO-95. --- mixing multiple types in one data file using reflection is not supported

[jira] Updated: (AVRO-86) NullPointerException when using reflection to create a schema for a class without a package.

2009-08-18 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-86?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-86: Comment: was deleted (was: Probably not relevant anymore, since this only came up when using the now

[jira] Commented: (AVRO-94) Paranamer does not return field names where Avro expects it does

2009-08-17 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-94?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12744272#action_12744272 ] Eelco Hillenius commented on AVRO-94: - TestReflect#testProtocol fails currently. Can you

[jira] Commented: (AVRO-94) Paranamer does not return field names where Avro expects it does

2009-08-17 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-94?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12744302#action_12744302 ] Eelco Hillenius commented on AVRO-94: - I just asked a colleague who is running a Linux

[jira] Updated: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-17 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-95: Attachment: AVRO-95.patch Unfortunately, this also doesn't work atm. I'm attaching a new version

[jira] Updated: (AVRO-86) NullPointerException when using reflection to create a schema for a class without a package.

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-86?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-86: Attachment: AVRO-86.patch If an empty string for a package is acceptable, than the fix seems easy

[jira] Updated: (AVRO-86) NullPointerException when using reflection to create a schema for a class without a package.

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-86?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-86: Affects Version/s: 1.0.1 Status: Patch Available (was: Open) NullPointerException

[jira] Created: (AVRO-93) ReflectData doesn't get fields recursively

2009-08-15 Thread Eelco Hillenius (JIRA)
, 1.0.1 Reporter: Eelco Hillenius Fix For: 1.0.1 Fields are not analyzed recursively, so if you work with a hierarchy, you'll only have the top level fields. I can't imagine this is on purpose, so I marked this a bug. -- This message is automatically generated by JIRA

[jira] Updated: (AVRO-93) ReflectData doesn't get fields recursively

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-93?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-93: Attachment: AVRO-93.patch ReflectData doesn't get fields recursively

[jira] Created: (AVRO-94) Paranamer does not return field names where Avro expects it does

2009-08-15 Thread Eelco Hillenius (JIRA)
Versions: 1.0.0, 1.0.1 Environment: OSX Leopard, Java 1.6, Eclipse Reporter: Eelco Hillenius Fix For: 1.0.1 Not sure whether this is a bug in Paranamer or whether Avro has the wrong expectations, but currently TestReflect#testProtocol throws

[jira] Updated: (AVRO-93) ReflectData doesn't get fields recursively

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-93?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-93: Status: Patch Available (was: Open) Note that fixing this results in AVRO-86 coming up earlier

[jira] Updated: (AVRO-94) Paranamer does not return field names where Avro expects it does

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-94?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-94: Component/s: java Paranamer does not return field names where Avro expects it does

[jira] Created: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-15 Thread Eelco Hillenius (JIRA)
Components: java Affects Versions: 1.0.0, 1.0.1 Reporter: Eelco Hillenius Fix For: 1.0.1 My use case is that I have a bunch of different kind of events (in a hierarchy actually, which right now isn't supported either, see AVRO-93), that I would like

[jira] Updated: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-95: Attachment: AVRO-95.patch Test case that shows the bug(s) - now formatted and using Utf8 rather than

[jira] Updated: (AVRO-95) mixing multiple types in one data file using reflection is not supported

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/AVRO-95?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius updated AVRO-95: Comment: was deleted (was: Test case that shows the bug(s) - now formatted and using Utf8 rather

[jira] Closed: (WICKET-626) profile Wicket for 1.4.0

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius closed WICKET-626. -- profile Wicket for 1.4.0 Key: WICKET-626

[jira] Resolved: (WICKET-626) profile Wicket for 1.4.0

2009-08-15 Thread Eelco Hillenius (JIRA)
[ https://issues.apache.org/jira/browse/WICKET-626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eelco Hillenius resolved WICKET-626. Resolution: Won't Fix No sense in keeping this around when no-one does it. profile

<    1   2   3   4   5   6   7   8   9   10   >