Re: DISCUSS DeltaSpike-332

2013-06-02 Thread Romain Manni-Bucau
Weird if that s true but in such a case app will be constrained too i think Le 2 juin 2013 10:25, Mark Struberg strub...@yahoo.de a écrit : Pretty often you are not even allowed to change those libs for production. Sometimes because of legal constructs (ever looked at the Oracle license for

Re: Servlet module

2013-06-02 Thread Christian Kaltepoth
Hey John, I'm almost finished with the stuff I wanted to get in for a first version. What I got so far is propagation of servlet events for creation/destruction of request, response, session and servlet context. And also injection of request, response and session. What I'm currently finishing is

[jira] [Created] (DELTASPIKE-376) Propagation of basic servlet events to the CDI event bus

2013-06-02 Thread Christian Kaltepoth (JIRA)
Christian Kaltepoth created DELTASPIKE-376: -- Summary: Propagation of basic servlet events to the CDI event bus Key: DELTASPIKE-376 URL: https://issues.apache.org/jira/browse/DELTASPIKE-376

[jira] [Commented] (DELTASPIKE-360) alternative LocaleResolver which is aware of supported locales

2013-06-02 Thread Mark Struberg (JIRA)
[ https://issues.apache.org/jira/browse/DELTASPIKE-360?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13672458#comment-13672458 ] Mark Struberg commented on DELTASPIKE-360: -- gerhard, would you like to commit

[jira] [Assigned] (DELTASPIKE-335) re-visit support of EARs

2013-06-02 Thread Mark Struberg (JIRA)
[ https://issues.apache.org/jira/browse/DELTASPIKE-335?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Struberg reassigned DELTASPIKE-335: Assignee: Mark Struberg re-visit support of EARs

Re: DISCUSS DeltaSpike-332

2013-06-02 Thread John D. Ament
Definitely. When you're a consultant, you typically don't tell what 3PL's you're using (just dealt with this recently, found some GPL in our product... not fun). Adding in a 3PL that is apache licensed is typically ok. Upgrading a core app server lib without real reason for it is a pain. Right

Re: DISCUSS DeltaSpike-332

2013-06-02 Thread Romain Manni-Bucau
Hmm, thinking of it we should consider how hard it is to dev and maintain and if it is the same code as the new version of the lib. If so thats not relevant IMO, if easy and small enough it could be added IMHO Le 2 juin 2013 13:08, John D. Ament john.d.am...@gmail.com a écrit : Definitely. When

Re: DISCUSS DeltaSpike-332

2013-06-02 Thread Gerhard Petracek
@ mark: you aren't allowed to replace such libs manually (in the server itself), but e.g. in wls you have an own config-mechanism to do exactly that (per application). before we just add a whole module for it, we should test such upgrades with the servers in question. upgrading other libs like jsf

Re: Determining when to port functionality

2013-06-02 Thread Christian Kaltepoth
Just a small note regarding Deactivatable. AFAIK you can use it for any class by manually implementing checks like this: if( ClassDeactivationUtils.isActivated( this.getClass() ) ) { // do whatever the class is responsible for } 2013/6/2 John D. Ament john.d.am...@gmail.com Mark, I