You could also look at instanceOfMessageContext.getProperty("remoteaddr"). I
discovered this handy property after enumerating through all properties in message
context.
Cory
-----Original Message-----
From: Sharmila Pillai [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 18, 2003 8:43 AM
To: [EMAIL PROTECTED]
Subject: Re: Client's IP address
It did indeed!
Thanks much,
Sharmila.
On 18/2/03 2:16 pm, "Wagner,Harry" <[EMAIL PROTECTED]> wrote:
> Hi Sharmila,
> The following should get you started...
>
> public class ServiceLogHandler extends BasicHandler {
>
> public void invoke(MessageContext msgContext) throws AxisFault {
>
> HttpServletRequest req = (HttpServletRequest) msgContext.getProperty
> (HTTPConstants.MC_HTTP_SERVLETREQUEST);
> String clientIP = req.getRemoteAddr();
> }
> }
>
> Regards,
> Harry Wagner