Re: SOAP flow Compression?

2007-12-13 Thread Tophebboy
Thanks a lot for your answer!!! I think I'm gonna build an interceptor. The one given in the configuration_interceptor example should do the trick! But I don't understand how I can activate my interceptor...I took the server.xml of the example, put it where it should be, aside from the

Re: multiple responses in jms

2007-12-13 Thread Ulhas Bhole
Hi Mayank, You would be better off writing new transport that serve your purpose. It will not be that hard. You can't register partial transport files that you modified as such but you can write whole new transport and attach it to CXF. all you need to do is to tell CXF via Spring

Securing server

2007-12-13 Thread Bc. Jiří Mikulášek
Hi all, I would like to secure my server and started with first*https sample. Here is my configuration below, but I am still getting this error: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'httpj:engine-factory'. Have somebody any idea?

Re: Securing server

2007-12-13 Thread Bc. Jiří Mikulášek
Hi again, sorry I forgot to add new namesapce to schemaLocation also and could not catch this trivial mistake for a long time On Thursday 13 of December 2007 14:22:17 Bc. Jiří Mikulášek wrote: Hi all, I would like to secure my server and started with first*https sample. Here is my

Re: Example of JAXB and HashMap serialization?

2007-12-13 Thread Kaleb Walton
Chris, Thank you for the detailed example! I'll definitely look into this implementation when the need arises in the future (right now we're getting by without them, but I know we'll need them at some point). Glad we're not the only ones who thought this was an important missing piece. Regards,

My own TrustManager

2007-12-13 Thread Bc. Jiří Mikulášek
Hi all, I need to add some spicific features to my SSL communictaion - so basically I would like to implement my own TrustManager. But when using CXF the code suplying TrustManagers is not under my control. Is there any way how to do it ofr CXF? thanks for any hints -- Jiri Mikulasek

Re: XML elements does not belong to the namespace

2007-12-13 Thread tcs
Thanks very much for looking into this. I'm working on fixing this now, but it's definitely a fairly large change Any ideas as to when this will be working? Knowing when this feature would be available will be me plan my projects. thanks! -- View this message in context:

Upgrading from XFire to CXF

2007-12-13 Thread mraible
We are currently using XFire in the AppFuse project and it works great. We are aware that Apache CXF is the next generation of XFire. However, we've also optimized the XFire footprint[1] to be as small as possible. Part of this optimization was removing JAXB 2 support and using XMLBeans instead.

Re: Next issue - using Spring AOP advice with web service impl - XFire migration

2007-12-13 Thread Daniel Kulp
The question didn't make it, but based on the subject, I'd suggest looking at our FAQ: http://cwiki.apache.org/CXF/faq.html#FAQ-SpringRelated -- J. Daniel Kulp Principal Engineer IONA P: 781-902-8727C: 508-380-7194 [EMAIL PROTECTED] http://www.dankulp.com/blog

Re: SOAP flow Compression?

2007-12-13 Thread Glen Mazza
Look at the many ways that logging interceptors can be added: http://cwiki.apache.org/CXF20DOC/debugging.html Be sure to read carefully so you don't miss anything. The process is similar for whatever other interceptor you wish to add. HTH, Glen Am Donnerstag, den 13.12.2007, 02:39 -0800

RE: Next issue - using Spring AOP advice with web service impl - XFire migration

2007-12-13 Thread Steven Bixby
Ok, obviously I'm having bad luck getting messages onto the list this morning, sorry for the empty. :-( Will try again later. From: Steven Bixby [mailto:[EMAIL PROTECTED] Sent: Thursday, December 13, 2007 8:01 AM To: cxf-user@incubator.apache.org Subject:

Re: SOAP flow Compression?

2007-12-13 Thread Tophebboy
I already saw that...But I think I'm missing something...I read it twice and it still doesn't work!! Anyway, I found a way of activating it copying the interceptor bean definition in the cxf-servlet.xml file (I have to this after deploying the project because each time I create a war file,

Re: RPC/Literal vs. Encoded

2007-12-13 Thread Glen Mazza
Am Donnerstag, den 13.12.2007, 12:06 + schrieb Jan Reise: Hi, I am trying to implement a web service prototype using CFX. I have implemented a junit test basically following the CFX how-to (test class code included below). Now I am getting an unexpected error (stacktrace

Re: SOAP flow Compression?

2007-12-13 Thread Glen Mazza
Am Donnerstag, den 13.12.2007, 08:45 -0800 schrieb Tophebboy: I already saw that...But I think I'm missing something...I read it twice and it still doesn't work!! Anyway, I found a way of activating it copying the interceptor bean definition in the cxf-servlet.xml file (I have to this after

Re: suppress namespace?

2007-12-13 Thread Dain Sundstrom
I see. So do these toolkits produce messages with namespaces? If not we're gonna need to add extend aegis to not expect namespaces when reading. This is one of changes I had to in the extensions for SOAP encoded. -dain On Dec 12, 2007, at 6:56 PM, Daniel Kulp wrote: Dain, One of

Aegis Binding - Hello World example fails with SchemaFactoryFinder$ConfigurationError

2007-12-13 Thread tcs
I'm trying to write a simple web service using Aegis but am running into some issues. When I try to start the server, I get the following exception: INFO: Creating Service {http://demo/}HelloWorld from class demo.HelloWorld JAXP: find

array - difference between JAXB and Aegis Binding

2007-12-13 Thread tcs
Hi, I wrote a simple web service with two methods, one that would take an array and one that would return an array. public String[] getAbc() { String[] strs = new String[3]; strs[0] = a; strs[1] = b; strs[2] = c; return strs; } public

Re: XML elements does not belong to the namespace

2007-12-13 Thread Daniel Kulp
I'm deploying a new 2.0.4 snapshot now that SHOULD fix it. (I'd appreciate it if that could be verified) We'll probably shoot for a 2.0.4 release mid January sometime. Dan On Thursday 13 December 2007, tcs wrote: Thanks very much for looking into this. I'm working on fixing this now,

RE: Configuring JAX-WS Handler in spring configuration file

2007-12-13 Thread Gopal Janjanam
Thanks Dan and Jervis for your responses. Added a feature request for this: https://issues.apache.org/jira/browse/CXF-1301 Best, gopal -Original Message- From: Daniel Kulp [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 11, 2007 1:13 PM To:

add more attribute to my XML element

2007-12-13 Thread priya j
Hi, I am using the CXF HTTP binding for my application. I want to add some more attribute to my xml element. output is: ?xml version=1.0 encoding=UTF-8 ? - QueryResult xmlns=http://webservice.com; - result /result /QueryResult I need something like the following ?xml version=1.0

Re: bug in sec:include / exclude ?

2007-12-13 Thread Fred Dushin
That doesn't seem right. If the filters are not doing the right thing, then this is definitely a bug and should be filed. Are you sure that the configuration you are specifying is getting applied to the endpiont that's getting logged? I have not seen this behavior before, but I also don't

Re: Interceptor configuration not working

2007-12-13 Thread Jim Ma
Hi , You can set the log level to FINE [1] to see if this interceptor is really added to the interceptor chain . [1] http://cwiki.apache.org/CXF20DOC/debugging.html Regards Jim Thorsten Jungblut wrote: Hi, i'm using CXF in Tomcat 6.0. I deployed a simple JAX-WS Webservice along with CXF

Re: SOAP flow Compression?

2007-12-13 Thread Tophebboy
Yes, I'm using Eclipse STP and SOA tools. When you generate the code from your wsdl, a web.xml and a cxf-servlet.xml are generated in the same folder as the wsdl. The same process occurs when you generates your war. And the generated files always overwrite your files... Glen Mazza-2 wrote: