Re: [Resin-interest] pb with cxf / soap

2010-07-20 Thread Riccardo Cohen
Thanks a lot Scott for your answer. This is the result: That looks like an error in the XML parser. You might try changing the javax.xml.stream.XMLInputFactory property to com.sun.xml.internal.stream.XMLInputFactoryImpl. When I add system-property

Re: [Resin-interest] pb with cxf / soap

2010-07-20 Thread Daniel López
Hi there, Not sure if it helps, but I have an application that exposes a SOAP interface using CXF 2.1.9 and I just tested it to work under Resin 3.1.5 and it fails under Resin 4.0.7 with a weird error. It's just a proof-of-concept application that I have, so I can't tell how well the

Re: [Resin-interest] A request for caucho apache module - connect to an instance only after CDI deployment finished

2010-07-20 Thread Wesley Wu
Thanks for the Priority = normal :) -Wesley ___ resin-interest mailing list resin-interest@caucho.com http://maillist.caucho.com/mailman/listinfo/resin-interest

Re: [Resin-interest] pb with cxf / soap

2010-07-20 Thread Riccardo Cohen
I still think that 29Mb/66jars is too much when you need only soap. Axis 2 is also very heavy, axis 1.4 is 2Mb only :) ... bad choice probably because too old. Daniel López wrote: Hi there, Not sure if it helps, but I have an application that exposes a SOAP interface using CXF 2.1.9 and

Re: [Resin-interest] pb with cxf / soap

2010-07-20 Thread Scott Ferguson
Riccardo Cohen wrote: I still think that 29Mb/66jars is too much when you need only soap. Axis 2 is also very heavy, axis 1.4 is 2Mb only :) ... bad choice probably because too old. In this case, though, it just looks like we need to find the right classname for the XMLInputFactory,

Re: [Resin-interest] Launching Resin from Mac OS X launchd

2010-07-20 Thread Rick Mann
Thanks, Scott. You'd think that an explicit command to stop would mean stop, not stop and restart. I want to use submit because I'm actually doing this from a menu bar status item, and would rather avoid creating the file (so inelegant). Is that not possible? I exec it from the program. --

Re: [Resin-interest] Message driven bean woes

2010-07-20 Thread Scott Ferguson
Jeff Schnitzer wrote: I can't seem to get a message driven bean hooked up to a queue up in Resin 4.0.8. It's been a problem since at least 4.0.6. The problem is pretty straightforward: web-app xmlns=http://caucho.com/ns/resin; xmlns:ee=urn:java:ee

Re: [Resin-interest] Launching Resin from Mac OS X launchd

2010-07-20 Thread Scott Ferguson
Rick Mann wrote: Thanks, Scott. You'd think that an explicit command to stop would mean stop, not stop and restart. I want to use submit because I'm actually doing this from a menu bar status item, and would rather avoid creating the file (so inelegant). Is that not possible? I exec it

Re: [Resin-interest] Message driven bean woes

2010-07-20 Thread Jeff Schnitzer
On Tue, Jul 20, 2010 at 12:21 PM, Scott Ferguson f...@caucho.com wrote: Thanks. It's a timing issue in CanDI. The jms:FileQueue was added to a lazy-init which wasn't being evaluated when the #{delivery} was processed. The fix will be in the next snapshot. Cool. If you get to a point where

Re: [Resin-interest] Launching Resin from Mac OS X launchd

2010-07-20 Thread Rick Mann
On Jul 20, 2010, at 12:26:55, Scott Ferguson wrote: Rick Mann wrote: Thanks, Scott. You'd think that an explicit command to stop would mean stop, not stop and restart. I want to use submit because I'm actually doing this from a menu bar status item, and would rather avoid creating the

Re: [Resin-interest] Message driven bean woes

2010-07-20 Thread Jeff Schnitzer
By the way, I was able to work past the lazy-init issue (presumably) by using this block instead: cfg:MessageBeanConfig cfg:classtest.DeliveryListener/cfg:class cfg:destination#{delivery}/cfg:destination /cfg:MessageBeanConfig However, enqueueing a

Re: [Resin-interest] Message driven bean woes

2010-07-20 Thread Scott Ferguson
Jeff Schnitzer wrote: By the way, I was able to work past the lazy-init issue (presumably) by using this block instead: cfg:MessageBeanConfig cfg:classtest.DeliveryListener/cfg:class cfg:destination#{delivery}/cfg:destination /cfg:MessageBeanConfig

Re: [Resin-interest] Message driven bean woes

2010-07-20 Thread Jeff Schnitzer
Neither ee:Startup/ nor resin:Service/ has any observable effect. There's definitely some sort of cpu loop; as soon as I enqueue one entry, one core goes to 99% for the java process. Occasionally the thread hops between cores. * It happens with both jms:FileQueue and jms:MemoryQueue. * There

Re: [Resin-interest] Message driven bean woes

2010-07-20 Thread Scott Ferguson
Jeff Schnitzer wrote: Neither ee:Startup/ nor resin:Service/ has any observable effect. There's definitely some sort of cpu loop; as soon as I enqueue one entry, one core goes to 99% for the java process. Occasionally the thread hops between cores. Thanks. The loop is unrelated to EJB or

Re: [Resin-interest] Message driven bean woes

2010-07-20 Thread Jeff Schnitzer
It works! Just got this working against trunk: jms:JmsConnectionFactory/ jms:MemoryQueue ee:Nameddelivery/ee:Named /jms:MemoryQueue ejb-message-bean class=test.DeliveryListener