Here's a quick example how to do this; create a controller and implement the DO_REQUEST like this:
method do_request.
data remote_ip type string.
remote_ip = request->get_header_field( `~remote_addr` ).
write( remote_ip ).
endmethod.
Edit: I could not test this with a web dispatcher though.
0
vwegert
On
Ordinarily, that should be possible, but since you're behind a Web Dispatcher, I'd say you'll only ever see the IP of the Web Dispatcher. You'll probably have to implement some kind of logging there instead of inside the BSP application.
Here's a quick example how to do this; create a controller and implement the
DO_REQUESTlike this:Edit: I could not test this with a web dispatcher though.