>In a handler we can find who will receive the request with the method
>getTargetService()
>But how can we get information about who is the sender of this request ?
>
>Valerie
what do you mean with information about the sender? to get the username &
ip:
----> snip <----
public void onFault(MessageContext in_msgContext) {
try {
if (in_msgContext != null) {
String strUsername = in_msgContext.getUsername();
String strRemoteAddress = (String)
in_msgContext.getProperty(REMOTE_ADDR_KEY);
----> snap <----
cheers,
j.