Question about JMS Session Pool

2008-09-02 Thread Christian Schneider
Hi, I am just working an a refactoring of the JMS Transport. In the module there is an implementation of a session cache. As we later want to switch to SpringTemplate and Spring ListenerContainer I want to get rid of as much pooling implementation as possible. So my question is: Do we really

Re: [jira] Commented: (CXF-1772) Generated WSDL has a char

2008-09-02 Thread Benson Margulies
OK, I'm working on it. But I fear that I broke the build due to some Dain-droppings in the process. On Tue, Sep 2, 2008 at 2:13 PM, Daniel Kulp (JIRA) <[EMAIL PROTECTED]> wrote: > >[ > https://issues.apache.org/jira/browse/CXF-1772?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-

Re: A CXF 2.1 CPU consumption question

2008-09-02 Thread Daniel Kulp
Just a quick FYI: I've now fixed (on trunk) the areas identified in this email trail. 1) avoid element.setAttributeNS. Creating an Attr node and calling setAttributeNodeNS is actually a LOT faster. 2) I updated the context mapping to map things on demand (and I've run the TCK to verify it

Re: svn commit: r691148 - /cxf/trunk/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIDestinationOutputStream.java

2008-09-02 Thread Freeman Fang
Hi Dan, You are correct, we needn't lookup operation in this case, just copy the entry which is serializable, I will refactor code according to your suggestion. Thanks Freeman Daniel Kulp wrote: Freeman, On Tuesday 02 September 2008 4:25:40 am [EMAIL PROTECTED] wrote:

Re: svn commit: r691148 - /cxf/trunk/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIDestinationOutputStream.java

2008-09-02 Thread Daniel Kulp
Freeman, On Tuesday 02 September 2008 4:25:40 am [EMAIL PROTECTED] wrote: > //copy properties > Set keys = inMessage.keySet(); > for (String key : keys) { > -msg.setProperty(key, inMessage.get(key)); > +