Difference between
version 8
and
version 6:
At line 4 changed 1 line. |
This tutorial will show you how to create a Webservice Endpoint and what you can do to automate the creation of artifacts necessary to provide Webservices to others. |
This tutorial will show you how to create a Webservice Endpoint and what you can do to automate the creation of artifacts necessary to provide Webservices to others. Note that in 1.9.1, an [XFire|http://xfire.codehaus.org] installer exists in the ''extras'' directory. Using XFire is the recommended tool for creating web services in an AppFuse application. See the [AppFuse + XFire|AppFuseXFire] tutorial for more information about this installer. |
At line 320 changed 1 line. |
return users == null ? null : (User [])users.toArray(); |
return users == null ? null : users.toArray(new User[users.size()]); |
Back to AppFuseAxis,
or to the Page History.
|