referring to the DTDs

2001-07-25 Thread Jonathan Asbell
I was wondering if there is a way for an xml doc to look for a dtd in 2 or 3 places. Can you do this: !DOCTYPE struts-configSYSTEM "file:///c:/bea/wlserver6.0/config/Wcom/applications/mydomain/WEB-INF/struts-config_1_0.dtd "file:///c:/dtds/struts-config_1_0.dtd "struts-config_1_0.dtd

Re: Strut and EJB/J2EE

2001-07-25 Thread Pham Thanh Quan
Hi Chuong, I think struts is only a framework used to build presentation layer - Original Message - From: Chuong Huynh [EMAIL PROTECTED] To: Strut user List (E-mail) [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 10:09 AM Subject: Strut and EJB/J2EE Hi all, Sorry for naive

Debugging struts?

2001-07-25 Thread dhay
Hi. I'm thinking of trying to debug my struts stuff in Netbeans. Does anyone use this successfully, and do you know if it works with Tomcat 3.3 m2? Thanks, Dave

Indexed properties

2001-07-25 Thread Nathan Coast
Hi, What I want to do is to have multiple text fields in a table get assigned to an array or collection property in an ActionForm. I've followed a few threads in the newsgroups about this and have tried some jsp code: logic:iterate id=myObject name=indexedForm property=indexedPropsList

Re: localization ugliness

2001-07-25 Thread Gregor Rayman
[EMAIL PROTECTED] wrote: [...] What I'd like to do is something like: bean:message key=term.type%=bean.getType()%/ Of course, this doesn't work. So what I am actually doing is adding a new method to the bean which duplicates the code in bean:message so that the bean can do the mapping

RE: Re: localization ugliness

2001-07-25 Thread devon . bowen
You can try this: bean:message key = '%= term.type + bean.getType() %' / At the moment, I'm restricted to v1.0 but the above is still much cleaner than what I had. Thanks! Devon

RE: what setters do i implement in an indexed tag ?

2001-07-25 Thread Warwick Boote
aliright - i'll check that out, anyone else reading this thread - there is a .zip file attached in the message: http://www.mail-archive.com/struts-user@jakarta.apache.org/msg12084.html Waz. =) -Original Message- From: Torsten Terp [mailto:[EMAIL PROTECTED]] Sent: 24 July 2001 17:57 To:

Re: Pre-Populating ActionForm (again)

2001-07-25 Thread suhas
if u have overridden validate method in the actionForm then ActionServlet automatically take u to the mapping.getInput() ( i.e ur input jsp file ) where u can show the errors using html:errors tag . Basicallly ActionErrors are kept in the request scope which are retrieved in the html:errors tag

Re: Workflow impasse? and more

2001-07-25 Thread nic.hobbs
Hi All, Well I've finally got around to moving my struts subscriptions to a different address so I can setup rules etc to manage the number of mails on the lists! Moving them away from my work mail address is a good thing... So why am I telling you all this? Well I , like Craig T, signed up

AW: Struts + JBoss

2001-07-25 Thread ecn11
Hi. i've had trouble with jboss 2.2.2/tomcat 3.2.2...for this reason i dropped back to the 2.2.1/3.2.1 version and everything worked fine... Ok, I dropped back, too, now - but without success. Are you using Struts 1.0 or a newer version? in my experimentation, it seems to be a classloader

Problem while running application in Struts

2001-07-25 Thread Soniya Satbhai
Hi, Whenever I run my applications (jsp pages) , I am getting the following exception. Thanks, Soniya. Error: 500 Location: /struts-i18n/test.jsp Internal Servlet Error: javax.servlet.ServletException java.lang.Throwable(java.lang.String)

Re: Pre-Populating ActionForm (again)

2001-07-25 Thread Aapo Laakkonen
if u have overridden validate method in the actionForm then ActionServlet automatically take u to the mapping.getInput() ( i.e ur input jsp file ) where u can show the errors using html:errors tag . Basicallly ActionErrors are kept in the request scope which are retrieved in the html:errors

AW: Struts + JBoss

2001-07-25 Thread ecn11
Hi. Hi. Has anyone of you managed to make Struts and JBoss working together? This is my current situation: I use JBoss-2.2.2 + Tomcat-3.2.2 (by run_with_tomcat.bat - so they are running in one VM) and Struts 1.0. Hi, I use struts in jboss+tomcat. I use 2 configurations:

Re: Struts + JBoss

2001-07-25 Thread Gregor Rayman
ecn11 [EMAIL PROTECTED] wrote: Ok, I tried this but the result was the same... javax.servlet.jsp.JspException: Exception creating bean of class foo.bar.myclass: java.lang.ClassNotFoundException: foo.bar.myclass at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:568) I

Cant compile my .java files to a class - is it a path issue --

2001-07-25 Thread Chuck Amadi
Hi , I have been posting this problem for a while now - sorry. Albeit i was on a role until i modified my Action Class. Thus or hell broke loose. I had got to the stage whereby i had exstablished a connection to PostgreSQL v6( though posted a bug on PostgreSQL v7.1- same code don't work) and

Cutom Tag request

2001-07-25 Thread Aapo Laakkonen
html:label/ tag would be nice. What others think? Here is some uses: html:form action=someAction html:label property=someProperty/ /html:form html:form action=someAction html:label key=someKey/ /html:form It just prints string values like bean:write tag but does not require name

Re: Cutom Tag request

2001-07-25 Thread Aapo Laakkonen
It just prints string values like bean:write tag but does not require name attribute and cannot be used and associated with form. Of course I meant: It just prints string values like bean:write tag but does not require name attribute and can be used and associated with form.

Feature enhancement - triggering an Action

2001-07-25 Thread Jonathan Asbell
This thread appeared on the list earlier this week. QUESTION - JonathanCan someone tell me if there is a way to configure an action to match a pathregardless of how deep it is in a directory?ANSWER - TedNo. There is not a way to do this, without changing the way Struts isprogrammed to

Missing type on declaration - any poniters

2001-07-25 Thread Chuck Amadi
Hi, can someone take a peek at my ActionFoward Class - webapps/bbnpa/WEB-INF/classes/org/apache/struts/action/ActionForward.java [10:1] Missing type on declaration public perform(ActionMapping mapping,

Re: Missing type on declaration - any poniters

2001-07-25 Thread suhas
perform method returns ActionForward - Original Message - From: Chuck Amadi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 5:11 PM Subject: Missing type on declaration - any poniters Hi, can someone take a peek at my ActionFoward Class

Re: Missing type on declaration - any poniters 1 error left

2001-07-25 Thread Chuck Amadi
Hi i have got it done to 1 error as below webapps/bbnpa/WEB-INF/classes/org/apache/struts/action/ActionForward.java [9:1] 'class' or 'interface' keyword expected. public ActionForward perform (ActionMapping mapping, ^ 1 error Errors compiling ActionForward. Chuck Amadi wrote:

DataSource and Factories

2001-07-25 Thread Andreas Leitner
Hi again, I would like to seperate my buisness logic from the data layer. Say I have an object Person, that has the fields id, firstName and lastName. The only constructor I provide is one which takes two arguments (id, firstName and lastName). The person objects will be stored in a certain

RE: Missing type on declaration - any poniters 1 error left

2001-07-25 Thread Mark Schenk
Hi i have got it done to 1 error as below webapps/bbnpa/WEB-INF/classes/org/apache/struts/action/ActionForward.java [9:1] 'class' or 'interface' keyword expected. public ActionForward perform (ActionMapping mapping, ^ 1 error Errors compiling ActionForward. Hi Chuck,

Re: DataSource and Factories

2001-07-25 Thread Oleg V Alexeev
Hello Andreas, Wednesday, July 25, 2001, 1:59:50 PM, you wrote: AL Hi again, AL I would like to seperate my buisness logic from the data layer. Say I AL have an object Person, that has the fields id, firstName and lastName. AL The only constructor I provide is one which takes two arguments

Re: DataSource and Factories

2001-07-25 Thread suhas
DataSource can be obtained either Deployment descriptor as java:comp/jdbc/MyDataSource (associate a Jndi name to the Datasource ) - Original Message - From: Andreas Leitner [EMAIL PROTECTED] To: [EMAIL PROTECTED]; 'Aapo Laakkonen' [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 3:29 PM

Re: Missing type on declaration - any poniters- perform Q

2001-07-25 Thread Chuck Amadi
I have tried numerous variations public ActionForward perform ( public class ActionForward perfrom ( Please explain a bit more as my code is more or less the same as in the Building Controller Components - Action Classes.R ef Struts User Guide - Note i thought

Re: Cutom Tag request

2001-07-25 Thread Gregor Rayman
Aapo Laakkonen [EMAIL PROTECTED] wrote: html:label/ tag would be nice. What others think? Here is some uses: html:form action=someAction html:label property=someProperty/ /html:form html:form action=someAction html:label key=someKey/ /html:form It just prints string values

newbie: initial values

2001-07-25 Thread ecn11
Hi. I apologize for this probably really stupid question, but I was not able to find a suitable answer anywhere, yet... In my user management I want to provide a way that the users can change their address (they are already stored in a database). Thus I need a form with the old address as

Multiple checkboxes, same name...

2001-07-25 Thread carmine . lucarelli
Hi all. Very new to this list and struts, but using it pretty successfully for a project at work. Good looking framework. Now the question: I have a form that will list anywhere from 0-9 vehicles. I have to allow multiple selection of vehicles. Currently I'm using html:select

Re: newbie: initial values

2001-07-25 Thread Gregor Rayman
ecn11 [EMAIL PROTECTED] writes: Hi. I apologize for this probably really stupid question, but I was not able to find a suitable answer anywhere, yet... In my user management I want to provide a way that the users can change their address (they are already stored in a database). Thus I

Re: Refresh button and Back button

2001-07-25 Thread Bud Gibson
The back button problem is standard. You need to use a token to prevent sensitive form resubmission. This is documented in Geary's Advanced JSP book and Core J2EEE patterns. They are both put out by Sun. In short, tokens allow you to determine whether the page should be processed in the

ActionForward.java [11:1] 'class' or 'interface' keyword expected.

2001-07-25 Thread Chuck Amadi
Hi again i have one error but this is the example from 2.6 Accessing Relational Databases found within the struts - documentation. Any Pointers as i assumed that Action.class was the interface/abstract class and thus i am totally confused. ActionFoward at the below address.

RE: Multiple checkboxes, same name...

2001-07-25 Thread Mark Schenk
Hi all. Very new to this list and struts, but using it pretty successfully for a project at work. Good looking framework. Now the question: [snip] The above sounds pretty reasonable, but I'm unsure how to get it to work. Specifically, how to get the proper value= attribute in the

Accessing JDBC-ODBC from Struts

2001-07-25 Thread Rodney Smith
Hi I need some direction on how to incorporate JDBC-ODBC into my struts and where the ODBC should be stored in my application. Also how to reference that in my Action Servlet, I am a little unsure about this area, but would appreciate some feed back or documentation that will simplify my work.

Re: ActionForward.java [11:1] 'class' or 'interface' keyword expected.

2001-07-25 Thread suhas
ActionForward is class - public class ActionForward Suhas - Original Message - From: Chuck Amadi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 25, 2001 6:29 PM Subject: ActionForward.java [11:1] 'class' or 'interface' keyword expected. Hi again i have one error but

RE: problems mapping multiple ActionServlets

2001-07-25 Thread Zeltser, Mark
Adam, I deployed my war file on Weblogic and got the same result as on Tomcat, mapping was changed unexpectedly. -Original Message- From: Adam Young [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 8:20 PM To: [EMAIL PROTECTED] Subject: Re: problems mapping multiple

RE: accessing user-defined classes from html:select and html:options tags

2001-07-25 Thread Philip Tucker
I added the import statement, but still get the same error. It's in a Struts method called BeanUtils.populate. I have the imported class in my .WAR file, and I even tried placing it directly in the server class path, but still the same error. Any ideas? Below is the full error text. Thanks

Re: ActionForward.java [11:1] 'class' or 'interface' keyword expected.

2001-07-25 Thread Chuck Amadi
Hi , again i have been told that these type of queries/problems should be directed at java-user group. Thus i shall subscribe i only know the basic fundamentals to java thus i find it misleading when one who has a problem trying to construct a web development project that contains Controller

RE: Accessing JDBC-ODBC from Struts

2001-07-25 Thread Satyen . Chikane
in the struts-config.xml there is configuration for datasources which you can use... u dont have to do anything in the action servlet... in the action class u get the connection to the object... -Original Message- From: Rodney Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25,

Newbie installation question

2001-07-25 Thread Jonathan Kaplan
Title: Newbie installation question Hi there, I am running Tomcat 4.0 b5. After placing the struts war files into the webapps directory, restarting tomcat, and confirming the directories had been built out, I went to struts-example and received the following stack trace: Looks to me like

Re: Accessing JDBC-ODBC from Struts

2001-07-25 Thread Oleg V Alexeev
Hello Rodney, Wednesday, July 25, 2001, 5:19:58 PM, you wrote: RS Hi RS I need some direction on how to incorporate JDBC-ODBC into my struts RS and where the ODBC should be stored in my application. Also how to reference RS that in my Action Servlet, I am a little unsure about this area, but

RE: Struts on IBM WAS 4.0 - Error removing attributes from reques t sc ope!

2001-07-25 Thread Brugge, John
Pardon my skepticism, but from all appearances, the WAS 4.0 GA release is out (nothing on the IBM WebSphere site says that the 4.0 you can now download is beta), and this particular issue is *not* resolved. The antiquated version of Jasper is still included. And from the response to my question

Re: Accessing JDBC-ODBC from Struts

2001-07-25 Thread Guus Holshuijsen
One of the - more complicated - solutions is to set up Java Naming and Directory services (JNDI, see the documentation that comes with JDK1.3). Using JNDI you can hide the details of connecting to your database(s) in a DataSource object you store in the naming service. Sun provides us with a

how to add property to DataSource

2001-07-25 Thread Zeltser, Mark
Hello, I am trying to add property to DataSource object. There is addProperty( String, String) method that I used but it had no affect. My impression is that all connections are initialized after ActionServlet is loaded ( I extended ActionServlet and added properties after calling super.init())

Problem initializing (pre-selected) html:select multiple=true

2001-07-25 Thread Xavier Brunel
Hello, I have a problem with multiple html:select struts tag initialization. I am unable to initialize the select tag with the values i retrieve from my database. I have a JSP with - a html:select multiple who will retrieve the selected compagnies I choose. - a html:options

application scope problem

2001-07-25 Thread Hartmut Bernecker
Please Help! In my Struts-Application I create at a certain point (init Method of myClass extends ActionServlet) a Bean for the Servlet Context. ServletContext context = getServletContext(); Info info = (Info)context.getAttribute(host); if (info == null) { info = new Info();

RE: Struts on IBM WAS 4.0 - Error removing attributes from reques t sc ope!

2001-07-25 Thread Mark Wilson
Hi John (or others using struts on IBM WAS), I was wondering if you have come accross any other negative implications besides the nasty show stopping Exception from using struts on WAS. (work-around provided earlier in thread) In particular I am concerned that struts makes calls to PageContext

Re: DataSource and Factories

2001-07-25 Thread Bud Gibson
This looks interesting, but I am not sure how I would use it. Would the strategy be to set up an action to run when the application is loaded? Would the action then obtain a reference to the data source and stow it in some repository using JNDI for use by the persistenc layer? That is the

RE: application scope problem

2001-07-25 Thread DHarty
Hopefully someone will be able to elaborate on this, but I don't believe you can't use jsp:useBean id=info scope=application class=myPackages.Info/ interchangablby with struts bean tags. You should be able to use: bean:define id=info scope=application name=host / then, to

RE: Newbie installation question

2001-07-25 Thread George, Carl
tomcat 4.0 doesn't work yet!! go back to 3.x -Original Message- From: Jonathan Kaplan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 10:11 AM To: [EMAIL PROTECTED] Subject: Newbie installation question Hi there, I am running Tomcat 4.0 b5. After placing the struts war

The never ending story: Turning caching off

2001-07-25 Thread Holger Wiechert
Hi everybody,I was looking for a solution for the all time favorite "Caching Problem" (in IE).I found a couple of "solutions, like: 1) Having the following lines in the JSP:response.setHeader("Pragma", "NoCache");response.setHeader("Cache-Control",

Re: application scope problem

2001-07-25 Thread David Winterfeldt
I'm not sure exactly how the jsp:useBean looks for the class you specify, but since you are initializing the class from the ActionServlet it would be safe to assume it is there so you don't really need the jsp:useBean. So you should be able to do just this. pContext Bean: bean:write name=host

RE: Struts on IBM WAS 4.0 - Error removing attributes from reques t sc ope!

2001-07-25 Thread Calabrese, Jason
Why can't IBM keep up. I don't think I'd ever recommended Websphere or any other IBM java application. -Original Message- From: Boulatian, Misak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 25, 2001 8:07 AM To: [EMAIL PROTECTED] Subject: RE: Struts on IBM WAS 4.0 - Error removing

AW: The never ending story: Turning caching off --- Oooops

2001-07-25 Thread Holger Wiechert
Sorry, I just figured out, that the time stamp stuff works. But I figured out another problem, that made me blind for understanding the cache problem. I'll post it soon. -Ursprngliche Nachricht-Von: Holger Wiechert [mailto:[EMAIL PROTECTED]]Gesendet: Mittwoch, 25. Juli 2001

Re: Problem while running application in Struts

2001-07-25 Thread Rakesh
Hi any luck? Rakesh Ayilliath (Software Engineer) Synergy IT Innovations Pvt Ltd, #196, 1st Floor, 9th Cross, HMT Layout, RT Nagar Bangalore 560032 [EMAIL PROTECTED] www.ayilliath.8m.com - Original Message - From: Soniya Satbhai [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: Struts on IBM WAS 4.0 - Error removing attributes from request sc ope!

2001-07-25 Thread Pravin George
you're right Websphere 4.0 is a pain to work with. I did get a struts application running on 3.5.3 but not on any later version. Calabrese, Jason wrote: Why can't IBM keep up. I don't think I'd ever recommended Websphere or any other IBM java application. -Original Message-

Changes to values in Form get lost on forward

2001-07-25 Thread Holger Wiechert
Hi, I'm sure, this question has arised before, but I's quite hard to find it in the archive. However, this question is rather short, so I hope someone can have a short answer to it. My problem comes up, when I do the following: 1)in YYYAction.perform I set a field of the form to a new value,

Struts Scalability in a Large Production Environment

2001-07-25 Thread Brian . Duchouquette
All, I have been doing a lot of research into Struts recently. My question is about performance and scalability. First the definitions: Performance = good response time to users Scalability = good response time to a large number of simultaneous users. Usually this is a logarithmic curve

AW: DataSource and Factories

2001-07-25 Thread Andreas Leitner
Take a look to the Castor project - http://castor.exolab.org That does indeed look awesome! Do you have experience with it? Is it ready for production use? Many thanks for that great hint! Andreas

RE: Struts on IBM WAS 4.0 - Error removing attributes from reques t sc ope!

2001-07-25 Thread Brugge, John
Yes, WAS 4.0 is a big step forward in usability. However, if you look closely at the struts.jar file that is ships with, it's Struts 0.5. That notwithstanding, the console looks like a pretty sophisticated app. Probably not trivial for them to move it to Struts 1.0. John -Original

Error with Data Sources

2001-07-25 Thread Edward Muller
I'm trying to configure a data-source in my struts-config.xml file and I get the following error: Parse Error at line 71 column -1: Element struts-config allows no further input; data-sources is not allowed. ...(more traceback here)... The snippet from my struts-config.xml file is as follows:

Re: Problem initializing (pre-selected) html:select multiple=true

2001-07-25 Thread dhay
Hi. If you want Struts to display values pre-selected, you should leave off the value= on the select tag altogether. I haven't tried it with multiple=true, but use html:select property=category to display the value I previously assigned in my form under category.

struts and WAP

2001-07-25 Thread Rama Krishna
hi all, i am wondering if there are any thoughts/process going on to support WML taglibs in struts. or is there anything already available. thanks, rama.

Re: struts and WAP

2001-07-25 Thread David Winterfeldt
A Struts WML taglib is on the To Do List for 1.1, but no one has volunteered to work on it yet. http://jakarta.apache.org/struts/todo-1.1.html David --- Rama Krishna [EMAIL PROTECTED] wrote: hi all, i am wondering if there are any thoughts/process going on to support WML taglibs in

Re: Indexed properties

2001-07-25 Thread James Howe
At 02:23 PM 7/25/2001 -0400, you wrote: Nathan, Hi. Currently you have to use my changed tags...but it looks like they will be in the nightly build by the end of the week. You can get them at http://husted.com/about/struts/indexed-tags.htm, and I attached some example source code to a

Trying to add errors to an existing errors object after using the validation framework

2001-07-25 Thread Scott Ryan
I am using the Validation Framework within struts and I need to perform some validations that I cannot do using the framework. I have created an ActionForm that extends ValidatorForm and in my validate method I first call super.validate. Once the errors have been returned I then perform my own

Re: Trying to add errors to an existing errors object after using the validation framework

2001-07-25 Thread Scott Ryan
Problem Solved: After rooting around in my ApplicationResources.properties file I found a misspelling in my message name. I would have expected the framework to catch the error in the lookup similar to what happens in other areas of struts when a message resource cannot be found. Typically a

Form declaration inside logic:equal tags

2001-07-25 Thread Yuriy Zubarev
Hello everyone, I was just wondering why I cannot use a code like this: logic:equal name=userForm property=action value=Profile html:form action=/saveUserProfile /logic:equal logic:notEqual name=userForm property=action value=Profile html:form action=/saveUser /logic:notEqual I always get

calling actionmapping from a URL

2001-07-25 Thread Jan Fredrik Øveraasen
Hi I have a action class that is used in several actionmappings and in some situations it is called directly from a url, like href=myaction.do, but in these cases the validation implemented prevents me from continuing the process. My question is: how can i turn off validation when calling a

Re: Indexed properties

2001-07-25 Thread James Howe
At 05:20 PM 7/25/2001 -0400, you wrote: Hi James, Thanks for your note - made me think a bit! Would be interested in knowing more about the other indexed tags that were posted and you are using. I know either Jeff Trent or Martin Cooper had produced some tags which had a different name ie

Re: calling actionmapping from a URL

2001-07-25 Thread Ted Husted
The ActionMapping has a property for validation. To call the Action without validation, set validate=false in your ActionMapping. An Action is not a servlet, and you cannot call it directly from an URL. In every case, the request is passed to the ActionServlet by the container. The

Re: full featured example

2001-07-25 Thread Ted Husted
Try Steve Wilkinson's site, http://www.newparticles.com/struts/ . He'll be do some more work on this soon, and moving it to jBoss. And, if you end up with some good working examples in your own applications, feel free to donate them to the cause ;-) -- Ted Husted, Husted dot Com, Fairport

Re: Empty Page returned after Action executed

2001-07-25 Thread Bill Clinton
Hello, I have had this problem when I reference a forward that doesn't exist in my config file. You mention that your action returns a reference to continue: (mapping.findForward(continue)) But your line in your struts-config is: forward name=success path=/shipsum.jsp/ rename your forward

Re: Encodings on form submits?

2001-07-25 Thread Martin Cooper
I know this is an old post, but better late than never... :-) We are doing the following: 1) Specify the content type for the JSP output: %@ page contentType=text/html; charset=utf-8 % You can also do this by setting the content type header manually, using response.setContentType(). 2)

RE: full featured example

2001-07-25 Thread Stephen LeClair
I just got through reviewing the sample in JSP 2nd Edition Wrox book (Steve Wilkinson authored the Struts chapter) and it helped. I'll check out his site, thanks! If we get a good sample site put together for our new hires, I'll post a link... ...Steve -Original Message- From: Ted

Re: Error with Data Sources

2001-07-25 Thread Edward Muller
Okay. I figured out that data-sources needs to go at the tope and I removed the set-property tags and actually made the properties. I am using postgres 7.1 something. Now when I start my sample application I get a ClassNotFoundException. I've checked and postgresql.jar from my postgres install

Re: Missing type on declaration - any poniters 1 error left

2001-07-25 Thread Calvin Yu
I think your compiler can't find the initial class declaration. Chances are your actual syntax error occured before that line. Make sure you don't have too many '}' and that you're making a valid class declaration. It seems that a lot of your problems has more to do with your understanding of

RE: Missing type on declaration - any poniters 1 error left

2001-07-25 Thread Kevin McLain
You need to close the brace on your class declaration I believe. Like this: public class ActionForward { public perform(ActionMapping mapping, ActionForm form, HttpServletRequest request,

newbie question

2001-07-25 Thread Jonathan Yang
Hi,all Why can't correctly run the "struts-example"? When I click the url in index.jsp,it throw the a error like following: "The requested URL /struts-example/tour.do;jsessionid=5ox6pc4q91 was not found on this server." why? pls help me, thx. Regards,Jonathan

RE: newbie question

2001-07-25 Thread Kevin McLain
What steps did you take to get to that point? What web container are you using? -Original Message-From: Jonathan Yang [mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 25, 2001 8:35 PMTo: strutsSubject: newbie question Hi,all Why can't correctly run the

Re: newbie question

2001-07-25 Thread Jonathan Yang
The appserver is tomcat3.2.3. can sucessfully show the index.jsp, and when I click the url, the error appear... It seems that it can't know the *.do, how I can resolve it? Regards,Jonathan - Original Message - From: Kevin McLain To: [EMAIL PROTECTED]

Digester addObjectCreate

2001-07-25 Thread Steven D. Wilkinson
I have an object that takes an argument in the Constructor. How do I do this during an addObjectCreate call?

Re: Workflow impasse? and more

2001-07-25 Thread Martin Cooper
Nic, I've removed your name from the to-do sections per your request. However, I hope we'll still see your comments and suggestions in these areas as they develop. Regarding workflow, I look forward to hearing your thoughts on handling multi-page forms, and how this might relate to a more

Re: calling actionmapping from a URL

2001-07-25 Thread Oleg V Alexeev
Hello Jan, Thursday, July 26, 2001, 1:40:48 AM, you wrote: JFØ Hi JFØ I have a action class that is used in several actionmappings and in some JFØ situations it is called directly JFØ from a url, like href=myaction.do, but in these cases the validation JFØ implemented prevents me from

Commercial support for Struts

2001-07-25 Thread Hartley, Justin R
Hi I'm looking at using Struts for a large project but the organisation is not keen on open-source, mainly because they like to be able to point at a company when something goes wrong or help is needed. Personally, I have a lot of confidence in the support available for this particular