Re[2]: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread Pavlikus
Hello struts, Thursday, August 19, 2004, 7:36:38 AM, you wrote: sD> - Original Message - sD> From: "Pavlikus" <[EMAIL PROTECTED]> sD> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> sD> Sent: Thursday, August 19, 2004 4:30 PM sD> Subj

Re: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread Pavlikus
owing variant? In "execute" method of RegistrationAction: 1. Drop ALL expired records from database 2. Commit user info to DB sD> - sD> To unsubscribe, e-mail: [EMAIL PROTECTED] sD> For additional com

Firebird relative url

2004-06-27 Thread Pavlikus
Hi all. I use Firebird with Hibernate. Is any way to specify relative url for database url? I was try many variants of url, but all of them fail. My hibernate.properties file: hibernate.connection.url jdbc:firebirdsql:localhost/3050:/WEB-INF/db/mydb.gdb - fail jdbc:firebirdsql:localhost/3050:WEB

Re[2]: StrursTestCase -- AbstractMethodError

2004-06-24 Thread Pavlikus
- >> From: Pavlikus [mailto:[EMAIL PROTECTED] >> Sent: Thursday, June 24, 2004 11:20 AM >> To: [EMAIL PROTECTED] >> Subject: StrursTestCase -- AbstractMethodError >> >> >> Hi all. >> When I override the processPreprocess m

StrursTestCase -- AbstractMethodError

2004-06-24 Thread Pavlikus
Hi all. When I override the processPreprocess method of RequestProcessor and my tests starts to fail. java.lang.AbstractMethodError: servletunit.struts.StrutsRequestWrapper.getRequestURL()Ljava/lang/StringBuffer; at jforum.utils.JForumRequestProcessor.processPreprocess(JForumRequestProcessor.jav

Fwd: Re[4]: Different form tags on same jsp

2004-06-22 Thread Pavlikus
GR> Pavlikus, the error message you posted was: >> >> But when jsp compiles - it show following error: >> >> -- The end tag " So are you saying this is not the error you got (or are getting now?) GR> In any case, post the error you got and then maybe someone ca

Re[2]: Different form tags on same jsp

2004-06-22 Thread Pavlikus
Hello Geeta, Tuesday, June 22, 2004, 8:47:08 PM, you wrote: GR> Hi Pavlikus : GR> I think you may just have a typo: GR> <-- don't end tag here.. I'm sorry, this is just misprint when I typing letter. I decide to simplify example and make an error. Original tags:

Different form tags on same jsp

2004-06-22 Thread Pavlikus
Hi all. I want to reuse the jsp page with form where user can Register or Edit Profile. I do like: I expect what it render form tag for registrationForm if user have GUEST_ROLE role, and tag for editProfileForm is user have prepotent roles. But when jsp compiles - it show follo

Re[2]: I Wondor Why Validation Doesn't Validate

2004-06-22 Thread Pavlikus
ML> Dear Friends ML> Thank you very much for your attention; I checked both 'validate="true" ' ML> and also 'empty spaces', they didn't solve the problem. ML> Actually the part of 'if (!errors.isEmpty())' returns false all the time(see ML> below, section 4). ML> My previous project is already wor

Struts-menu question

2004-06-21 Thread Pavlikus
Hi all. Sory for a offtopic, but there are no response from struts-menu mailing list... May be some of you familiar with struts-menu. I try to add PermissionAdapter to my menu. But method is isAllowed was never called. Please point out me my mistakes. Menu-config: Jsp: <%@ taglib uri

html-el:link and url from resources

2004-06-21 Thread Pavlikus
Hi all. My menus defined in resources file. Like that: user-menu.profile =Edit profile user-menu.profile.link =/EditProfile.do user-menu.profile.tooltip =Edit your preferences Now, when i want to show menu items, I run into unexpectedness. I can't show url in html:link tag. Instead it shows the p

Re: I Wondor Why Validation Doesn't Validate

2004-06-21 Thread Pavlikus
Hello Mailing, Monday, June 21, 2004, 1:55:03 PM, you wrote: ML> Dear All, ML> I did the follow steps for setting validation, but there is no error on an ML> empty field checking 'chequeNumber' (see below plz). ML> 1. Placing the validation.xml & validator-rules.xml in WEB-INF folder ML> 2. I

jstl trouble

2004-06-20 Thread Pavlikus
Hello all. <% UserSessionInfo info = (UserSessionInfo) session.getAttribute(UserSessionInfo.USER_SESSION_INFO_KEY); out.println(info.getUser().getLogin()); %> Later on page: Please tell me where my mistake. Also, is there ways to avoid scriptlets on my jsp? I use but

Re[2]: Forward from tile

2004-06-12 Thread Pavlikus
Thank you Niall. It works! I extend TilesRequestProcessor class and overload processForwardConfig method. There I put forward.getName() value in session. It works but I have a little questions on this subj. To use such feature I need to declare almost of my forward as global forwards. Is it normal

Forward from tile

2004-06-12 Thread Pavlikus
Hi. My 'header' tile contains the banner and drop-down box for language choose. This header tile included on each page of site. I use tile-controller class to prepare languages list and Action for setup desired language in session: How can I return on previous page when user change language? And h