Re: Need a sample CXF web service creation steps

2014-08-09 Thread Romain Manni-Bucau
Code first most of the time.


Romain Manni-Bucau
Twitter: @rmannibucau
Blog: http://rmannibucau.wordpress.com/
LinkedIn: http://fr.linkedin.com/in/rmannibucau
Github: https://github.com/rmannibucau


2014-08-09 1:06 GMT+02:00 Anthony Fryer apfr...@hotmail.com:
 Are you using contract first (ie. you have the WSDL already and need to
 create the web service implementation for it), or code first (you have no
 WSDL and just want to write the code and generate the WSDL)?





 --
 View this message in context: 
 http://tomee-openejb.979440.n4.nabble.com/Need-a-sample-CXF-web-service-creation-steps-tp4670917p4670944.html
 Sent from the TomEE Users mailing list archive at Nabble.com.


Need a sample CXF web service creation steps

2014-08-08 Thread john77eipe
I need help with CXF 2 web services. I'm using eclipse (luna) and tomee+.
 
What are the steps involved in creating JAX-WS services and clients.

Steps given  tomee-examples
http://tomee.apache.org/examples-trunk/simple-webservice/README.html   are
incomplete.




--
View this message in context: 
http://tomee-openejb.979440.n4.nabble.com/Need-a-sample-CXF-web-service-creation-steps-tp4670913.html
Sent from the TomEE Users mailing list archive at Nabble.com.


Re: Need a sample CXF web service creation steps

2014-08-08 Thread Alex Soto
For clients the best way I think is using wsdl2java. This is a tool
provided by Apache CXF which generates interfaces to be used by clients.
This interfaces contains as method the method calls of the WebService. And
then you can use them with WebServices classes to get a Proxy around that
stub interface and call methods as any other method. Internally they will
create all connection to remote WS. For example:

QName qname = new QName(nameSpaceURI,localPart);

Service service = Service.create(url, qname);
GeneratedInterface interface = service.getPort(GeneratedInterface.class);
interface.mybusinessmethd();


Any question in server part?



2014-08-08 7:50 GMT+02:00 john77eipe john77e...@gmail.com:

 I need help with CXF 2 web services. I'm using eclipse (luna) and tomee+.

 What are the steps involved in creating JAX-WS services and clients.

 Steps given  tomee-examples
 http://tomee.apache.org/examples-trunk/simple-webservice/README.html
 are
 incomplete.




 --
 View this message in context:
 http://tomee-openejb.979440.n4.nabble.com/Need-a-sample-CXF-web-service-creation-steps-tp4670913.html
 Sent from the TomEE Users mailing list archive at Nabble.com.




-- 
+--+
  Alex Soto Bueno - Computer Engineer
  www.lordofthejars.com
+--+


Re: Need a sample CXF web service creation steps

2014-08-08 Thread Andy Gumbrecht

David has a really good blog on the subject here:

http://www.tomitribe.com/blog/2014/06/apache-tomee-jax-rs-and-arquillian-starter-project/

What steps on the site are incomplete? - I will try to fill in the 
missing gaps.


Andy.

On 08/08/2014 07:50, john77eipe wrote:

I need help with CXF 2 web services. I'm using eclipse (luna) and tomee+.
  
What are the steps involved in creating JAX-WS services and clients.


Steps given  tomee-examples
http://tomee.apache.org/examples-trunk/simple-webservice/README.html   are
incomplete.




--
View this message in context: 
http://tomee-openejb.979440.n4.nabble.com/Need-a-sample-CXF-web-service-creation-steps-tp4670913.html
Sent from the TomEE Users mailing list archive at Nabble.com.






Re: Need a sample CXF web service creation steps

2014-08-08 Thread Anthony Fryer
Are you using contract first (ie. you have the WSDL already and need to
create the web service implementation for it), or code first (you have no
WSDL and just want to write the code and generate the WSDL)?





--
View this message in context: 
http://tomee-openejb.979440.n4.nabble.com/Need-a-sample-CXF-web-service-creation-steps-tp4670917p4670944.html
Sent from the TomEE Users mailing list archive at Nabble.com.