RE: Hosting

2006-10-23 Thread draegoon Z
For a private tomcat server with SSH/FTP access, start and stop whenever for only like $17USD: http://4java.ca You can't beat this! I've been using them for 3 year. --- WEB DESIGN BY DRAEGOONZ Joseph "DraegoonZ

Re: Struts and AJAX

2006-07-03 Thread draegoon Z
DESIGN BY DRAEGOONZ Joseph "DraegoonZ" McGranaghan http://www.draegoonZ.com 603-620-0854 [EMAIL PROTECTED] From: "Frank W. Zammetti" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: Struts and AJAX Dat

Re: Struts and AJAX

2006-07-03 Thread draegoon Z
-- WEB DESIGN BY DRAEGOONZ Joseph "DraegoonZ" McGranaghan http://www.draegoonZ.com 603-620-0854 [EMAIL PROTECTED] From: "Frank W. Zammetti" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: R

Re: Struts and AJAX

2006-07-03 Thread draegoon Z
That CodeExecuter is nice! With dojo.io.bind() I use DWRUtil.setValue() to load the response into my , which doesn't execute any

Re: Struts and AJAX

2006-07-03 Thread draegoon Z
" McGranaghan http://www.draegoonZ.com 603-620-0854 [EMAIL PROTECTED] From: "Frank W. Zammetti" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: Struts and AJAX Date: Mon, 03 Jul 2006 14:54:47 -0400 Goo

Re: Struts and AJAX

2006-07-03 Thread draegoon Z
vawebparts.sourceforge.net/ I suggest clicking the Javadocs link and going to the first package listed, javawebparts.ajaxparts.taglib... all the details can be found there... then, download JWP and check out the sample app for all sorts of examples of APT usage. Shill time over :) Frank draeg

Re: Struts and AJAX

2006-07-03 Thread draegoon Z
vawebparts.sourceforge.net/ I suggest clicking the Javadocs link and going to the first package listed, javawebparts.ajaxparts.taglib... all the details can be found there... then, download JWP and check out the sample app for all sorts of examples of APT usage. Shill time over :) Frank draeg

RE: Struts and AJAX

2006-07-03 Thread draegoon Z
Hey, I use DWR + dojo to use AJAX with struts: http://getahead.ltd.uk/dwr/ http://dojotoolkit.com/ Although dojo has some flashy widgets and stuff, its power is the dojo.io.bind() function: http://dojotoolkit.org/docs/intro_to_dojo_io.html Here is an example of using Struts A

Re: [OT] Verifying Image Generator?

2006-04-25 Thread draegoon Z
s *not* have to be used as a servlet, you can call its functionality manually, i.e., from an Action, etc. The full sample app for JWP shows its usage: http://javawebparts.sourceforge.net Frank draegoon Z wrote: Does anyone know where I can find one of those "image code generators&

[OT] Verifying Image Generator?

2006-04-24 Thread draegoon Z
Does anyone know where I can find one of those "image code generators" that verifies that a person is submitting a form and not a computer? I'd rather not stop to recreate the wheel. Thanks - To unsubscribe, e-mail: [EMAIL

System architechture best practice

2006-04-13 Thread draegoon Z
I want to make several web applications using struts, running on tomcat, mysql database, and torque to generate object model. For example, a shopping cart and an email front-end. I want to build them in such a way that I can reuse them in other webapps. Any suggestions on the best way to go abo

Action servlet unavailable

2006-04-05 Thread draegoon Z
Hey guys, I have just started bringing an older opensource CMS wepapp called owxv3 (http://www.eadmin.ch/pages/en/owxv3/) up to speed. Switched it from 1.1 to 1.2.8. Making OS and database independent. Changing templating to tiles. I'm getting this error: 2006-04-05 23:10:04 StandardContext[

displaying errors, not html

2005-11-29 Thread draegoon Z
I have an application that has a popup displaying all errors on a page. After the popup is closed I need a way to get each error for the individual properties. will not work because I'm inside another tag that won't allow it. I need a way to get the error string for a property using EL, J

messages help

2005-08-22 Thread draegoon Z
Sorry, but I've been reading archives all morning. Using Struts 1.2.7 Setting up a system to catch all errors/messages on a page. Getting the errors from my ActionForm: ActionErrors errors = new ActionErrors(); errors.add("system_name",new ActionError("errors.required",ar.getMessage("com.drae

RE: Pass errors to tile for popup

2005-08-04 Thread draegoon Z
Is the only solution a tiles controller? Ok, I gotta go to my day job. I'll check in this afternoon. Thanx. From: "draegoon Z" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: RE: Pass errors to tile for popup

RE: Pass errors to tile for popup

2005-08-03 Thread draegoon Z
error messages --%> <%-- add error to the list --%> I could see the value of ${error}, so I'm definitely reading the errors. Can this not be done with tiles like this? Later From: "draegoon Z" <

Pass errors to tile for popup

2005-08-03 Thread draegoon Z
I need some code snippets please: I'm trying to have a page popup a window that will display all the errors in the first page. For cleanliness purposes, and modularity, I will use a tile to this code. I will do this either by putting the errors in the session, or by getting them from a dyna

Re: carriage returns

2005-06-14 Thread draegoon Z
emove some whitespace in conf/web.xml you can set trimSpaces to true. It will remove whitespace between tags. eg Would be reduced to but abc def would be abc def draegoon Z wrote: Hey guys, I'm finally sick of all the unwanted carriage returns created by

Re: carriage returns

2005-06-14 Thread draegoon Z
emove some whitespace in conf/web.xml you can set trimSpaces to true. It will remove whitespace between tags. eg Would be reduced to but abc def would be abc def draegoon Z wrote: Hey guys, I'm finally sick of all the unwanted carriage returns created by

carriage returns

2005-06-14 Thread draegoon Z
Hey guys, I'm finally sick of all the unwanted carriage returns created by tiles and struts tags. I searched the archives and found this trick: but it doesn't fix everything, especially comments. Has anyone else gotten sick of this and came up with a quick and clean solution? Thanks.

JSP + CSS

2005-05-20 Thread draegoon Z
Is there any way to use a JSP page as a CSS stylesheet? Like: @import url("./css/TEST.jsp"); What I'm trying to do is actually use tiles tags inside the stylesheet to make a template so as to seriously reduce the amount of CSS. Anybody got any good solutions out there for this? Thanx ---

RE: Seeking advice image resizing

2005-05-05 Thread draegoon Z
I solved this problem with a mysql db blob field and a servlet with params to dynamically resize the image. The code can be found at http://www.draegoonz.com/downloads.do I haven't done anything with the site in a while, so let me know if you have problems. From: "Scott Purcell" <[EMAIL PROTECTE

[OT] Security Filter

2005-05-03 Thread draegoon Z
Got everything working fine. But I'm wondering about the forward to the "logon_error.jsp" page. In the example apps, the JSP page just says "Bad username and password combination" and doesn't try to access any request info. I was wondering if the is any info passed to give finer grained control.

Re: [OT] JSTL + Collection size

2005-04-29 Thread draegoon Z
or <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: [OT] JSTL + Collection size Date: Fri, 29 Apr 2005 07:30:49 -0400 Size: draegoon Z wrote: Just trying to find the ${my_collection.size} or ${my_collectio

Re: [OT] JSTL + Collection size

2005-04-28 Thread draegoon Z
gt; Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: [OT] JSTL + Collection size Date: Thu, 28 Apr 2005 16:39:52 -0700 From: "draegoon Z" <[EMAIL PROTECTED]> > Just trying to find the ${my_collection.size} or ${my_collectio

[OT] JSTL + Collection size

2005-04-28 Thread draegoon Z
Just trying to find the ${my_collection.size} or ${my_collection.length}! Why is it not that simple? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

common-controls

2005-04-22 Thread draegoon Z
Hey guys, I was just checking out the common-controls website. Quite impressive. If there isn't already a place, we should be sharing our controls and tiles templates that we all create anyways. Should be an opensource format for this stuff. Would this not be helpful and in the opensource spirit

tiles definition overload

2005-03-02 Thread draegoon Z
if I do this: and then: (or is it beanName?) what will be the value of var1? Or will this work at all? I basically want a default value in the definition, but a way to change the value in a JSP page. --

archives

2005-02-10 Thread draegoon Z
Is there anywhere to get the most recent emails from an archive for struts? Meaning Feb 2005. Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: named anchor and form

2005-02-02 Thread draegoon Z
Thanks, your solution is exactly what I needed. From: Wendy Smoak <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: named anchor and form Date: Wed, 02 Feb 2005 16:09:17 -0700 From: "draegoon Z" <[EMAIL PROTECTED]&

named anchor and form

2005-02-02 Thread draegoon Z
Hey guys, the archive text search ability is temporarily down, sorry. I have a JSP page with an html:form that on the bottom has location fields, i.e. state/city. Now I have chosen to have the states prepopulated, however, when someone selects a state, the form submits and a hidden field serves

Re: Q. Should a J2EE architect be an HTML expert

2005-01-07 Thread draegoon Z
I use HTML, CSS, Javascript, JSP, Struts, Torque, Tomcat, and MySQL. I design web apps from frontend to the server to the data model and configure the server. I'm only limited by my imagination. Although I do use best practices and design in a module way... I don't like having my head in the sand.

RE: [OT] JDBCRealm + SecurityFilter

2004-09-25 Thread draegoon Z
it should either work instantly or be relatively easy for your to customize. Regards, David, politely remding you to Google and RTFM before posting -Original Message- From: draegoon Z [mailto:[EMAIL PROTECTED] Sent: Saturday, September 25, 2004 2:04 PM To: [EMAIL PROTECTED] Subject: [OT] JDBCR

[OT] JDBCRealm + SecurityFilter

2004-09-25 Thread draegoon Z
Can anyone point me to an example of code to tie a SecurityFilter into a JDBCRealm? When I get this all working, I'm going to post it with a detailed descrition and source! _ Don’t just search. Find. Check out the new MSN Search! http