weird issue when run single test in cxf

2010-12-17 Thread Freeman Fang
Hi, Today I experience a wired problem when I try to run a single test with what I always do like mvn test -Dtest=TestClassName But I just get error like, even though the test is actually there, did anyone else also encounter this problem? Yesterday everything is ok --

Re: weird issue when run single test in cxf

2010-12-17 Thread Willem Jiang
Hi Freeman, Maybe you need to use mvn clean first like this mvn clean test -Dtest=TestClassName On 12/17/10 4:07 PM, Freeman Fang wrote: Hi, Today I experience a wired problem when I try to run a single test with what I always do like mvn test -Dtest=TestClassName But I just get error like,

Re: weird issue when run single test in cxf

2010-12-17 Thread Freeman Fang
Hi Willem, Thanks for your response, no luck, same error, I'm wondering only me encounter this issue? Freeman On 2010-12-17, at 下午4:14, Willem Jiang wrote: Hi Freeman, Maybe you need to use mvn clean first like this mvn clean test -Dtest=TestClassName On 12/17/10 4:07 PM, Freeman Fang wr

Re: Does anybody also see OOBHeaderTest failure

2010-12-17 Thread Freeman Fang
Ok, we also need add soapMessage.getInterceptorChain().add(ending); in checkUltimateReceiverHeaders method after a SoapFault set to SoapMessage and so that this fault could be thrown after OnewayProcessorInterceptor. Create CXF-3200[1] to track it and will commit fix soon. [1]https://issues

Re: weird issue when run single test in cxf

2010-12-17 Thread Freeman Fang
Ignore it, it's ok now. Thanks Willem Freeman On 2010-12-17, at 下午4:14, Willem Jiang wrote: Hi Freeman, Maybe you need to use mvn clean first like this mvn clean test -Dtest=TestClassName On 12/17/10 4:07 PM, Freeman Fang wrote: Hi, Today I experience a wired problem when I try to run a si

Re: Does anybody also see OOBHeaderTest failure

2010-12-17 Thread Jim Ma
Hi Freeman , This failure is introduced in this commit : http://svn.apache.org/viewvc?rev=1050167&view=rev. Dan, is your change in rev. 1050167 with Freeman's modification are what you meant to optimize ? Thanks, Jim On Fri, Dec 17, 2010 at 4:25 PM, Freeman Fang wrote: > Ok, we also need add >

Re: Does anybody also see OOBHeaderTest failure

2010-12-17 Thread Daniel Kulp
On Friday 17 December 2010 4:32:12 am Jim Ma wrote: > Hi Freeman , > > This failure is introduced in this commit : > http://svn.apache.org/viewvc?rev=1050167&view=rev. > Dan, is your change in rev. 1050167 with Freeman's modification are > what you meant to optimize ? Yea. Exactly that. I'm n

Re: svn commit: r1050284 - in /cxf/trunk: rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/jms/interceptor/ rt/transports/common/src/main/java/org/apache/cxf/transport/common/gzip/ rt/transp

2010-12-17 Thread Daniel Kulp
Freeman, > +public static final String SOAP_JMS_CONTENTENCODING = > "SOAPJMS_contentEncoding"; I'm a bit concerned about pushing SOAP/JMS things out beyone the SOAP binding. Is it possible to have the SOAP/JMS interceptors or similar just map this directly into the normal CONTENT_ENCOD

Re: svn commit: r1050284 - in /cxf/trunk: rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/jms/interceptor/ rt/transports/common/src/main/java/org/apache/cxf/transport/common/gzip/ rt/transp

2010-12-17 Thread Freeman Fang
Hi Dan, Yeah, we can do it as you suggest, actually I did it this way for my first implementation, but it introduce a header(normal CONTENT_ENCODING header which GZIP interceptors already use) which is not defined in SOAP over JMS spec, just not sure if it's ok for the spec compliance.