Re: XmlSchema, error checking, RFSB, hmm?

2010-10-13 Thread Benson Margulies
We're in createWrappedMessageSchema. here's what I have today ... for (MessagePartInfo mpi : unwrappedMessage.getMessageParts()) { el = new XmlSchemaElement(schema, false); // We hope that we can't have parts that differe only in namespace.

CXF and HTTP proxy properties

2010-10-13 Thread Guillaume Sauthier
Hi team I've found plenty of examples over the internet explaining how to setup an HTTP proxy (using Spring or the API). This is always done on a per-service basis. I was wondering why the http.proxy* System properties were not used for supporting this ? In my use case (the JOnAS

Re: Creating branch for 2.3.x fixes....

2010-10-13 Thread Daniel Kulp
On Tuesday 12 October 2010 12:40:10 pm Daniel Kulp wrote: I plan on creating a branch for 2.3.x fixes fairly shortly so that we can start pushing new things onto trunk. Any objections, speak up quickly? I'm going to go ahead and do this and setup hudson builds for 2.3.x and such. That

How to use WSSE tokens for authorization decisions without extending WSS4JInInterceptor

2010-10-13 Thread Sergey Beryozkin
Hi there Few months ago I created an AbstractUsernameTokenAuthenticatingInterceptor which extends WSS4JInInterceptor and provides an easy extension point for custom interceptors to be able to create a Subject by delegating to their own stores. Combining it with a shipped

Re: XmlSchema, error checking, RFSB, hmm?

2010-10-13 Thread Daniel Kulp
On Wednesday 13 October 2010 7:58:08 am Benson Margulies wrote: We're in createWrappedMessageSchema. here's what I have today ... for (MessagePartInfo mpi : unwrappedMessage.getMessageParts()) { el = new XmlSchemaElement(schema, false); // We hope that we can't have

Re: XmlSchema, error checking, RFSB, hmm?

2010-10-13 Thread Benson Margulies
My view of this sort of thing is that the first thing we need is a test case: a wsdl that somehow ends up with parts in multiple namespaces.

Re: svn commit: r1022269 - in /cxf/sandbox/veithen/cxf-spring-security: cxf-spring-security/pom.xml cxf-systests-spring-security/pom.xml pom.xml

2010-10-13 Thread Daniel Kulp
Andreas, What are your thoughts about CXF including all of this in a future version? It looks like it woudl definitely have some value. Dan On Wednesday 13 October 2010 3:56:48 pm veit...@apache.org wrote: Author: veithen Date: Wed Oct 13 19:56:48 2010 New Revision: 1022269 URL:

Re: XmlSchema, error checking, RFSB, hmm?

2010-10-13 Thread Daniel Kulp
On Wednesday 13 October 2010 3:42:31 pm Benson Margulies wrote: My view of this sort of thing is that the first thing we need is a test case: a wsdl that somehow ends up with parts in multiple namespaces. Looking at the RFSB at that location: // We hope that we can't have parts that

Re: CXF and HTTP proxy properties

2010-10-13 Thread Daniel Kulp
On Wednesday 13 October 2010 9:34:27 am Guillaume Sauthier wrote: Hi team I've found plenty of examples over the internet explaining how to setup an HTTP proxy (using Spring or the API). This is always done on a per-service basis. I was wondering why the http.proxy* System properties were

Moving slightly backwards on XmlSchema

2010-10-13 Thread Benson Margulies
I added an error check to XmlSchema that went off, so I'll go fix it the issue.