Re: Modules in Struts 1.2.8

2006-02-11 Thread Torgeir Veimo
tion /search > at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:759) > > What's the problem ? You probably have to specify what module the action is in with the module="" attribute. -- Torgeir Veimo <[EMAIL PROTECTED]> -

Re: Site Setup, Need Advise On Struts Config

2006-02-11 Thread Torgeir Veimo
not 100% sure, but I think robots follow redirects. -- Torgeir Veimo <[EMAIL PROTECTED]> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Site Setup, Need Advise On Struts Config

2006-02-11 Thread Torgeir Veimo
use a normal http redirect instead of using javascript? -- Torgeir Veimo <[EMAIL PROTECTED]> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Auto generated JSP for beans

2006-02-10 Thread Torgeir Veimo
ml description of the bean, then transform the xml description using xslt. This allows you to define the template for each property type more easily in xml itself. The second approach also allows you more intermedia steps eg. permissioning filter of the bean properties. -- Torgeir Veimo

Re: Struts internationalization best practices

2006-02-08 Thread Torgeir Veimo
share your experiences and practices. We greatly appreciated > it. Why don't you store the parapgraph long text as a velocity template? They can contain constructs similar to JSP tags, but don't need to be inside a JSP file, so you have more freedom to construct the pipeline for the tex

Re: LDAP Authentication

2006-01-27 Thread Torgeir Veimo
ment in a single class using JNDI. Or you may google for "JNDI realm" to see some existing code. Most security implementation uses url patterns to match requests to the appropriate security constraints, I guess this is what you're familiar with from

Re: JSTL formatting for displaytag column

2006-01-26 Thread Torgeir Veimo
On Thu, 2006-01-26 at 10:43 -0500, fea jabi wrote: > > > > > > I am not sure what the value="${}" would be. You can add an id="row" to the display:table tag, and use ${row.balance}

Re: [OT]Query and update LDAP

2006-01-20 Thread Torgeir Veimo
is the de facto standard for accessing LDAP directories in Java. Maybe you can elaborate about what you're trying to do in particular? Identity management and administration? -- Torgeir Veimo <[EMAIL PROTECTED]> --

Re: How to use a POJO inside Struts FormBean?

2006-01-12 Thread Torgeir Veimo
What am I doing wrong? Probably the bean property naming along with the setters and getters, we need to see them all to see what's wrong. And your nested bean should be serializable. Did you look into using nested tags? -- Torge

Re: How to update part of JSP using AJAX and struts action class

2006-01-12 Thread Torgeir Veimo
g to do; http://getahead.ltd.uk/dwr/examples/lists -- Torgeir Veimo <[EMAIL PROTECTED]> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Space in jsp

2006-01-12 Thread Torgeir Veimo
to enable gzip. Well, if memory serves right, websphere can do it in version 5 and up, but i guess they call it http compression. You need to look in the configuration or help section. It's also possible, but more difficult to do it with a se

RE: Space in jsp

2006-01-12 Thread Torgeir Veimo
y fast between you and your test server. And if you try to view the files with the browser, it transparently decompresses them for you, so you never really notice. -- Torgeir Veimo <[EMAIL PROTECTED]> - To unsubsc

RE: Space in jsp

2006-01-12 Thread Torgeir Veimo
On Thu, 2006-01-12 at 14:50 +0530, Meenakshi Singh wrote: > Hi, > > Would you please explain what gzip compression in the servlet container is? http://www.httprevealer.com/usage_gzip.htm -- Torgeir Veimo <[EMA

RE: Space in jsp

2006-01-12 Thread Torgeir Veimo
re using. If it's tomcat, look in server.xml, on a you can add the following properties; compression="on" compressionMinSize="2048" noCompressionUserAgents="gozilla, traviata" compressableMimeType

Re: Space in jsp

2006-01-11 Thread Torgeir Veimo
jsp page... It's per jsp spec, whitespace is retained, and i think (if memory serves right) that tags are converted to whitespace. You can turn on gzip compression in the servlet container to compress output to reduce page download time. -- Torg

Re: [ANNOUNCEMENT] JSP Controls Tag Library 0.3 is released

2006-01-11 Thread Torgeir Veimo
On Wed, 2006-01-11 at 15:07 -0800, Michael Jouravlev wrote: > > Form, Link and Submit tags What about a component that works with commons-upload to give visual progress feedback for uploading large files? -- Torgeir Veimo <[EMAIL

RE: Want dynamic menus----struts menu tutorial?

2005-12-14 Thread Torgeir Veimo
iable name in a class. Last release is more than a year old. -- Torgeir Veimo <[EMAIL PROTECTED]> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Struts DTD - basic question

2005-12-13 Thread Torgeir Veimo
apache.org/commons/dtds/validator_1_1_3.dtd > > And so my validator-rules.xml file. They should be in the struts jar file. Does your DOCTYPE exactly match those of the dtd files? -- Torgeir Veimo <[EMAIL PROTECTED]> --