Re: Using elements from

2010-11-26 Thread Igor Lobanov
I've figured this out by tracing invocations of JAXBContext.newInstance(). It seems that there is a built-in mechanism for this purpose in JAXB. Generated port interface contains @XmlSeeAlso({ObjectFactory.class}), but you can refer there to classes for all of your recognized extensions. Having

Marshalling weirdness

2010-11-26 Thread Ted Roeloffzen
Hi All, At my company we're having a little trouble with the marshalling. Perhaps you know a solution. We're trying to connect to a third-party Webservice and we've created the code ot ouf their WSDL. We have a few classes, in the same package, with instance variables that have the same name. They

Re: Marshalling weirdness

2010-11-26 Thread Benson Margulies
Are you even using CXF at all? The situation you describe does not sound plausible. If you are using CXF, can you make a test case and post it? On Fri, Nov 26, 2010 at 5:03 AM, Ted Roeloffzen ted.roeloff...@gmail.com wrote: Hi All, At my company we're having a little trouble with the

Re: Marshalling weirdness

2010-11-26 Thread Ted Roeloffzen
yes we are using CXF. The situation looked weird and inplausible to me too. I'll see if i can make a test. 2010/11/26 Benson Margulies bimargul...@gmail.com Are you even using CXF at all? The situation you describe does not sound plausible. If you are using CXF, can you make a test case and

RE: Authentication / Authorization with with http jetty transport in standalone mode

2010-11-26 Thread Thomson, Duncan
Could this be implemented by providing a custom TrustDecider? I'm going to need to do something similar. I did find an example of a TrustDecider that uses a CRL or OCSP responder. Perhaps you can use this model. The example is here: