RE: Redirect to home page on logon

2003-07-21 Thread Tarek M. Nabil
Thanks, I got the idea. But I imagine that since my application is protected, any 
request I make will be redirected to the login page. And since telnet doesn't support 
sessions, I don't I'll every get rid of that, or can I?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Sunday, July 20, 2003 11:52 AM
To: Tomcat Users List
Subject: Re: Redirect to home page on logon


Hi, this is what I do smetimes (nly to look at my own things, of
course...):
$ telnet 192.168.1.200 80
...
It might respose by telling me :
..
Trying 192.16.1.200.. 
Connected to 12.168.1.200
...
Then you type in something like this :
GET /help.txt HTTP/1.0
...
It will probably give you a log winded response like this :
HTTP/1.1 20 OK
Date: balbla
Server: Apache/1.3.26 (Unix) blbla
Conetent -Type: text/plain
..
You ca a lot of info from it. You look at your own things of course.
And so forth. Hope that helps.

Tarek M. Nabil wrote:
 
 Thanks Tim. Could you please elaborate more on how to use telnet to do this.
 
 -Original Message-
 From: Tim Funk [mailto:[EMAIL PROTECTED]
 Sent: Thursday, July 17, 2003 10:49 PM
 To: Tomcat Users List
 Subject: Re: Redirect to home page on logon
 
 I recommend posting to the struts list and hope they don't respond by saying
 please post to the tomcat list
 
 Also telnet is nice for debugging requests too so you can see the headers
 begin returned in case some wacky redirect logic is being invoked that you
 might not be detecting.
 
 -Tim
 
 Tarek M. Nabil wrote:
  Tim, the Filter thing is a great idea, and it worked just fine. Thanks a million.
 
  Now, I have another problem that I just can't figure out. After the session 
  expires and the user makes a request, he's sent to the login page by Tomcat. After 
  he logs in, he's still sent to the error page. Of course the filter intercepts 
  this and redirects to the home page.
 
  I still can't figure out, though, why the request is sent to the error page. It 
  really doesn't make sense.
 
  I have my error pages configured as follows:
 
  !-- error pages --
  error-page
error-code500/error-code
location/error.do/location
  /error-page
  error-page
error-code404/error-code
location/error.do/location
  /error-page
  error-page
exception-typejava.lang.Exception/exception-type
location/error.do/location
  /error-page
 
  In error.do I do some logging, then forward to error.jsp. What's really driving me 
  crazy, is that in the case I was just describing, the request is sent directly to 
  error.jsp and it doesn't even go to error.do. I tried adding some debugging info 
  in error.jsp to see what error is happening, but, although the isErrorPage is 
  set to true, there's no exception object.
 
  I went into the Tomcat server.xml and raised the debug level to 4 for both the 
  host and the engine, and still the Tomcat logs does not mention anything about the 
  error that causes the forwarding to error.jsp. I even checked stdout and stderr, 
  nothing.
 
  What I can't understand is how the container knows about error.jsp, it's not 
  mentioned anywhere in my web.xml. The only place it's mentioned in is in the 
  struts-config.xml file. I even changed it's name to something else, thinking that 
  maybe error.jsp is some default value or something like index.jsp, but it didn't 
  help.
 
  Please, someone help me out here.
 
  -Original Message-
  From: Tim Funk [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, July 16, 2003 8:24 PM
  To: Tomcat Users List
  Subject: Re: Redirect to home page on logon
 
 
  Use a filter. Its container independent.
 
  The filter runs on the appropriate (or all) requests and would check if the
  beans are in the session. If not - redirect.
 
  OR
 
  If all the pages set an error condition - you might be able to use an error
  mapping directive in web.xml
 
  -Tim
 
  Tarek M. Nabil wrote:
 
 Hi everyone,
 
 I have an application that uses beans stored in the session context. If the user's 
 session times out, he's asked to re-login on his next request. For this, I'm using 
 J2EE security; I'm not doing it myself.
 After the user is finished with the re-login, he's supposed to complete his 
 request, but the fact that the beans are not in the session anymore produces an 
 error.
 Unfortunately, those beans are specific to the last request the user made, so I 
 cannot re-initialize them in a listener for session creation.
 
 I was wondering if there's a way to configure security so that after the user logs 
 in he's redirected to a certain page instead of being able to continue his last 
 request.
 
 I know this can be done manually, but I would have to do it in every web component 
 I have which is really tiresome. Any quick solutions?
 
 Any help is appreciated.
 
 I'm sorry that this question is not Tomcat specific, but I tried the 
 servlet-interest list and got no responses.
 
 Thanks,
 Tarek M. Nabil

Re: Redirect to home page on logon

2003-07-21 Thread Tim Funk
Telnet should support the full HTTP Spec. ;)

The tricky part is knowing the headers to send with your request and 
remembering any special headers you get back  for your next request. For example:

=
[EMAIL PROTECTED]: telnet jenny 80
Trying 10.0.1.20 ...
Connected to jenny
Escape character is '^]'.
GET / HTTP/1.1
Host: jenny
Connection: close
Cookie: JSESSIONID=8675309.jenny
=
-Tim

Tarek M. Nabil wrote:
Thanks, I got the idea. But I imagine that since my application is protected, any request I make will be redirected to the login page. And since telnet doesn't support sessions, I don't I'll every get rid of that, or can I?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Sunday, July 20, 2003 11:52 AM
To: Tomcat Users List
Subject: Re: Redirect to home page on logon
Hi, this is what I do smetimes (nly to look at my own things, of
course...):
$ telnet 192.168.1.200 80
...
It might respose by telling me :
..
Trying 192.16.1.200.. 
Connected to 12.168.1.200
...
Then you type in something like this :
GET /help.txt HTTP/1.0
...
It will probably give you a log winded response like this :
HTTP/1.1 20 OK
Date: balbla
Server: Apache/1.3.26 (Unix) blbla
Conetent -Type: text/plain
..
You ca a lot of info from it. You look at your own things of course.
And so forth. Hope that helps.

Tarek M. Nabil wrote:

Thanks Tim. Could you please elaborate more on how to use telnet to do this.

-Original Message-
From: Tim Funk [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 17, 2003 10:49 PM
To: Tomcat Users List
Subject: Re: Redirect to home page on logon
I recommend posting to the struts list and hope they don't respond by saying
please post to the tomcat list
Also telnet is nice for debugging requests too so you can see the headers
begin returned in case some wacky redirect logic is being invoked that you
might not be detecting.
-Tim

Tarek M. Nabil wrote:

Tim, the Filter thing is a great idea, and it worked just fine. Thanks a million.

Now, I have another problem that I just can't figure out. After the session expires and the user makes a request, he's sent to the login page by Tomcat. After he logs in, he's still sent to the error page. Of course the filter intercepts this and redirects to the home page.

I still can't figure out, though, why the request is sent to the error page. It really doesn't make sense.

I have my error pages configured as follows:

   !-- error pages --
   error-page
 error-code500/error-code
 location/error.do/location
   /error-page
   error-page
 error-code404/error-code
 location/error.do/location
   /error-page
   error-page
 exception-typejava.lang.Exception/exception-type
 location/error.do/location
   /error-page
In error.do I do some logging, then forward to error.jsp. What's really driving me crazy, is that in the case I was just describing, the request is sent directly to error.jsp and it doesn't even go to error.do. I tried adding some debugging info in error.jsp to see what error is happening, but, although the isErrorPage is set to true, there's no exception object.

I went into the Tomcat server.xml and raised the debug level to 4 for both the host and the engine, and still the Tomcat logs does not mention anything about the error that causes the forwarding to error.jsp. I even checked stdout and stderr, nothing.

What I can't understand is how the container knows about error.jsp, it's not mentioned anywhere in my web.xml. The only place it's mentioned in is in the struts-config.xml file. I even changed it's name to something else, thinking that maybe error.jsp is some default value or something like index.jsp, but it didn't help.

Please, someone help me out here.

-Original Message-
From: Tim Funk [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 16, 2003 8:24 PM
To: Tomcat Users List
Subject: Re: Redirect to home page on logon
Use a filter. Its container independent.

The filter runs on the appropriate (or all) requests and would check if the
beans are in the session. If not - redirect.
OR

If all the pages set an error condition - you might be able to use an error
mapping directive in web.xml
-Tim

Tarek M. Nabil wrote:


Hi everyone,

I have an application that uses beans stored in the session context. If the user's 
session times out, he's asked to re-login on his next request. For this, I'm using 
J2EE security; I'm not doing it myself.
After the user is finished with the re-login, he's supposed to complete his request, 
but the fact that the beans are not in the session anymore produces an error.
Unfortunately, those beans are specific to the last request the user made, so I cannot 
re-initialize them in a listener for session creation.
I was wondering if there's a way to configure security so that after the user logs in he's redirected to a certain page instead of being able to continue his last request.

I know this can be done manually, but I would have to do it in every web

RE: Redirect to home page on logon

2003-07-20 Thread Tarek M. Nabil
Thanks Tim. Could you please elaborate more on how to use telnet to do this.

-Original Message-
From: Tim Funk [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 17, 2003 10:49 PM
To: Tomcat Users List
Subject: Re: Redirect to home page on logon


I recommend posting to the struts list and hope they don't respond by saying 
please post to the tomcat list

Also telnet is nice for debugging requests too so you can see the headers 
begin returned in case some wacky redirect logic is being invoked that you 
might not be detecting.

-Tim

Tarek M. Nabil wrote:
 Tim, the Filter thing is a great idea, and it worked just fine. Thanks a million.
 
 Now, I have another problem that I just can't figure out. After the session expires 
 and the user makes a request, he's sent to the login page by Tomcat. After he logs 
 in, he's still sent to the error page. Of course the filter intercepts this and 
 redirects to the home page.
 
 I still can't figure out, though, why the request is sent to the error page. It 
 really doesn't make sense.
 
 I have my error pages configured as follows:
 
 !-- error pages --
 error-page 
   error-code500/error-code
   location/error.do/location
 /error-page
 error-page 
   error-code404/error-code
   location/error.do/location
 /error-page
 error-page 
   exception-typejava.lang.Exception/exception-type
   location/error.do/location
 /error-page
 
 In error.do I do some logging, then forward to error.jsp. What's really driving me 
 crazy, is that in the case I was just describing, the request is sent directly to 
 error.jsp and it doesn't even go to error.do. I tried adding some debugging info in 
 error.jsp to see what error is happening, but, although the isErrorPage is set to 
 true, there's no exception object.
 
 I went into the Tomcat server.xml and raised the debug level to 4 for both the host 
 and the engine, and still the Tomcat logs does not mention anything about the error 
 that causes the forwarding to error.jsp. I even checked stdout and stderr, nothing.
 
 What I can't understand is how the container knows about error.jsp, it's not 
 mentioned anywhere in my web.xml. The only place it's mentioned in is in the 
 struts-config.xml file. I even changed it's name to something else, thinking that 
 maybe error.jsp is some default value or something like index.jsp, but it didn't 
 help.
 
 Please, someone help me out here.
 
 -Original Message-
 From: Tim Funk [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 16, 2003 8:24 PM
 To: Tomcat Users List
 Subject: Re: Redirect to home page on logon
 
 
 Use a filter. Its container independent.
 
 The filter runs on the appropriate (or all) requests and would check if the 
 beans are in the session. If not - redirect.
 
 OR
 
 If all the pages set an error condition - you might be able to use an error 
 mapping directive in web.xml
 
 -Tim
 
 Tarek M. Nabil wrote:
 
Hi everyone,

I have an application that uses beans stored in the session context. If the user's 
session times out, he's asked to re-login on his next request. For this, I'm using 
J2EE security; I'm not doing it myself.
After the user is finished with the re-login, he's supposed to complete his request, 
but the fact that the beans are not in the session anymore produces an error.
Unfortunately, those beans are specific to the last request the user made, so I 
cannot re-initialize them in a listener for session creation.

I was wondering if there's a way to configure security so that after the user logs 
in he's redirected to a certain page instead of being able to continue his last 
request.

I know this can be done manually, but I would have to do it in every web component I 
have which is really tiresome. Any quick solutions?

Any help is appreciated.

I'm sorry that this question is not Tomcat specific, but I tried the 
servlet-interest list and got no responses.

Thanks,
Tarek M. Nabil
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Redirect to home page on logon

2003-07-20 Thread achana
Hi, this is what I do smetimes (nly to look at my own things, of
course...):
$ telnet 192.168.1.200 80
...
It might respose by telling me :
..
Trying 192.16.1.200.. 
Connected to 12.168.1.200
...
Then you type in something like this :
GET /help.txt HTTP/1.0
...
It will probably give you a log winded response like this :
HTTP/1.1 20 OK
Date: balbla
Server: Apache/1.3.26 (Unix) blbla
Conetent -Type: text/plain
..
You ca a lot of info from it. You look at your own things of course.
And so forth. Hope that helps.

Tarek M. Nabil wrote:
 
 Thanks Tim. Could you please elaborate more on how to use telnet to do this.
 
 -Original Message-
 From: Tim Funk [mailto:[EMAIL PROTECTED]
 Sent: Thursday, July 17, 2003 10:49 PM
 To: Tomcat Users List
 Subject: Re: Redirect to home page on logon
 
 I recommend posting to the struts list and hope they don't respond by saying
 please post to the tomcat list
 
 Also telnet is nice for debugging requests too so you can see the headers
 begin returned in case some wacky redirect logic is being invoked that you
 might not be detecting.
 
 -Tim
 
 Tarek M. Nabil wrote:
  Tim, the Filter thing is a great idea, and it worked just fine. Thanks a million.
 
  Now, I have another problem that I just can't figure out. After the session 
  expires and the user makes a request, he's sent to the login page by Tomcat. After 
  he logs in, he's still sent to the error page. Of course the filter intercepts 
  this and redirects to the home page.
 
  I still can't figure out, though, why the request is sent to the error page. It 
  really doesn't make sense.
 
  I have my error pages configured as follows:
 
  !-- error pages --
  error-page
error-code500/error-code
location/error.do/location
  /error-page
  error-page
error-code404/error-code
location/error.do/location
  /error-page
  error-page
exception-typejava.lang.Exception/exception-type
location/error.do/location
  /error-page
 
  In error.do I do some logging, then forward to error.jsp. What's really driving me 
  crazy, is that in the case I was just describing, the request is sent directly to 
  error.jsp and it doesn't even go to error.do. I tried adding some debugging info 
  in error.jsp to see what error is happening, but, although the isErrorPage is 
  set to true, there's no exception object.
 
  I went into the Tomcat server.xml and raised the debug level to 4 for both the 
  host and the engine, and still the Tomcat logs does not mention anything about the 
  error that causes the forwarding to error.jsp. I even checked stdout and stderr, 
  nothing.
 
  What I can't understand is how the container knows about error.jsp, it's not 
  mentioned anywhere in my web.xml. The only place it's mentioned in is in the 
  struts-config.xml file. I even changed it's name to something else, thinking that 
  maybe error.jsp is some default value or something like index.jsp, but it didn't 
  help.
 
  Please, someone help me out here.
 
  -Original Message-
  From: Tim Funk [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, July 16, 2003 8:24 PM
  To: Tomcat Users List
  Subject: Re: Redirect to home page on logon
 
 
  Use a filter. Its container independent.
 
  The filter runs on the appropriate (or all) requests and would check if the
  beans are in the session. If not - redirect.
 
  OR
 
  If all the pages set an error condition - you might be able to use an error
  mapping directive in web.xml
 
  -Tim
 
  Tarek M. Nabil wrote:
 
 Hi everyone,
 
 I have an application that uses beans stored in the session context. If the user's 
 session times out, he's asked to re-login on his next request. For this, I'm using 
 J2EE security; I'm not doing it myself.
 After the user is finished with the re-login, he's supposed to complete his 
 request, but the fact that the beans are not in the session anymore produces an 
 error.
 Unfortunately, those beans are specific to the last request the user made, so I 
 cannot re-initialize them in a listener for session creation.
 
 I was wondering if there's a way to configure security so that after the user logs 
 in he's redirected to a certain page instead of being able to continue his last 
 request.
 
 I know this can be done manually, but I would have to do it in every web component 
 I have which is really tiresome. Any quick solutions?
 
 Any help is appreciated.
 
 I'm sorry that this question is not Tomcat specific, but I tried the 
 servlet-interest list and got no responses.
 
 Thanks,
 Tarek M. Nabil
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED

RE: Redirect to home page on logon

2003-07-17 Thread Tarek M. Nabil

Tim, the Filter thing is a great idea, and it worked just fine. Thanks a million.

Now, I have another problem that I just can't figure out. After the session expires 
and the user makes a request, he's sent to the login page by Tomcat. After he logs in, 
he's still sent to the error page. Of course the filter intercepts this and redirects 
to the home page.

I still can't figure out, though, why the request is sent to the error page. It really 
doesn't make sense.

I have my error pages configured as follows:

!-- error pages --
error-page 
  error-code500/error-code
  location/error.do/location
/error-page
error-page 
  error-code404/error-code
  location/error.do/location
/error-page
error-page 
  exception-typejava.lang.Exception/exception-type
  location/error.do/location
/error-page

In error.do I do some logging, then forward to error.jsp. What's really driving me 
crazy, is that in the case I was just describing, the request is sent directly to 
error.jsp and it doesn't even go to error.do. I tried adding some debugging info in 
error.jsp to see what error is happening, but, although the isErrorPage is set to 
true, there's no exception object.

I went into the Tomcat server.xml and raised the debug level to 4 for both the host 
and the engine, and still the Tomcat logs does not mention anything about the error 
that causes the forwarding to error.jsp. I even checked stdout and stderr, nothing.

What I can't understand is how the container knows about error.jsp, it's not mentioned 
anywhere in my web.xml. The only place it's mentioned in is in the struts-config.xml 
file. I even changed it's name to something else, thinking that maybe error.jsp is 
some default value or something like index.jsp, but it didn't help.

Please, someone help me out here.

-Original Message-
From: Tim Funk [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 16, 2003 8:24 PM
To: Tomcat Users List
Subject: Re: Redirect to home page on logon


Use a filter. Its container independent.

The filter runs on the appropriate (or all) requests and would check if the 
beans are in the session. If not - redirect.

OR

If all the pages set an error condition - you might be able to use an error 
mapping directive in web.xml

-Tim

Tarek M. Nabil wrote:
 Hi everyone,
 
 I have an application that uses beans stored in the session context. If the user's 
 session times out, he's asked to re-login on his next request. For this, I'm using 
 J2EE security; I'm not doing it myself.
 After the user is finished with the re-login, he's supposed to complete his request, 
 but the fact that the beans are not in the session anymore produces an error.
 Unfortunately, those beans are specific to the last request the user made, so I 
 cannot re-initialize them in a listener for session creation.
 
 I was wondering if there's a way to configure security so that after the user logs 
 in he's redirected to a certain page instead of being able to continue his last 
 request.
 
 I know this can be done manually, but I would have to do it in every web component I 
 have which is really tiresome. Any quick solutions?
 
 Any help is appreciated.
 
 I'm sorry that this question is not Tomcat specific, but I tried the 
 servlet-interest list and got no responses.
 
 Thanks,
 Tarek M. Nabil


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Redirect to home page on logon

2003-07-17 Thread Tim Funk
I recommend posting to the struts list and hope they don't respond by saying 
please post to the tomcat list

Also telnet is nice for debugging requests too so you can see the headers 
begin returned in case some wacky redirect logic is being invoked that you 
might not be detecting.

-Tim

Tarek M. Nabil wrote:
Tim, the Filter thing is a great idea, and it worked just fine. Thanks a million.

Now, I have another problem that I just can't figure out. After the session expires and the user makes a request, he's sent to the login page by Tomcat. After he logs in, he's still sent to the error page. Of course the filter intercepts this and redirects to the home page.

I still can't figure out, though, why the request is sent to the error page. It really doesn't make sense.

I have my error pages configured as follows:

!-- error pages --
error-page 
  error-code500/error-code
  location/error.do/location
/error-page
error-page 
  error-code404/error-code
  location/error.do/location
/error-page
error-page 
  exception-typejava.lang.Exception/exception-type
  location/error.do/location
/error-page

In error.do I do some logging, then forward to error.jsp. What's really driving me crazy, is that in the case I was just describing, the request is sent directly to error.jsp and it doesn't even go to error.do. I tried adding some debugging info in error.jsp to see what error is happening, but, although the isErrorPage is set to true, there's no exception object.

I went into the Tomcat server.xml and raised the debug level to 4 for both the host and the engine, and still the Tomcat logs does not mention anything about the error that causes the forwarding to error.jsp. I even checked stdout and stderr, nothing.

What I can't understand is how the container knows about error.jsp, it's not mentioned anywhere in my web.xml. The only place it's mentioned in is in the struts-config.xml file. I even changed it's name to something else, thinking that maybe error.jsp is some default value or something like index.jsp, but it didn't help.

Please, someone help me out here.

-Original Message-
From: Tim Funk [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 16, 2003 8:24 PM
To: Tomcat Users List
Subject: Re: Redirect to home page on logon
Use a filter. Its container independent.

The filter runs on the appropriate (or all) requests and would check if the 
beans are in the session. If not - redirect.

OR

If all the pages set an error condition - you might be able to use an error 
mapping directive in web.xml

-Tim

Tarek M. Nabil wrote:

Hi everyone,

I have an application that uses beans stored in the session context. If the user's 
session times out, he's asked to re-login on his next request. For this, I'm using 
J2EE security; I'm not doing it myself.
After the user is finished with the re-login, he's supposed to complete his request, 
but the fact that the beans are not in the session anymore produces an error.
Unfortunately, those beans are specific to the last request the user made, so I cannot 
re-initialize them in a listener for session creation.
I was wondering if there's a way to configure security so that after the user logs in he's redirected to a certain page instead of being able to continue his last request.

I know this can be done manually, but I would have to do it in every web component I have which is really tiresome. Any quick solutions?

Any help is appreciated.

I'm sorry that this question is not Tomcat specific, but I tried the servlet-interest list and got no responses.

Thanks,
Tarek M. Nabil


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Redirect to home page on logon

2003-07-16 Thread Tim Funk
Use a filter. Its container independent.

The filter runs on the appropriate (or all) requests and would check if the 
beans are in the session. If not - redirect.

OR

If all the pages set an error condition - you might be able to use an error 
mapping directive in web.xml

-Tim

Tarek M. Nabil wrote:
Hi everyone,

I have an application that uses beans stored in the session context. If the user's 
session times out, he's asked to re-login on his next request. For this, I'm using 
J2EE security; I'm not doing it myself.
After the user is finished with the re-login, he's supposed to complete his request, 
but the fact that the beans are not in the session anymore produces an error.
Unfortunately, those beans are specific to the last request the user made, so I cannot 
re-initialize them in a listener for session creation.
I was wondering if there's a way to configure security so that after the user logs in he's redirected to a certain page instead of being able to continue his last request.

I know this can be done manually, but I would have to do it in every web component I have which is really tiresome. Any quick solutions?

Any help is appreciated.

I'm sorry that this question is not Tomcat specific, but I tried the servlet-interest list and got no responses.

Thanks,
Tarek M. Nabil


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]