RE: Non CFX clients for CFX web services

2011-10-03 Thread Tim
David Sills wrote: I would strongly suggest you try doing the code generation using wsdl2java; your code should work then. If that's true, then you can try narrowing the issues. You don't necessarily have to continue to use the generated code (though I do so) but it should help you center

Re: Non CFX clients for CFX web services

2011-09-30 Thread Willem Jiang
You can access the WSDL with is generated from the CXF service from this url http://localhost:8080/trainCFX/HelloWorld?WSDL. I just have a quick look at the AxisClient, it looks it still use the JAXRPC API which is replaced by JAXWS. That could explain why you AxisClient can get the right

Re: Non CFX clients for CFX web services

2011-09-30 Thread Tim
Willem.Jiang wrote: You can access the WSDL with is generated from the CXF service from this url http://localhost:8080/trainCFX/HelloWorld?WSDL. I knew about it. I got wsdl description (see first post) this way. Willem.Jiang wrote: I just have a quick look at the AxisClient, it

Re: Non CFX clients for CFX web services

2011-09-30 Thread Glen Mazza
I have a Java-first example here: http://www.jroller.com/gmazza/entry/java_first_web_service On 09/30/2011 01:12 AM, Tim wrote: Thanks, Glen Mazza. I'll learn you tutorial. But my problem is is slightly different. I don't create a WSDL-first web service. I don't use wsdl at all and create web

RE: Non CFX clients for CFX web services

2011-09-30 Thread David Sills
. David Sills -Original Message- From: Tim [mailto:s...@mail.ru] Sent: Friday, September 30, 2011 12:50 AM To: users@cxf.apache.org Subject: RE: Non CFX clients for CFX web services David Sills, thank you for your answer. No. I don't generate client from wsdl. I don't use wsdl at all

RE: Non CFX clients for CFX web services

2011-09-29 Thread David Sills
Tim: I regularly develop Axis 1.4 clients for my CXF web services (I have to, because any batch processes that use the services have to work from Java 1.4.2) and have never encountered any problems. I assume you are generating your client code from your WSDL? Does everything look as you would

Re: Non CFX clients for CFX web services

2011-09-29 Thread Glen Mazza
Someone else has answered your Axis question, but for another example of interoperability my DoubleIt tutorial creates both Metro and CXF clients and service providers, of which a client of one framework can successfully call the service of another:

Re: Non CFX clients for CFX web services

2011-09-29 Thread Tim
Thanks, Glen Mazza. I'll learn you tutorial. But my problem is is slightly different. I don't create a WSDL-first web service. I don't use wsdl at all and create web service like in http://cxf.apache.org/docs/writing-a-service-with-spring.html