I've been reading this thread of discussion and one question arises in my
mind that you probably has not taken into consideration.
Is there any limit with session management in your application server? I
mean, Websphere, for example, warns you about storing more than 16K in
session.
To bypass
thanks a lot
Birendar Singh Waldiya
Avinash Gangadharan <[EMAIL PROTECTED]>
09-06-04 12:28 AM
Please respond to
"Struts Users Mailing List" <[EMAIL PROTECTED]>
To
'Struts Users Mailing List'
<[EMAIL PROTECTED]>
cc
Subject
RE: wahtd does it means ?
envCtx = (Context) initCtx
Well, I was using this tag earlier in the week. (We've been trying to stay away from
any Struts specific tags until recently too - we're locked in now anyway, so we might
as well).
It seemed when I was setting errors, the jsp I forwarded to would not show them. I
tried adding a message, and th
Hi,
for html:select tag you can specify value
there you can write your default value from some bean
Nikhil.
Caroline Jen <[EMAIL PROTECTED]> wrote:
I try to create a drop down menu as follow:
I am able to disply the menu.
I want one of the options to be selected by default.
There
Hi,
I am using tiles in Struts1.1.
Earlier i used to write all the definitions in a jsp file like -
String contentURL = .. // Is calculated using some logic in this page itself
My Page
Now i am planning to move to definitions.
How do i h
Thanks for the response.
I am using the "getConnection(request)" method to get the connection
and then "connection.close()" to close the connection.
"getConnection()" and "close()" both are in library files provided by struts
(DBCP).
Therefore it is difficult to put the counter in these methods.
Thanks for your attention.
"Abandand connection management" can you give more details on how to do this.
Masashi Nakane wrote:
> And if you have a chance to try DBCP , Abandand connection management
> function will tell you exactly where the unclosed connections are . You
> will love th
Check
http://jakarta.apache.org/commons/dbcp/configuration.html
's abandanded something parameters.
I am not sure about how to apply this to Struts Datasource.
I've just replaced Struts Datasouce with tomcat JNDI datasource with DBCP.
to decouple Struts and DAOs.
Masashi
At 12:55 04/06/09 +0530,
http://jakarta.apache.org/struts/userGuide/struts-html.html#html
http://jakarta.apache.org/struts/userGuide/struts-html.html#form
- Original Message -
From: "Frank Zammetti" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 02, 2004 2:47 PM
Subject: & : purpose?
> He
No there isn't, but I think it would be a good idea to add "indexed"
attribute to the errors/messages tags.
Why not create an enhancment request in bugzilla and even better, post a
patch.
http://issues.apache.org/bugzilla/
Niall
- Original Message -
From: "Michael Muller" <[EMAIL PROTE
Also you can set the "sort" value before forwarding to the JSP (ie in
the previous action)
1) Action prepares the SORT collection and sets it in the request
2) Action sets default value to "sort" attribute only if "sort" has no
value (so setting the default)
3) Action forwards to JSP
4) JSP renders
Assuming you could do this, how then does struts know when you submit to
"/test/a/" what action to run and for what reason "would like to avoid
exposing the action URL"?
Niall
- Original Message -
From: "Eric Jain" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 03, 2004
How about posting your jsp source to show how you are doing your options.
Niall
- Original Message -
From: "John Antonakos" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, June 04, 2004 9:14 AM
Subject: Re: How can i avoid the use of & in a drop down
Have you configured the Tiles Plugin?
Niall
- Original Message -
From: "SASIDHAR BUDAMPATI" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, June 03, 2004 1:31 PM
Subject: problem with struts-tiles
> hi,
>
> When working with struts-tiles i have been encountered
> with the p
I have the following JSP:
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
test
When I deploy an ear file into either WSAD or WebSphere admin console and check
the precompile JSP
Its context relative...from the user guide...
"action - Use the value of this attribute as the name of a Action to be
looked up, and use the module-relative or context-relative URI found there.
"
http://jakarta.apache.org/struts/userGuide/struts-html.html#link
Niall
- Original Message -
Hi Brati
Well, as far as I can understand, you don't wanna use struts-config for your forward
path
cause it is being generated at runtime. I think this will be helpful
Just before returning from execute of the Action class, you can redirect the control
to any JSP.
response.sendRedirect(response
Harjots way should work (and you return null from the Action) but there is
another more popular way which is to create an ActionForward instance in
your action and return it:
ActionForward fwd = new ActionForward("/FetchNextPage.jsp",true);
return fwd;
(where the boolean specifies whether its a
Hi Navjot
I am late at answering this but still I thought I should.
I agree with the design you have provided, but I wonder why
are you using the ProductDelegate here.
Is your application too big, or do you have too many type of clients ?
Are you using some caching mechanism in business delegate
Do you know the rational behind that WebSphere warning? I mean, the obvious
answer is it uses up server resources and will use more as load increases,
but is there another reason you know of? I ask because I have an
application where we store quite considerably more than 16K without any
probl
No is the short answer, but theres nothing to stop you storing them in the
request under your own key as well in your ActionForm's validate method.
Niall
- Original Message -
From: "Bullard, James" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 08, 2004 9:26 PM
Subject:
Geeta is right
There was a post on this list sometime ago and if I remember it correctly
you will find the solution to this at
http://www.scioworks.net/camino_doc/manual/strutsIntro/struts1_0.html
just look at saveToken in this article.
You have this saveToken method in Action class.
Harjot
-
To implement a similar behaviour struts provides with the saveToken
functionlaity.
Look at it here
http://www.scioworks.net/camino_doc/manual/strutsIntro/struts1_0.html
Harjot
> - Original Message -
> From: "Frank Zammetti" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wed
Yep, I suspected Struts had something already for this. I would have
written and submitted such an extension myself it is wasn't there! Thanks
for point is out Harjot!
Frank
From: "Harjot Narula" <[EMAIL PROTECTED]>
Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
To: "Struts Users M
Logic:iterate
< bean : write name="navigationPage" property="title" />
- Original Message -
From: Naresh Sharma
To: Struts Users Mailing List
Sent: Tuesday, June 08, 2004 1:39 PM
Subject: Logic:iterate
Hi,
I am setting a bean from my action class, this bean class has
Marco Rossi wrote:
I try to use sitemesh instead of tiles; in my “decorator” template page I need
to include a struts action.
I try to do this:
, but I catch the following
java.lang.IllegalStateException: Response has already been committed
Any suggestion?
I think they just created a work around
To implement a similar behaviour struts provides with the saveToken
functionlaity.
Look at it here
http://www.scioworks.net/camino_doc/manual/strutsIntro/struts1_0.html
Harjot
- Original Message -
From: "Frank Zammetti" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 09
Hi all,
I have a question about the logic:iterate tag. I have the following in my jsp page.
If I am not setting any attribute list like
session.setAttribute("list", list) as I don't any action class forwarding to the jsp
page.
How do I grab the list into the jsp page if I have a class for co
Frank Zammetti wrote:
You know what I discovered about a month ago? Instead of using iFrames,
you can get the same functionality with a with
style="overflow:scroll;".
The problem with this, though, is when you when you want your table to
be able to change in width. If you have a fixed width i
There's really not much difference between using:
Map results = new HashMap(map);
and:
Map results = new HashMap();
results.putAll(map);
Maybe I'm missing the point you're trying to make, but I don't see how that
would solve the problem.
Quoting Ron Grabowski <[EMAIL PROTECTED]>:
> > Date: Tu
I believe the scrolling table body functionality is only currently supported
in Netscape 7 and Mozilla anyway. If I'm wrong, if you can show me an
example that works in IE, I would name my next child after you :) I've been
trying for a while to find a way to have a header section stay put, and
pls wrote:
found out that in tomcat 4.1, el can ONLY be used inside of the jstl tags.
downloading tomcat 5 right now..
Not sure what you mean by the above, but there are struts-el tags as
well, which work with Tomcat4.x.
--
Rick
I am sure about this problem, believe me.
See http://www-3.ibm.com/software/webservers/appserv/ws_bestpractices.pdf
From: "Frank Zammetti" <[EMAIL PROTECTED]>
Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: RE: Single ActionForm accross multiple Actions
Dat
James Neville wrote:
Well, I was using this tag earlier in the week. (We've been trying to
stay away from any Struts specific tags until recently too - we're
locked in now anyway, so we might as well).
Would this work for you with JSTL? You probably want to throw in a test
for not empty also.
Look at
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/ref
erence/objects.asp
Click on one of the tag headings and the properties/attributes are in a
table with scrolling... something kinda like you are describing.
-Original Message-
From: Frank Zammetti [mailto:
>-Original Message-
>From: Hookom, Jacob [mailto:[EMAIL PROTECTED]
>in Netscape 7 and Mozilla anyway. If I'm wrong, if you can show me an
>example that works in IE, I would name my next child after you :)
"next"? You already have some? ;-)
Simon
-
Hi,
I would like to shared basic HTML pages with an other web
application
which does not used Struts.
Is it possible to convert HTM pages to Struts views automatically ?
Is it an existing toolkit to do this ?
Thanks a lot in advance
We are running a struts 1.1 application successfully in a J2EE 1.2 application server.
Simon
>-Original Message-
>From: Yulin Zhao [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, June 08, 2004 3:35 PM
>To: Struts Users Mailing List
>Subject: Struts 1.1 J2EE level?
>
>
>
>
>Our app server only s
Hi,
I would like to know if someone has already made a Struts embedded
web application
server.
I have a lot of questions about minimum space memory, tools to embed
?
Thanks a lot in advance
---
I hope you weren't referring to me Simon? I'm still too young... and most of
my money pours into recreational vehicles and booze ;-)
-Original Message-
From: Chappell, Simon P [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004 10:02 AM
To: Struts Users Mailing List
Subject: RE:
That's great, Peter. I will be looking forward to sitting in when in London.
Michael
At 05:34 AM 6/8/2004, Pilgrim, Peter wrote:
Dear Global Struts Users
I am writing to you all in order to report that we had a sucessful
first meeting in London, last night.
Monday 7th June 2004 19:15 GMT @
> -Original Message-
> From: Andrew Hill [mailto:[EMAIL PROTECTED]
>
> Any Expresso users out there?
> Id be interested in hearing your comments and evaluation of
> this framework.
>
> It uses Struts as the basis for the presentation layer, Id be
> especially
> interested to know if it
Heligon Sandra wrote:
I would like to shared basic HTML pages with an other web
application
which does not used Struts.
Is it possible to convert HTM pages to Struts views automatically ?
Is it an existing toolkit to do this ?
Not sure what you mean by these question
In my Struts application I use JSP pages with DynaValidatorForm effectively
I used Struts tags html:form, html:radio, bean:message, logic:equal etc..
I would like to use basic html pages (created for an other web application)
and convert them to Struts pages in order to have all Struts facilities.
I wasn't doubting you, as that standard practice rule is fairly well-known
outside WebSphere. I think I've generally heard 32K as a limit, but
whatever, the point is keep session objects small.
What I was asking was if there was some technical limitation in WebSphere I
wasn't aware of. I can'
Since a lot of this stuff matches up between html and struts, you could
probably use something like Dreamweaver's search and replace functionality
to go through and replace mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004 11:01 AM
To: 'Struts Users Mailing List'
Subject: RE: HTML pages conv
Heligon Sandra wrote:
In my Struts application I use JSP pages with DynaValidatorForm effectively
I used Struts tags html:form, html:radio, bean:message, logic:equal etc..
I would like to use basic html pages (created for an other web application)
and convert them to Struts pages in order to have a
thanks for the reality check rick
"Rick Reumann" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> pls wrote:
>
> > found out that in tomcat 4.1, el can ONLY be used inside of the jstl
tags.
> > downloading tomcat 5 right now..
>
> Not sure what you mean by the above, but there are str
Well ... the combination of recreation vehicles and booze has been known to bring
about such things. Just looking out for you. Internet Big Brother kind of thing. :-)
>-Original Message-
>From: Hookom, Jacob [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, June 09, 2004 10:07 AM
>To: 'Struts U
Regarding WebSphere session performance, IBM redbook sg246176 chapter 15.10 has
some details that might help you. We use WAS4 so that's for WAS4.
Here is some note from it:
"In general the best performance will be realized with session objects
that are less than 2 KB in size. Once the session ob
Very interesting (in a bad way for me!)... does anyone know if there is an
easy way to see exactly how big the session object is at any given point in
time? Preferably something not specific to WebSphere... is there a method
of session I'm unaware of that might help?
Frank
From: "Yulin Zhao"
http://www.redbooks.ibm.com/redbooks/pdfs/sg246176.pdf
I'm not 100% sure, but it seems that
the recommendation for session size being < 4-5K is targeted to the
scenario where the server has to serialize the session for persistence.
Dennis
"Frank Zammetti"
<[EMAIL PROTECTED]>
06/09/2004 0
Hi All,
I use a bean in the application scope doing like this:
then i set some properties using and then in scriplet:
<% myBean.executeSomething();%>
but a ServletException is thrown with this message:
(class: my/pkg/MyBean, method: executeSomething signature: ()V) Incompatible object
argu
Srilatha,
By placing the 'list' in the session you can access it by name ... the
Struts tags search the JSP scopes (page->request->session->application)
if the scope is not explicitly specified ... the following link for the
'bean' taglib has a lot of info about how the 'name' and 'property'
at
Hello!
I'm searching for a tool or tool(s), either command-line or graphical
that can help find missing properties. I'd like to be able to quickly
track down form properties that are defined in struts-config.xml, but
not defined in validation.xml. I'd also like to know which jsp contains
the pro
I had that thought too, but I don't know enough about WebSphere to know if
it does that all the time... I know that I just installed 5.0 on a test box
and didn't have to set up a database or anything, so unless it (a) set one
up itself and is using it "under the hood", or (b) is persisting to th
Thanks a lot for the reply. I could solve the problem
Thanks
Srilatha
>>> [EMAIL PROTECTED] 06/09/04 12:39PM >>>
Srilatha,
By placing the 'list' in the session you can access it by name ... the
Struts tags search the JSP scopes (page->request->session->application)
if the scope is not explici
I am having a strange problem. When I try and connect to a URL within
the struts framework (within an action class) I get errors.
Below is the code, this code works fine in a standalone java class
(main) but in an action class I get an error when I try and
Cast the connection, any help is appr
This may have something to do with your app server (servlet container).
I've run into issues with EAServer and SSL since it uses internal,
proprietary classes to connect via https. Look into installing JSSE and
using the Apache commons HttpClient. This worked for me.
--Kevin
-Original Messa
We didn't find anything automatic for showing whats in session.
We created a JSP which iterated through the session attributes. For each
object, determined if its serilizable and if so convert it into a byte array
output stream. We get the size of the stream and also dumped the content to
the js
Any chance you could pass that JSP along? Sounds like something I could
write in a few minutes, but better to only take a few seconds if you can
send it to me :)
Frank
From: "Linck, Ken" <[EMAIL PROTECTED]>
Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
To: 'Struts Users Mailing Lis
Hi All,
I have a question on how to save the objects into request scope.
In my Form class I have an array of objects of type Product.
My Product class has productId and productName as the variables with
getter setter methods.
On my JSP I use logic-iterate tag to iterate through the array and
We created a JSP and one utility class with a couple of methods. This
probably could be improved but it gets the job done for us.
I was copying and pasting the pertinent code. If I am missing something just
holler back but hopefully this gets you started.
JSP as follows(sess.jsp):
==
Problem:
If someone comes to our Struts/Tiles website and changes the
GET parameters in the URL they may
cause a page to crash.
Desired Outcome:
The user should never see a crashed page, they should
instead be given a page which displays an error.
Ideally, w
Thanks a ton Ken, that worked like a charm! I've already added it to my
generic helper class that I reuse in most of my webapps, I just added a
static getSessionSize() method instead of doing it in the JSP so I can call
it from anywhere, as long as I pass it a valid session. This definitely
s
Welcome..=P
-Original Message-
From: Frank Zammetti [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004 3:34 PM
To: [EMAIL PROTECTED]
Subject: RE: Single ActionForm accross multiple Actions
Thanks a ton Ken, that worked like a charm! I've already added it to my
generic helper clas
Did u try providing scope attribute for bean:define
-Original Message-
From: PADALA, SANDHYA (SBCSI) [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004 9:05 AM
To: Struts Users Mailing List
Cc: [EMAIL PROTECTED]
Subject: Hoe to store objects in request scope
Hi All,
I have a
I meant toScope
-Original Message-
From: Ram Venkataswamy
Sent: Wednesday, June 09, 2004 1:19 PM
To: Struts Users Mailing List
Subject: RE: Hoe to store objects in request scope
Did u try providing scope attribute for bean:define
-Original Message-
From: PADALA, SANDHYA (SBCSI)
Finally i solved this problem:
The ServerException encapsulated a VerifyError that means there was some linkage error
executing my compiled bytecode. In fact, this bean was compiled with an old version of
Xerces and the container (Tomcat) loads at init time another version of Xerces, and
when i
Check out NitroX for Struts www.m7.com - I am sure most of your problem
are addressed
-Original Message-
From: Stunger, Kevin J [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004 11:00 AM
To: Struts Users Mailing List (E-mail)
Subject: Tool(s) to find missing properties
Hello!
I'
> Date: Wed, 9 Jun 2004 10:12:08 -0400
> From: Kris Schneider <[EMAIL PROTECTED]>
> To: Struts Users Mailing List
> <[EMAIL PROTECTED]>
> Subject: Re: html:link and map of request parameters
> There's really not much difference between using:
>
> Map results = new HashMap(map);
>
> and:
>
> Ma
Hi All,
I have been getting the following exception. However the application works fine.
But it is annoying to see this message in the console. Would appreciate if
someone could tell me how to solve this issue.
EXCEPTION
==
6/9/04 15:22:36:836 CDT] 6e033535 WebGroup E SRVE0026E: [Se
Please Subscribe me to this mailing list
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hi,
I would like to shared basic HTML pages with an other web
application
which does not used Struts.
Is it possible to convert HTM pages to Struts views automatically ?
Is it an existing toolkit to do this ?
Thanks a lot in advance
Sandra
Hi all,
I'm trying to develop an extensible architecuture to add new services to my
existing website. I want this to be similar to www.salesforce.com, where
each service is accessed via a main tab, and each service is essentially a
mini-application in itself.
I have an existing struts app which
On Wed, Jun 09, 2004 at 03:09:06PM -0400, Alan Weissman wrote:
> I am trying to find a way to display a different tile if the tile in my
> page generates an error. Does anyone
Assuming that no output has been commited to the response of the tile,
there is a solution outlined in 'tiles advanced f
well you could start by grabbing your webapp with something like wget
or curl.
wget -r www.mysite.com/
This would give you the rendered html to then start working from, you'd
still have to deal with the form input when the user submits it. I dont
know if there' s a zero-cognition, abracadabra w
Thanks for all of you guys' repliles.
Finally I found out with the development team that Struts1.x is based on J2EE1.2
(Servlet 2.2/JSP1.1).
[EMAIL PROTECTED] on 06/08/2004 03:56:33 PM
Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]>
To: 'Struts Users Mailing List' <[E
In .NET, they have an idea called a "code-behind" page. This is a superclass for the
page that you can use to obtain values from a database and bind them to controls. The
server page then extends the code-behind page. When the ASP.NET framework calls a page
load method, the controls are populate
Hi,
i want to format a date with the message ressources bundle depending on the locale. Is
there a possibilty to do that?
I found something like this
app_de.properties
welcome.message=bla {0] blub {1,date,mm:HH dd.MM.}
app_en.properties
welcome.message=bla {0] blub {1,date,HH:mm dd-MM-}
Hi all,
I have a question regarding using the html:link tag where I want to have
multiple parameters added to the link url dynamically. What I have
tried to do is have a bean that I am using on the page context have a
method that returns a Map object that contains all the keys and values
for t
However, there are two ways you can append one or more dynamically
defined query parameters to the hyperlink -- specify a single parameter
with the paramId attribute (and its associated attributes to select the
value), or specify the name (and optional property) attributes to select
a java.util.M
It is not exactly what I am looking for.
The drop down list I have now is:
The collection "SORT" has the following options:
Last Post Date
First Post Date
Sender Name
Replies
Views
I want the "Last Post Date" to be the default
selection. If we use HTML, we do the following:
Last Post Date
You can specify value=" Last Post Date" in html:select - The value to
compare with for marking an option selected.
-Original Message-
From: Caroline Jen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004 3:52 PM
To: Struts Users Mailing List
Subject: RE:
It is not exactly what
How to implement:
- user fills out form, session times out, users
submits form, user is shown login screen, user logs
in, users form is processed or shown form with values
populated (if validation errors, etc.)
- user selects bookmarked page in my web app, user is
shown login, user logs in, user
JBuilderX will do the conversion. It is not perfect, but can help.
Jason Long - CEO and Chief Software Engineer
Supernova Software - supernovasoftware.com
BS Physics, MS Chemical Engineering
-Original Message-
From: Heligon Sandra [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004
It doesn't help at all.
I have done exactly as it asks but no parameters are written to the url
This is shown by the code.
Ram Venkataswamy wrote:
However, there are two ways you can append one or more dynamically
defined query parameters to the hyperlink -- specify a single parameter
with the para
Huh? Sorry, I do not understand.
--- Ram Venkataswamy <[EMAIL PROTECTED]> wrote:
> You can specify value=" Last Post Date" in
> html:select - The value to
> compare with for marking an option selected.
>
>
>
> -Original Message-
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: W
I think Ram means add a 'value="Last Post Date"' or other text key to match.
I also suppose that using Struts-EL (Expression Language), you could pull
that value from a bean so you could change the value on the fly or based
upon some other data. Not that I use Struts-EL.
Regards,
David
-Orig
Include value="Search String" inside html:select tag - the option value
matching this will be marked as selected
V.K.Ram
www.m7.com
NitroX for Struts
-Original Message-
From: Caroline Jen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004 5:29 PM
To: Struts Users Mailing List
Can any one help me with this exception.
org.apache.commons.fileupload.FileUploadException: Processing of
multipart/form-data request failed. EOF after reading only: '0' of: '7314'
promised bytes, out of which at least: '0' were already buffered at
org.apache.commons.fileupload.FileUploadB
I am using "tile". When I try to display a JSP page,
I got an error message:
java.lang.IllegalArgumentException: Path .thread.Form
does not start with a "/" character
I have no idea where to find this "/" character. I
would appreciate if anybody could provide me with some
leads.
In my tile
Do you have the tiles plugin setup properly in your
struts-config.xml file? Or, if you are using a version
earlier than V1.1, did you change the controller to a
Tiles controller?
Regards,
David
-Original Message-
From: Caroline Jen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004
I have successfully displayed many JSPs using tiles in
my application. This path=".thread.Form" is the only
one gives me this problem. Therefore, I think the
tiles plugin is set up properly in my
struts-config.xml.
Regards,
Caroline
--- David Friedman <[EMAIL PROTECTED]> wrote:
> Do you have the
Hi All,
If the someBean.getDefault() has some values which is not there in the
collection SORT then the problem
is that the select tag will display some value from the collection not the
value from someBean.getDefault().
I faced this situation when i had to display a b
How are you trying to execute the forward
in your action?
-David
-Original Message-
From: Caroline Jen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 09, 2004 11:50 PM
To: Struts Users Mailing List
Subject: RE: Error Message: Tile path=".thread.Form" Does Not Start with
a "/" Character
In my menu.jsp, I have:
sorted by
in
order
View Messages
Then, in my struts-config.xml, I have:
and
.thread.Form is a tile.
Regards,
Car
I wasn't actually asking for the JSP.
I was saying that Struts can complain
about slashes being missing if Tiles
isn't configured or is invoked properly.
I've seen something like your message
once before and I had an improper tiles
configuration setup (back in ver 1.0.X).
I was curious how you tri
In my JSP, I have a html:img tag:
and the above statement gives me the error message:
'According to TLD, tag html:img must be empty, but is
not'
I am very confused by the error message. I should
have an empty html:img tag? Please advise. Thank you.
__
Hi,
>
>Hi Navjot
>
>I am late at answering this but still I thought I should.
>I agree with the design you have provided, but I wonder why
>are you using the ProductDelegate here.
>
>Is your application too big, or do you have too many type of clients ?
Judge by this - I have more than 100 interm
1 - 100 of 108 matches
Mail list logo