I have a simple web service:

@WebService
 public interface HelloService {
   String sayHello(String name);
 }

 public  public class HelloServiceImpl implements HelloService {
   public String sayHello(String name) {
     return "Hallo, " + name + "!";
   }
 }

But now I would like to access some stuff from the HttpServletRequest.
Like for example the remoteHost.

Is there any way to get the HttpServletRequest when defining services
using the JSR-181 annotations?

S.

---------------------------------------------------------------------
To unsubscribe from this list please visit:

   http://xircles.codehaus.org/manage_email

Reply via email to