Re: JBI implementation needed

2007-12-03 Thread Eric Le Goff
Thanks Jeff, There was no reason to include ALL from the distribution. Now that I only include those jars that are useful to me, it works fine :) Eric On Nov 30, 2007 6:06 PM, Jeff Yu [EMAIL PROTECTED] wrote: Hmm you should remove following jars from your library or classpath if you don't

Re: CRL support

2007-12-03 Thread Bc. Jiří Mikulášek
Thanks a lot I will check it out On Thursday 29 of November 2007 15:24:57 Fred Dushin wrote: See the http-conf:trustDecider in https://svn.apache.org/repos/asf/incubator/cxf/trunk/rt/transports/ http/src/main/resources/schemas/configuration/http-conf.xsd You'll need to implement your own

RE: error upgrading to 2.0.3 with cxf.xml

2007-12-03 Thread mule1
Hello, Yes I have looked at that configuration documentation at : http://cwiki.apache.org/CXF20DOC/configuration.html and I don't have my own cxf-servlet.xml defined at all. The one referenced in cxf.xml is the cxf's import. My configuration is very similar and simple. 1. In my web.xml, I have

StackOverflow on Tomcat Start

2007-12-03 Thread Tobias Luikard
Hello, I want to upgrade from CXF 2.0.2 to 2.0.3. I changed all jars and tried a lot of things. But I can't get rid of this problem (see stacktrace.txt) I even changed the spring version to 2.0.7 but this didn't help. :-( You can find my cxf.xml also attached. Any hint for me? Thanks a lot!!

RE: CXF 2.0.3 Introduces wrong number of arguments fault?

2007-12-03 Thread Christopher Moesel
Dan K, Would you like me to file a bug for this one? -Chris -Original Message- From: Dan Connelly [mailto:[EMAIL PROTECTED] Sent: Sunday, November 25, 2007 7:47 PM To: cxf-user@incubator.apache.org Subject: Re: CXF 2.0.3 Introduces wrong number of arguments fault? dan Did

Re: CXF 2.0.3 Introduces wrong number of arguments fault?

2007-12-03 Thread Daniel Kulp
Dan, I deployed new snapshots for both 2.0.4 and 2.1 on Friday. The fix should be in both of them. Dan On Sunday 25 November 2007, Dan Connelly wrote: dan Did you fix get committed?   What snapshot(s) have the fix?         -- Dan Connelly Daniel Kulp wrote: Christopher, I

Re: Addressing namespace compatability issue with WCF

2007-12-03 Thread paul.freeman
There is a patch for this issue in JIRA - but it doesn't seem to work. Looking at the code around the patch, there are explicit calls to classes in the org.apache.cxf.ws.addressing.v200408 package. https://issues.apache.org/jira/browse/CXF-1216 The class in question is

Re: StackOverflow on Tomcat Start

2007-12-03 Thread Glen Mazza
Am Montag, den 03.12.2007, 11:59 +0100 schrieb Tobias Luikard: Hello, I want to upgrade from CXF 2.0.2 to 2.0.3. I changed all jars and tried a lot of things. But I can't get rid of this problem (see stacktrace.txt) I even changed the spring version to 2.0.7 but this didn't help. :-(

RE: error upgrading to 2.0.3 with cxf.xml

2007-12-03 Thread Glen Mazza
Am Montag, den 03.12.2007, 05:43 -0800 schrieb mule1: Hello, Yes I have looked at that configuration documentation at : http://cwiki.apache.org/CXF20DOC/configuration.html and I don't have my own cxf-servlet.xml defined at all. The one referenced in cxf.xml is the cxf's import. My

Re: org.apache.cxf.interceptor.Fault: Marshalling Error with NFL/GroovyWS

2007-12-03 Thread Daniel Kulp
Guillaume, I've honestly never seen that error before. However, it MIGHT have something to do with wrapped/unwrapped styles internally. Internally, it may be expecting it to be in unwrapped form, thus expecting 3 strings instead of a GetTeamInfoByCity object. Dan On Saturday 01

Re: org.apache.cxf.interceptor.Fault: Marshalling Error with NFL/GroovyWS

2007-12-03 Thread Daniel Kulp
Guillaume, Did some more digging.This is related to: https://issues.apache.org/jira/browse/CXF-885 Basically, the GetRemainingHits is killing things. As soon as CXF sees a method that is not wrapped/wrappable, CXF doesn't add any of the interceptors for the wrapped cases. :-(For

Re: org.apache.cxf.interceptor.Fault: Marshalling Error with NFL/GroovyWS

2007-12-03 Thread Glen Mazza
Am Montag, den 03.12.2007, 14:17 -0500 schrieb Daniel Kulp: Guillaume, Did some more digging.This is related to: https://issues.apache.org/jira/browse/CXF-885 Basically, the GetRemainingHits is killing things. As soon as CXF sees a method that is not wrapped/wrappable, CXF

RE: perl (SOAPLite) interoperability with CXF

2007-12-03 Thread Teruhiko Kurosaka
Thank you, Dan, I've verified this is a bug in SOAPLite. I changed the prefix soap to wsdlsoap, and feed that WSDL to the perl client, and this simpler version of the client worked! use SOAP::Lite; $srvc = SOAP::Lite -service(file:./hello_world-wsdl.xml) -on_action (sub { return '' } );

Re: Dynamic client issue with Strikeiron webservice

2007-12-03 Thread Daniel Kulp
Guillaume, I'm deploying a new 2.0.4 SNAPSHOT now. That version SHOULD work if you do: Object[] response = client.invoke(GetTeamInfoByCity, ID, PASSWORD, New England); Creating the GetTeamInfoByCity object and sending that in like your code does would require some extra flags and such

Re: Dynamic client issue with Strikeiron webservice

2007-12-03 Thread tog
Dan, I will have a look at it now. Cheers Guillaume On Dec 4, 2007 7:59 AM, Daniel Kulp [EMAIL PROTECTED] wrote: Guillaume, I'm deploying a new 2.0.4 SNAPSHOT now. That version SHOULD work if you do: Object[] response = client.invoke(GetTeamInfoByCity, ID, PASSWORD, New England);

Re: Addressing namespace compatability issue with WCF

2007-12-03 Thread Willem Jiang
Hi Paul, I just went through the ws-rm's code , there are some hard codes which set the addressing namespace to be http://schemas.xmlsoap.org/ws/2004/08/addressing; and there is a comment in the VersionTransformer.java file. The motivation for using different native and exposed types is

Newbie to web services = objects conversion???

2007-12-03 Thread Tophebboy
Hi! I'm a newbie to web services and I'm trying to build an application using CXF. Here is my problem: The entities I use are represented by interfaces in my client application. Let's call them client interfaces. There are 3 big components in my application: The client (in Eclipse RCP), the web