Re: Convert SOAPMessage from cxf to saaj

2009-02-09 Thread Kid_79
Hi all, I try this example (http://www.jroller.com/0xcafebabe/entry/securing_spring_ws_client_with1) but I don't know how can it works! Can you help me? Kid_79 wrote: Hi all, I'm trying to use cxf and xwss for security. In the my example, on cliend side I'm using an interceptor to apply

Re: TOC wiki URLs fail when accessed from main CXF site

2009-02-09 Thread Sergey Beryozkin
Hi Andy I've never used a {toc} macro so I can't comment. But it looks like, if we look at say http://cwiki.apache.org/CXF20DOC/jax-ws.html that a pattern which has been followed so far is to introduce an entry page which repersents the content and then each link links to a seperate

Re: TOC wiki URLs fail when accessed from main CXF site

2009-02-09 Thread Sergey Beryozkin
Hi Andy I like table of contents too , so I guess if Confluence can support large pages then we can indeed avoid creating additional custom entry pages. I've seen your original update with the TOC and it looked good so if that can be made to work then it would be cool. That said, over time, we

[RESULT][VOTE] Release CXF 2.0.10 (Take 2)

2009-02-09 Thread Daniel Kulp
We have +1 votes from: dkulp, bharath, bmagulies, eglynn, seanoc, davidb, willem, ffang, cschneider, ubhole and no other votes. That's 10 +1 votes. Thus, this vote passes. I'll get the artifacts released to central. Dan On Thu February 5 2009 3:27:16 pm Daniel Kulp wrote: (The

[RESULT][VOTE] Release Apache CXF 2.1.4 (Take 2)

2009-02-09 Thread Daniel Kulp
We have +1 votes from: dkulp, bharath, bmagulies, eglynn, seanoc, davidb, willem, ffang, cschneider, ubhole, jgenender, jgawor, sberyozkin and no other votes. That's 13 +1 votes. Thus, this vote passes. I'll get the artifacts released to central. Dan On Thu February 5 2009 3:27:52

Re: Convert SOAPMessage from cxf to saaj

2009-02-09 Thread Daniel Kulp
The easiest way is in your interceptor, do: private SOAPMessage getSOAPMessage(Message msg) { SOAPMessage doc = msg.getContent(SOAPMessage.class); if (doc == null) { new SAAJInInterceptor().handleMessage(msg); doc = msg.getContent(SOAPMessage.class);