Jason Laskowski/HEI/AHC is out of the office.

2010-03-30 Thread jason . laskowski
I will be out of the office starting 03/30/2010 and will not return until 04/02/2010. I will respond to your message when I return.

Re: jax-rs security

2010-03-30 Thread Josh Holtzman
Adding some logging listeners to your spring configuration might give you more information about what's going on with your filters. Josh On Mon, Mar 29, 2010 at 6:39 PM, rangeli nepal wrote: > Thank you Josh, > > My start itself was not good. I built a test jax-rs application which runs >

How to configure XML Binding to use sub-class objects

2010-03-30 Thread Betts, Chuck
In the application I am developing, we decided we wanted to add validation logic to the classes generated by JAXB when using WSDL to Java data binding. However, we decided to keep the validation logic in a sub-class of the JAXB generated object. So for example, this is the JAXB generated class:

Re: JMS and POJO first webservice

2010-03-30 Thread Daniel Kulp
On Tuesday 30 March 2010 3:46:57 pm Javier Posado wrote: > hi Manoj, > > i've just tried jms transport with fronted-jaxws, not with > fronted-simple (pojo) but i guess you only need to follow > http://cxf.apache.org/docs/jms-transport.html and set your conduit > Starting with 2.1.3 you can use JMS

Re: How to consume SharePoint Service Response (Java/.NET interop)?

2010-03-30 Thread csaban
Oh yes, forgot to mention, another way would be with JAXB is to add an interceptor and process the stream before the StaxInInterceptor does. eg: static class MyInterceptor extends AbstractPhaseInterceptor { public MyInterceptor() {

Re: How to consume SharePoint Service Response (Java/.NET interop)?

2010-03-30 Thread csaban
Probably this is late now, but I was facing the same issue. (Sharepoint, NTLMv2, List[null]) Using JAXB GetList always returned null, but switching to XMLBEANS I do get the xml content of the getList response. Hope this helps someone. -- Csaba mmule wrote: > > Hello, > > Do you have a solut

Re: JMS and POJO first webservice

2010-03-30 Thread Javier Posado
hi Manoj, i've just tried jms transport with fronted-jaxws, not with fronted-simple (pojo) but i guess you only need to follow http://cxf.apache.org/docs/jms-transport.html and set your conduit Starting with 2.1.3 you can use JMSConfigFeature instead of set the conduit but not sure if it works

JMS and POJO first webservice

2010-03-30 Thread Purohit, Manoj R
Hello, JMS port based webservice with cxf works fine with wsdl first approach. Pojo first approach works fine with http based webservice. For CXF 2.1.2 .. Is it feasible to write pojo first jms based webservice ? Is there any sample available for pojo first jms webservice ? Appreciate any pointe

JMS and POJO first webservice

2010-03-30 Thread Purohit, Manoj R
Hello, JMS port based webservice with cxf works fine with wsdl first approach. Pojo first approach works fine with http based webservice. Is it feasible to write pojo first jms based webservice ? Is there any sample available for pojo first jms webservice ? Appreciate any pointers. Regards, Man

Re: [CXF-2.2.5][JDK1.5][Spring-2.5.5] WADL generator does not include response object

2010-03-30 Thread Sergey Beryozkin
I did a very quick test with 2.3-SNAPSHOT, using FooService interface and Foo jaxb bean, as well as FooServiceImpl, and everything is generated correctly, there's a grammar section and one of the wadl responses links to a Foo element declared in the grammar. Perhaps there was some issue in 2.2.5, m

Re: Updating to 2.2.7 gives invalid JAXB annotation

2010-03-30 Thread Tonio
Thanks for your answer. Yes I'll try that, probably in a couple of days, and comment you the results, and create a JIRA issue if necessary. thanks again tonio dkulp wrote: > > > Any chance you can strip this down to just a echoIbTimeStamp type thing > and > see if the problem is reproducibl

'cxf.config': 2 constructor arguments specified but no matching constructor

2010-03-30 Thread cplin
I am trying to upgrade from 2.2.2 to the 2.2.6 version of CXF and am encountering deployment issues. I am getting the error specified in the subject. Upon further research, it turns out this is due to a bean that was defined in conjunction with Spring Security. Spring Security looks for a

Re: [CXF-2.2.5][JDK1.5][Spring-2.5.5] WADL generator does not include response object

2010-03-30 Thread Sergey Beryozkin
Hi, sorry, I haven't got a chance yet to run a test with the latest trunk and confirm the problem exists, will get back to you asap Can you please confirm that only @WebService(name="FooService", targetNamespace="http://foos.domain.com/";) @SOAPBinding(use=Use.LITERAL, style=Style.RPC) @Con

Re: Unmarshalling error when using fastinfoset

2010-03-30 Thread fahman_dude
Workaround works for the test project but not for my real project. I will attempt to test the real project with the cxf 2.3-snapshot and will report results in here. Dan, do you have a jira ticket on this? If not, dont reply I'll just post new one. dkulp wrote: > > On Monday 29 March 2010 9:25:

Re: [CXF-2.2.5][JDK1.5][Spring-2.5.5] WADL generator does not include response object

2010-03-30 Thread Gabo Manuel
Anyone? :'( Gabo Manuel wrote: Hi Team, Given the following: @WebService(name="FooService", targetNamespace="http://foos.domain.com/";) @SOAPBinding(use=Use.LITERAL, style=Style.RPC) @Consumes("*/xml") @Produces("text/xml") @Path("/Foos") public interface FooService{ @GET @Path("/

Fwd: Questions About the DOSGi Greeter Demo

2010-03-30 Thread David Bosschaert
FYI. BTW anyone know why Nick might have problems sending to us...@cxf.apache.org? David -- Forwarded message -- From: Pan Nick Date: 2010/3/29 Subject: Re: Questions About the DOSGi Greeter Demo To: david.bosscha...@gmail.com Hi David, This seems to solve the problem for me a

Re: Relative paths in xsd:import - Partial solution

2010-03-30 Thread J. Aparicio
Fetched a tree. 2.2.5 tag, actually. Weird, I added a test case that reads a document with a doctype declaration, and the parser just ignores it. So the writeDocument never sees it, so it doesn't choke. Somewhere else the document is being read, the doctype declaration is not dropped, and when Sta

RE: Problems when intercepting an outbound SOAP message

2010-03-30 Thread Inma MarĂ­n
Hello, We have been able to get the body of a SOAP Message, but then we cannot add a header within that SOAP Message. The point is that we need to do the following: - Get the body of a SOAP Message. - Sign that body. - Add a header into the SOAP Message. That header has to include the signature

Re: Spring CXF Client Header not threadsafe?

2010-03-30 Thread ggs...@gmx.net
Thanks, that helped me a lot. I do not know how common this is, but perhaps this would help others in the FAQ? Beside that, CXF does a very great job and i like it very much! ;) dkulp wrote: > > > Well, it is "thread safe", nut it has an unusual side effect > > When implementing the thr