Java Mailing List Archive

http://www.gg3721.com/

Home » Struts Users Mailing List »

user Digest 20 May 2008 15:31:13 -0000 Issue 8039

user-digest-help

2008-05-20


Author LoginPost Reply

user Digest 20 May 2008 15:31:13 -0000 Issue 8039

Topics (messages 186611 through 186626):

Re: Jsp struts
 186611 by: Antonio Petrelli

Struts[2] : Checkboxlist Problems
 186612 by: Hoying, Ken

Re: Struts 2 with RAD 6
 186613 by: Struts Two

Re: HTML renders incompletely
 186614 by: Relph,Brian

Re: Maven struts2-archetype-starter error
 186615 by: maestro

Re: Spring autowiring null values
 186616 by: Ian Meikle
 186620 by: Dave Newton

Struts 2 xml validation doesn't work
 186617 by: smoonoz
 186621 by: Dave Newton

Submitting a form without selecting checkboxes yields 'Input' result
 186618 by: Michael Gagnon

Can one use the annotation action specification with Tiles?
 186619 by: Gamble, Wesley (WG10)
 186622 by: Dave Newton
 186625 by: Gamble, Wesley (WG10)

Re: [Struts 2] Datetimepicker tag Bug ?!
 186623 by: Milan Milanovic

What's the procedure to be taken off the strut email list ?
 186624 by: Jose Cardoso
 186626 by: Musachy Barroso

Administrivia:

---------------------------------------------------------------------
To post to the list, e-mail: user@(protected)
To unsubscribe, e-mail: user-digest-unsubscribe@(protected)
For additional commands, e-mail: user-digest-help@(protected)

----------------------------------------------------------------------

Attachment: user_186611.ezm (zipped)
2008/5/19 Sapan <swapna.khedkar@(protected)>:
> ???en_US.errors.required??????en_US.errors.required???

Sorry, I think I got it.
It seems that you have not defined the "errors.required" property in
your "messageresources.properties", so the <html:errors> tag gets
confused and prints that stuff.

Antonio

Attachment: user_186612.ezm (zipped)
I have a list of search filters that I am displaying on the page where
each is a checkboxlist. I am implementing this as such:

<s:iterator value="searchCriteria.filters" status="filterStatus">
 <s:checkboxlist
 
name="searchCriteria.filterMap['%{fieldName}'].selectedFilters"
   value="%{selectedFilters}"

   list="filterItems" listKey="value" listValue="label"/>
</s:iterator>

Everything works great except for one small problem. I do not seem to
be able to deselect all of the values for a filter. For example, if one
of my filters is Status and the check box values are Active and Inactive
then:

- I can select both Active and Inactive.
- I can leave both Active and Inactive deselected.
- I can default to have Active selected and then deslect it and then
select Inactive.
- I CANNOT default to have Active selected and then deselect it.

It appears that if a checkbox was originally set you can change the
value as long as you change it to some other value. However if I do not
set the field to any value at all, then it keeps the previous or default
value.

I am not sure what is occurring here. Does anyone have any ideas on how
I can overcome this?

Thank you!
Ken

Attachment: user_186613.ezm (zipped)
This has sth to do with ur project facets. You need either to go to ur project properites and change ur project facets accordingly, or create a new project from scratch and then copy over the contents of src file and webcontent (for web.xml try to copy and past contents one by one). I had a similar problem and I ended up creating a new one in RAD 7 and then copy. I got this problem when you move a project from RAD 6.0 to RAD 7.0.
regards,


----- Original Message ----
From: achandra <alokcs@(protected)>
To: user@(protected)
Sent: Monday, May 19, 2008 7:13:56 PM
Subject: Re: Struts 2 with RAD 6


Hello Cheng,
  I am trying to make Struts 2 work with RAD 7.0. It is not working I mean
the very first page is fine but after that when it tries to look for the
action, it is giving error and in the url it is ending .action. It is not
able to find the jsp page. I can send the directory structure and struts.xml
and the folder where I am putting struts.xml and jsp pages. I am missing
something or placing things in wrong directories. I am very close and I
guess there is small change that can make it work.
Thank you


   __________________________________________________________________
Be smarter than spam. See how smart SpamGuard is at giving junk email the boot with the All-new Yahoo! Mail. Click on Options in Mail and switch to New Mail today or register for free at http://mail.yahoo.ca

Attachment: user_186614.ezm (zipped)

I think you should start with making your markup valid. There is a free service to do so: http://validator.w3.org/

Looking at your html, I can see several problems that can cause missing fragments (especially in ie6):

1) Unclosed tags  - <link rel='stylesheet' href='css/default.css'>
     - <img width="100%" src="images/BlueBar_3.gif">

2) Duplicate HEAD tags

3) Self-closing script tags - <script type="text/javascript" src="js/init.js" />

Brian Relph

-----Original Message-----
From: Antonio Petrelli [mailto:antonio.petrelli@(protected)]
Sent: Tuesday, May 20, 2008 5:37 AM
To: Struts Users Mailing List
Subject: Re: HTML renders incompletely

2008/5/20 <volker@(protected)>:
>                </tbody>
>           </table>
>     </body>
> </html

That's strange, it seems that it is not flushing the content...
I think this is a bug, but I cannot guess what the problem is at the moment. Could you open a JIRA ticket, attaching a sample webapp (with source)?
https://issues.apache.org/struts/

In the meantime, try to simply add some newlines at the end of the Tiles layout page, probably the last part of the page will show up...

Antonio

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)

----------------------------------------------------------------------
CONFIDENTIALITY NOTICE This message and any included attachments are from Cerner Corporation and are intended only for the addressee. The information contained in this message is confidential and may constitute inside or non-public information under international, federal, or state securities laws. Unauthorized forwarding, printing, copying, distribution, or use of such information is strictly prohibited and may be unlawful. If you are not the addressee, please promptly delete this message and notify the sender of the delivery error by e-mail or you may call Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1) (816)221-1024.

Attachment: user_186615.ezm (zipped)
I have been unable to continue with this until now.
Funny thing is that it is now working.

Perhaps a typo on my part?

I did install m2eclipse and then I ran into the problem.
Not sure that stopping my machine and starting it again would have an
impact?

Anyways thanks for your time and patience!
- Glenn

Attachment: user_186616.ezm (zipped)
Yes I have tried, but as I previously said, this is the STRUTS2 Spring
plugin that is causing this behaviour NOT Spring.

More details:

I have a ModelDrive action.
In my JSP, I have the tag:
    <s:textfield name="person.name" />

In some situations when we call the action we create a new model, which
does not have a person.
In this case, the plugin tries to create a new person so that it can set
the name.

I do not want it to do this.

Regards
Ian

CSC Solutions Norge AS
Registered Office: Sandsliåsen 57, 5254 Sandsli, Norway
Registered in Norway No: 958 958 455

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This is a PRIVATE message. If you are not the intended recipient, please
delete without copying and kindly advise us by e-mail of the mistake in
delivery.
NOTE: Regardless of content, this e-mail shall not operate to bind CSC to
any order or other contract unless pursuant to explicit written agreement
or government initiative expressly permitting the use of e-mail for such
purpose.
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------




Dave Newton <newton.dave@(protected)>
20.05.2008 13:46
Please respond to
"Struts Users Mailing List" <user@(protected)>


To
Struts Users Mailing List <user@(protected)>
cc

Subject
Re: Spring autowiring null values






Have you *tried* setting autowiring to "no" in the spring config file?

I'm still not convinced this is the issue you're trying to solve, but
as more details aren't forthcoming, this is all I have for you.

Dave

--- Ian Meikle <imeikle@(protected):

> Hi Dave,
>
> Thanks for that, I have now read the Spring documentation.
> It seems that the default in Spring is no autowiring so no further
> config
> required here.
>
> It seems that it is the STRUTS2 Spring plugin that needs to be
> configured
> to not perform autowiring, specifically
> com.opensymphony.xwork2.spring.SpringObjectFactory
> which is a part of xwork2.
>
> Looking at the source code it does not seem that autowiring can be
> switched off and this I feel is a problem.
>
> Regards
> Ian
>
> CSC Solutions Norge AS
> Registered Office: Sandsli�sen 57, 5254 Sandsli, Norway
> Registered in Norway No: 958 958 455
>
>
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
> This is a PRIVATE message. If you are not the intended recipient,
> please
> delete without copying and kindly advise us by e-mail of the mistake
> in
> delivery.
> NOTE: Regardless of content, this e-mail shall not operate to bind
> CSC to
> any order or other contract unless pursuant to explicit written
> agreement
> or government initiative expressly permitting the use of e-mail for
> such
> purpose.
>
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>
>
>
> Dave Newton <newton.dave@(protected)>
> 19.05.2008 17:16
> Please respond to
> "Struts Users Mailing List" <user@(protected)>
>
>
> To
> Struts Users Mailing List <user@(protected)>
> cc
>
> Subject
> Re: Spring autowiring null values
>
>
>
>
>
>
> --- Ian Meikle <imeikle@(protected):
>
> > I have already read this page, the possible values are given as:
> >
> > name, type, auto or constructor.
> >
> > There is no NONE, or OFF value, and looking at the source code
> there
> > does not seem to be support for it either.
> > Hence why I am asking if there is another way of turning this off.
>
> That's why I mentioned the Spring documentation.
>
>
http://static.springframework.org/spring/docs/2.0.x/reference/beans.html#beans-factory-autowire

>
>
> Unless you're using 2.5, in which case look in the 2.5 documentation.
>
> Dave
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)



Attachment: user_186620.ezm (zipped)
--- Ian Meikle <imeikle@(protected):
> Yes I have tried, but as I previously said, this is the STRUTS2
> Spring plugin that is causing this behaviour NOT Spring.
>
> More details:
>
> I have a ModelDrive action.
> In my JSP, I have the tag:
>      <s:textfield name="person.name" />
>
> In some situations when we call the action we create a new model,
> which does not have a person. In this case, the plugin tries to
create
> a new person so that it can set the name.
>
> I do not want it to do this.

What, specifically, leads you to believe this is a Spring issue?

Do you have a bean defined with the "person" (or "model", I suppose?)
name such that Spring is aware of it and would try to instantiate it
and inject it into your action?

Dave


Attachment: user_186617.ezm (zipped)

Hi guys,

I been following some spring 2 tutorials and cannot make struts 2 to
validate forms using xml syntax. Annotations seem to work fine though. I'm
running my apps using:

Tomcat Version  JVM Version  JVM Vendor  OS Name  OS Version  OS
Architecture
Apache Tomcat/6.0.16  1.6.0_03-b05  Sun Microsystems Inc.  Linux
2.6.22-14-generic  i386

Don't know if I'm missing some important configuration, but I think not
because downloaded code from tutorials don't work either. All other
functionality seem to work OK.

Tutorials are "Bootstrap" y "Struts 2 + Spring 2 + JPA + AJAX" from:

http://struts.apache.org/2.0.11.1/docs/tutorials.html

Cheers,

Stan
--
Sent from the Struts - User mailing list archive at Nabble.com.


Attachment: user_186621.ezm (zipped)
You'll need to provide more information, like where your validation
files are, their names, the configs of the actions that aren't
validating, etc.

I've never had any issues with XML validation, so I'd first check out
the basics. (I'm also not running on Tomcat 6, which I suppose could
cause a problem.)

Dave

--- smoonoz <stalinmunoz@(protected):
>  I been following some spring 2 tutorials and cannot make struts 2
> to
> validate forms using xml syntax. Annotations seem to work fine
> though. I'm
> running my apps using:
>
> Tomcat Version  JVM Version  JVM Vendor  OS Name  OS Version  OS
> Architecture
> Apache Tomcat/6.0.16  1.6.0_03-b05  Sun Microsystems Inc.  Linux
> 2.6.22-14-generic  i386
>
> Don't know if I'm missing some important configuration, but I think
> not because downloaded code from tutorials don't work either. All
> other functionality seem to work OK.
>
>  Tutorials are "Bootstrap" y "Struts 2 + Spring 2 + JPA + AJAX"
> from:
>
> http://struts.apache.org/2.0.11.1/docs/tutorials.html


Attachment: user_186618.ezm (zipped)
My JSP resembles:


...
<s:form namespace="/labs" action="ApproveItems" method="post" >
...
 <s:iterator value="loggedInUser.approvableBillingItems"
status="stat" id="next">
   <s:hidden name="itemsPresent" value="%{id}"/>
   ...
   <td><s:checkbox name="approved" fieldValue="%{id}"
required="false"/></td>
   ...
 </s:iterator>
...
</s:form>
...



My action resembles:

...
public class ApproveItemsAction extends ActionSupport {
 private Integer[] approved;
 private Integer[] itemsPresent;
 ...
 public void setApproved(Integer[] approved){ this.approved =
approved; }
 public void setItemsPresent(Integer[] itemsPresent){
this.itemsPresent = itemsPresent; }
}




When some number of checkboxes are selected, then I get an array containing
the ID values of the checked objects. This is correct. When NO checkboxes
are selected, I get:
No result defined for action bpf.labs.action.ApproveItemsAction and result
input

Which is not expected. My action never hits the execute method in this
scenario. It never even hits 'setApproved' (it does if there are values
checked. It does not if there are none). I expect setApproved be called with
an empty array or just null. Either is acceptable -- Null being what I
expect I'd PROBABLY see and an empty array being what I'd be HAPPY to see.
Instead this situation just seems to confuse struts and 'input' is returned
at what looks like the time the parameter interceptor is probably trying to
handle the checkboxes.



Is there a way to handle this? Having no checkboxes selected needs to be an
acceptable form submission state for this action. My itemsPresent array must
be null or an empty array.



Attachment: user_186619.ezm (zipped)
All,



Can I use the Struts 2 annotation - style of specifying action results
to set a tile name as the target for a Struts action? In my testing,
I've been unable to, although I have successfully done it with the XML
action specification in struts.xml. My suspicion is that perhaps the
annotations are processed in some way that precludes the
recognition/detection of tile definitions?



Here's my action:



@Result(name = "success", value="startApplication")



public class ApplicationStartAction {  

   private String pageTitle;

   private String companyName;

   

   public String execute() throws Exception {

       pageTitle = "Start Job Application";

       companyName = "Men's Wearhouse";      

       return "success";

   }



...getters and setters here..

}



Here's my tiles.xml file:



<!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD
Tiles Configuration 2.0//EN"

    "http://tiles.apache.org/dtds/tiles-config_2_0.dtd">

       

<tiles-definitions>

<definition name="baseLayout" template="/layouts/base.jsp">

   <put-attribute name="head" value="/tiles/head.jsp"/>

   <put-attribute name="body" value="/tiles/body.jsp"/>

</definition>



<definition name="startApplication" extends="baseLayout">

</definition>

</tiles-definitions>



When I attempt to execute the ApplicationStartAction, I get the error:
The requested resource (/ApplicantTracking/startApplication) is not
available.

which I assume to mean that the action result mapping to the tile
definition is not working.



Thanks,

Wes






Attachment: user_186622.ezm (zipped)
You're not specifying the result type, so it's trying to use
"dispatcher" results, which aren't Tiles-aware (obviously :)

Dave

--- "Gamble, Wesley (WG10)" <WG10@(protected):
> Can I use the Struts 2 annotation - style of specifying action
> results
> to set a tile name as the target for a Struts action? In my testing,
> I've been unable to, although I have successfully done it with the
> XML
> action specification in struts.xml. My suspicion is that perhaps the
> annotations are processed in some way that precludes the
> recognition/detection of tile definitions?
>
>
>
> Here's my action:
>
>
>
> @Result(name = "success", value="startApplication")
>
>
>
> public class ApplicationStartAction {  
>
>     private String pageTitle;
>
>     private String companyName;
>
>    
>
>     public String execute() throws Exception {
>
>         pageTitle = "Start Job Application";
>
>         companyName = "Men's Wearhouse";      
>
>         return "success";
>
>     }
>
>
>
> ...getters and setters here..
>
> }
>
>
>
> Here's my tiles.xml file:
>
>
>
> <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software
> Foundation//DTD
> Tiles Configuration 2.0//EN"
>
>     "http://tiles.apache.org/dtds/tiles-config_2_0.dtd">
>
>        
>
> <tiles-definitions>
>
>  <definition name="baseLayout" template="/layouts/base.jsp">
>
>     <put-attribute name="head" value="/tiles/head.jsp"/>
>
>     <put-attribute name="body" value="/tiles/body.jsp"/>
>
>  </definition>
>
>  
>
>  <definition name="startApplication" extends="baseLayout">
>
>  </definition>
>
> </tiles-definitions>
>
>
>
> When I attempt to execute the ApplicationStartAction, I get the
> error:
> The requested resource (/ApplicantTracking/startApplication) is not
> available.
>
> which I assume to mean that the action result mapping to the tile
> definition is not working.
>
>
>
> Thanks,
>
> Wes
>
>
>
>
>
>


Attachment: user_186625.ezm (zipped)
So, are you saying that this:

<result-types>
  <result-type name="tiles"
class="org.apache.struts2.views.tiles.TilesResult" default="true"/>
</result-types>

in my struts.xml doesn't influence how the annotation-specified result
is processed?

If so, where should I put whatever annotation directive to specify that
results are tiles in general? Obviously, I'd like to put it in one
place.

Thanks,
Wes

-----Original Message-----
From: Dave Newton [mailto:newton.dave@(protected)]
Sent: Tuesday, May 20, 2008 10:09 AM
To: Struts Users Mailing List
Subject: Re: Can one use the annotation action specification with Tiles?

You're not specifying the result type, so it's trying to use
"dispatcher" results, which aren't Tiles-aware (obviously :)

Dave

--- "Gamble, Wesley (WG10)" <WG10@(protected):
> Can I use the Struts 2 annotation - style of specifying action
> results
> to set a tile name as the target for a Struts action? In my testing,
> I've been unable to, although I have successfully done it with the
> XML
> action specification in struts.xml. My suspicion is that perhaps the
> annotations are processed in some way that precludes the
> recognition/detection of tile definitions?
>
>
>
> Here's my action:
>
>
>
> @Result(name = "success", value="startApplication")
>
>
>
> public class ApplicationStartAction {  
>
>     private String pageTitle;
>
>     private String companyName;
>
>    
>
>     public String execute() throws Exception {
>
>         pageTitle = "Start Job Application";
>
>         companyName = "Men's Wearhouse";      
>
>         return "success";
>
>     }
>
>
>
> ...getters and setters here..
>
> }
>
>
>
> Here's my tiles.xml file:
>
>
>
> <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software
> Foundation//DTD
> Tiles Configuration 2.0//EN"
>
>     "http://tiles.apache.org/dtds/tiles-config_2_0.dtd">
>
>        
>
> <tiles-definitions>
>
>  <definition name="baseLayout" template="/layouts/base.jsp">
>
>     <put-attribute name="head" value="/tiles/head.jsp"/>
>
>     <put-attribute name="body" value="/tiles/body.jsp"/>
>
>  </definition>
>
>  
>
>  <definition name="startApplication" extends="baseLayout">
>
>  </definition>
>
> </tiles-definitions>
>
>
>
> When I attempt to execute the ApplicationStartAction, I get the
> error:
> The requested resource (/ApplicantTracking/startApplication) is not
> available.
>
> which I assume to mean that the action result mapping to the tile
> definition is not working.
>
>
>
> Thanks,
>
> Wes
>
>
>
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)


Attachment: user_186623.ezm (zipped)
I'm not sure if this is a problem. I switched my browser only to US
locale language and also in regional options and it is the same! I think
that is some conversion problem from jsp page to Date in version
2.0.11.1.
 
Regards, Milan

Ian Meikle <imeikle@(protected).
I assume you are not using an US locale in your client browser.
We use Norwegian and German and it does not work.

Regards
Ian

CSC Solutions Norge AS
Registered Office: Sandsliåsen 57, 5254 Sandsli, Norway
Registered in Norway No: 958 958 455

   

Attachment: user_186624.ezm (zipped)

Hi All !

What's the procedure to have my email removed from the struts mailing list ? I have already requested my email to be taken off the list but the administrators don't seem to be willing to do it .

Jose

-----Original Message-----
From: Milan Milanovic [mailto:milanmilanovich@(protected)]
Sent: 20 May 2008 16:23
To: Struts Users Mailing List
Subject: Re: [Struts 2] Datetimepicker tag Bug ?!

I'm not sure if this is a problem. I switched my browser only to US locale language and also in regional options and it is the same! I think that is some conversion problem from jsp page to Date in version 2.0.11.1.
 
Regards, Milan

Ian Meikle <imeikle@(protected).
I assume you are not using an US locale in your client browser.
We use Norwegian and German and it does not work.

Regards
Ian

CSC Solutions Norge AS
Registered Office: Sandsliåsen 57, 5254 Sandsli, Norway Registered in Norway No: 958 958 455

   

*********************************************************************************
Working Together for a Better Tower Hamlets
Web site : http://www.towerhamlets.gov.uk

London Borough of Tower Hamlets E-Mail Disclaimer.

This communication and any attachments are intended for the addressee only and may be confidential. It may contain privileged and confidential information and if you are not the intended recipient, you must not copy, distribute or take any action in reliance on it. If you have received this E-Mail in error please notify us as soon as possible and delete this E-Mail and any attachments. This message has been checked for viruses, however we cannot guarantee that this message or any attachment is virus free or has not been intercepted or amended. The information contained in this E-Mail may be subject to public disclosure under the Freedom of Information Act 2000. Unless the information is legally exempt from disclosure, the Confidentiality of this E-Mail and your reply cannot be guaranteed.

If your request relates to a Freedom of Information enquiry, please resend this to foi@(protected)
************************************************************************************


Attachment: user_186626.ezm (zipped)
email "user-unsubscribe@(protected)
the subject, that should do.

musachy

On Tue, May 20, 2008 at 11:28 AM, Jose Cardoso
<Jose.Cardoso@(protected):
>
> Hi All !
>
> What's the procedure to have my email removed from the struts mailing list ? I have already requested my email to be taken off the list but the administrators don't seem to be willing to do it .
>
> Jose
>
> -----Original Message-----
> From: Milan Milanovic [mailto:milanmilanovich@(protected)]
> Sent: 20 May 2008 16:23
> To: Struts Users Mailing List
> Subject: Re: [Struts 2] Datetimepicker tag Bug ?!
>
> I'm not sure if this is a problem. I switched my browser only to US locale language and also in regional options and it is the same! I think that is some conversion problem from jsp page to Date in version 2.0.11.1.
>
> Regards, Milan
>
> Ian Meikle <imeikle@(protected).
> I assume you are not using an US locale in your client browser.
> We use Norwegian and German and it does not work.
>
> Regards
> Ian
>
> CSC Solutions Norge AS
> Registered Office: Sandsliåsen 57, 5254 Sandsli, Norway Registered in Norway No: 958 958 455
>
>
>
> *********************************************************************************
> Working Together for a Better Tower Hamlets
> Web site : http://www.towerhamlets.gov.uk
>
> London Borough of Tower Hamlets E-Mail Disclaimer.
>
> This communication and any attachments are intended for the addressee only and may be confidential. It may contain privileged and confidential information and if you are not the intended recipient, you must not copy, distribute or take any action in reliance on it. If you have received this E-Mail in error please notify us as soon as possible and delete this E-Mail and any attachments. This message has been checked for viruses, however we cannot guarantee that this message or any attachment is virus free or has not been intercepted or amended. The information contained in this E-Mail may be subject to public disclosure under the Freedom of Information Act 2000. Unless the information is legally exempt from disclosure, the Confidentiality of this E-Mail and your reply cannot be guaranteed.
>
> If your request relates to a Freedom of Information enquiry, please resend this to foi@(protected)
> ************************************************************************************
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>



--
"Hey you! Would you help me to carry the stone?" Pink Floyd
©2008 gg3721.com - Jax Systems, LLC, U.S.A.