Re: SOAP::Lite IP Address Validation

2003-01-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Leo Lapworth" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 20, 2003 3:16 PM Subject: Re: SOAP::Lite IP Address Validation > On Mon, Jan 20, 2003 at 12:46:53PM -, Andy Williams (IMAP HILLWAY) wrote: > > I

Re: SOAP::Lite IP Address Validation

2003-01-20 Thread Leo Lapworth
On Mon, Jan 20, 2003 at 12:46:53PM -, Andy Williams (IMAP HILLWAY) wrote: > I have a SOAP server (using SOAP::Lite) that I only want to access from > certain IP addresses. > > Is this possible? If so, how do I do it? Put a firewall in between the SOAP server and then limit access to what ever

Re: SOAP::Lite IP Address Validation

2003-01-20 Thread Simon Wistow
On Mon, Jan 20, 2003 at 01:12:19PM -, Andy Williams (IMAP HILLWAY) said: > Forgot to mention that the server in not an HTTP server but a Daemon so > $ENV{'REMOTE_ADDR'} is not populated. Well, if it's TCP then I presume you'd subclass SOAP::Transport::TCP::Server and modify the handle() method

Re: SOAP::Lite IP Address Validation

2003-01-20 Thread Joel Bernstein
On Mon, Jan 20, 2003 at 01:12:19PM -, Andy Williams (IMAP HILLWAY) wrote: > - Original Message - > From: "Simon Wistow" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, January 20, 2003 1:07 PM > Subject: Re: SOAP::Lite IP Address Vali

Re: SOAP::Lite IP Address Validation

2003-01-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Simon Wistow" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 20, 2003 1:07 PM Subject: Re: SOAP::Lite IP Address Validation > On Mon, Jan 20, 2003 at 12:46:53PM -, Andy Williams (IMAP HILLWAY) said: > > H

Re: SOAP::Lite IP Address Validation

2003-01-20 Thread Simon Wistow
On Mon, Jan 20, 2003 at 12:46:53PM -, Andy Williams (IMAP HILLWAY) said: > Hi, > > I have a SOAP server (using SOAP::Lite) that I only want to access from > certain IP addresses. Check $ENV{'REMOTE_ADDR'} ?

SOAP::Lite IP Address Validation

2003-01-20 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I have a SOAP server (using SOAP::Lite) that I only want to access from certain IP addresses. Is this possible? If so, how do I do it? Thanks Andy