This post originated from an RSS feed registered with .NET Buzz
by Arjen Poutsma.
Original Post: XFire Annotations
Feed Title: The Ancient Art of Programming
Feed URL: http://feeds.feedburner.com/TheAncientArtOfProgramming
Feed Description: A blog about programming in .NET and Java
Recently, I have been working on annotation support for XFire, the light-weight, next-gen, Axis-less Java SOAP framework. Basically, what we are aiming for is that you can use JSR-181-like annotations to export your web service:
package org.codehaus.xfire.annotations.sample;
...
@WebService
public class EchoService
{
@WebMethod
public String echo(@WebParam(name="name",header=true) String ...