show/hide this revision's text 4 spelling, syntax, formatting

We are using a "Java first" approach. This means we generate our Java classes, and then use the web services framework to dynamically generate WSDL from those classes. The alternative is "WSDL First", where you use tools to generate Java stub code from the WSDL and XSD.

If you like itthe Java-first approach, I can recommend you CXF as a reliable framework for quick creation of web serviceswhich . It works finewell.

For now I have/had 3 issues with CXF:

  1. One of pitfall that me wet was a data binding. Standard JAXB data binding works only in simple cases without additional tuning. Because of that we decided switch to native CXF data binding Aegis.

    Minor

  2. A minor but annoying issue is using Collection exists with the use of Collections in a POJO class that was classe exposed as a web service. Classes that you plan to put into Collections must implement Comparable interface otherwise you'll get a strange runtime exception.

  3. You can't have both CXF and it's predecessor XFire library in your classpath. Not sure that it's important for you, but it can be sufficient for an upgrade from XFire to CXF.

And my last point that isn't directly related to CXF. If you plan to call web services throw through Mule 2.x ESB (as we are) you can find that it's not as easy as it was with Mule 1.x and XFire.

Update: New issue that you can met meet calling WS throw the CXF API. If your WS is shielded by HTTP basic authentication (i.e. username and password) and you call WS using a dynamic proxy, you most probably met will get a 401 error (error authentication)authentication challenge). Workaround described here.

Regarding Spring WS, AFAIK it's wsdl first approach. If you like it, possible it's your case.

show/hide this revision's text 3 401 error calling WS throw CXF

We are using Java first approach and If like it, I can recommend you CXF as reliable framework for quick creation web services which works fine.

For now I have/had 3 issues with CXF:

One of pitfall that me wet was a data binding. Standard JAXB data binding works only in simple cases without additional tuning. Because of that we decided switch to native CXF data binding Aegis.

Minor but annoying issue is using Collection in POJO class that was exposed as web service. Classes that you plan to put into Collections must implement Comparable interface otherwise you'll get strange runtime exception.

You can't have both CXF and it's predecessor XFire library in your classpath. Not sure that it's important for you, but it can be sufficient for an upgrade from XFire to CXF.

And my last point that isn't directly related to CXF. If you plan to call web services throw Mule 2.x ESB (as we are) you can find that it's not as easy as it was with Mule 1.x and XFire.

Update: New issue that you can met calling WS throw the CXF API. If your WS shielded by HTTP basic authentication (i.e. username and password) and you call WS using dynamic proxy, you most probably met 401 error (error authentication). Workaround described here.

Regarding Spring WS, AFAIK it's wsdl first approach. If you like it, possible it's your case.

show/hide this revision's text 2 added 53 characters in body

We are using Java first approach and If you are in you like it, I can recommend you CXF as reliable framework for quick creation web services which works fine.

For now I have have/had 3 issues with CXF:

One of pitfall that me wet with it - standard was a data binding. Standard JAXB data binding requires works only with in simple cases without additional parametrisations and you can decide as tuning. Because of that we did decided switch to use Aegis native CXF data binding instead of JAXBAegis.

Minor but annoying issue related to is using Collection in POJO class that use Collections (List, Set etc.)was exposed as web service. Classes that you plan to put into Collections have to implements must implement Comparable interface otherwise you got you'll get strange runtime exception.

You can't have both CXF and it's predecessor XFire libar library in your classpath. Not sure that it's your caseimportant for you, but it's it can be sufficient only for an upgrade from XFire to CXF.

And my last point that isn't directly related to CXF. If you plan to call web services throw Mule 2.x ESB (as we didare) you can find that it's not as easy as it was with Mule 1.x and XFire.

Regarding Spring WS, AFAIK it's wsdl first approach. If you like it, possible it's your case.

show/hide this revision's text 1