Tool to install ma88 on AIX

2001-04-26 Thread Noel Sebastien
Somebody asked for the tool to install ma88 on AIX is inutoc. - Sébastien Noel - - Un courrier électronique n'engage pas son émetteur. Tout message susceptible de comporter un engagement doit être confirmé par un écrit dûment signé. An electronic message is not

Session attributes in JRUN

2001-04-26 Thread Gogineni, Pratima
Hi, I have a webapp based on struts that seems to be working perfectly in tomcat - when I deploy it on JRUN3.0 SP2 Some of the session attributes are lost: this is what is happening - I place an attributes X Y in the session (in an action class). I am accessing these attributes in JSP page

RE: (architectural issue/feature request) JavaBeans in Struts aren't flexible enough

2001-04-26 Thread Brugge, John
How you feel about type safety and having a/the compiler help you out will also play into your choice here. For all of the pain that creating JavaBean classes causes, they do create a well-defined interface that developers of JSPs can use to rely on to know what data is available. If all you're

(struts + EJB) example

2001-04-26 Thread chris . chang
Folks, Anyone know where I can get an example which use struts and ejb? Thanks in advance! P.S. Struts can work out of box with latest version of orion (i.e. 1.4.8) now 8) Chris

Why isn't ActionsErrors throwable?

2001-04-26 Thread
Hello, I've got a design question concerning the design of action classes and action class inheritance. I am trying to implement a reusable method in an action class. This method should be in a class named MyActionBase: protected MyBusinessObject doSomething(...) throws ActionErrors The

http to https redirect

2001-04-26 Thread Michael Wilimsky
hi! i have the following problem: i am using struts and its template mechanism (template-taglib) in my index.jsp: mytags:initapp/ template:insert template='%= (String) session.getAttribute(layout) %' template:put name=header content='%= (String) session.getAttribute(header) %'/

Re: Why isn't ActionsErrors throwable?

2001-04-26 Thread Jim Richards
Because exceptions are slow, and can only handle one error at a time. The design as it is, allows for multiple action errors to be returned to a page for display. Exceptions should be for catastrophic errors that cause the system to barf. Having a blank password doesn't really fit within that

Re: Why isn't ActionsErrors throwable?

2001-04-26 Thread
Hi, essentially ActionErrors is a message container more than an exception. i think the name reflects this as well... it is not called ActionException. You are right, ActionErrors is a container, but ActionError is sth. like an error class with a error message in it. I was just a little bit

adding an ActionError in the Action

2001-04-26 Thread Andrew Steady
Hi, If I form validates itself OK but subsequently the Action needs to raise an input error to the user, in my case security failed, how is it possible to add an ActionError for the errors tag to pick up. The only way to give struts a collection of ActionErrors is by

Help me defend Struts taglibs!!!

2001-04-26 Thread Firmin David
Hi all, Members of my team are gradually turning against using the Struts taglibs and resorting to scriptlets. IMHO: scriptlets bad, tags good. I've had more experience in using them than the others, but I'm finding it difficult to fight my corner in the face of ever increasing skepticism. Could

Pb connecting binding MQManager AIX with JMS MQ

2001-04-26 Thread Noel Sebastien
Hi, Did anyone already manage to connect to a local MQManager via bindings JMS MQ under Java program ? I receive that error (that means manager not available for connection) on createQueueConnection() method : MQJE001: Completion Code 2, Reason 2059 caught javax.jms.JMSException: MQJMS2005:

AW: Help me defend Struts taglibs!!!

2001-04-26 Thread D. Veniseleas
Poor David ;-) You can argument with the Model View Control Model and easier maintenance no more idea, scriptlets are really bad Dimitris -Ursprüngliche Nachricht- Von: Firmin David [SMTP:[EMAIL PROTECTED]] Gesendet am: Donnerstag, 26. April 2001 10:47 An: '[EMAIL

Re: Help me defend Struts taglibs!!!

2001-04-26 Thread Chris Butler
* unified API * consistent behavior, performance * growing industry support * single-point of functionality management scriptlets tend to be ad-hoc, slap-together and not consistent across all JSPs. performance-wise, i'm unsure. i'm don't have enough experience in JSPland to know the subtle

Re: adding an ActionError in the Action

2001-04-26 Thread Jean-Noel Ribette
There is a method in the Action class you can use to do this: saveErrors(HttpServletRequest request, ActionErrors errors). You can also do directly : request.setAttribute(org.apache.struts.action.ERROR, errors) So all you have to do is create an ActionErrors object, put errors in it, save it

Re: wizard style example, anywhere?

2001-04-26 Thread Udo Walker
Hi, there's a hack for image submit buttons. E.g. if you have a html:image property=openOrders page=.../ you'll get a request parameter with the value of the property attribute combined with a '.x' and '.y' for the position in the image submit button. If you only want to test which of the many

Re: (architectural issue/feature request) JavaBeans in Struts aren't flexible enough

2001-04-26 Thread Stephen Schaub
I have been pondering this very issue myself recently. For example, I would like to be able to display the results of a query in an HTML table. I don't want to have to create a Javabean to hold the attributes for the result set, because every time I want to tweak the result set, I have to 1.

Deployment Problem in iPlanet using Strut Example !!

2001-04-26 Thread Thilipkumar TM
HI, I have strut's example binary and Source version. I deployed in iPlanet application server with NT 4.0 SP6. I am getting the following errors. Please get me solution, if you find. ERROR = 20/Apr/2001 14:38:53:5] info: -- [20/Apr/2001 14:38:53:5]

RE: wizard style example, anywhere?

2001-04-26 Thread Nanduri, Amarnath
Try this. Works for me. html:submit property=%=Constants.SUBMIT % bean:message key=changePassword.submit/ /html:submit Where Constants.java contains fixed constants. bean:message can be an internationalized label which gets displayed to the user. One other

RE: What is token and When/Why/Where to use it?

2001-04-26 Thread Rajan Gupta
Look at the struts-example, it explains it very well. --- Suriyanarayanan, Senthil Kumar [EMAIL PROTECTED] wrote: Ted, Can you please elaborate prepares the form and processes the form. Preferably with an example or code snippet. Thanks Senthil Kumar.S -Original Message-

RE: Help me defend Struts taglibs!!!

2001-04-26 Thread Nanduri, Amarnath
Tell them that the taglibs are completely internationalized, whereas if they use scriptlets, they have to check for the ResourceBundle Locale everytime they use a scriptlet. So if your application is internationalized maintaining it would be a nightmare. Also the taglibs confirm to the latest

STRUTS, tomcat, iis

2001-04-26 Thread Galon, Mary-Jay
this maybe a studpid questions BUT, can a TOMCAT - STRUTS setup work with IIS ?

Re: adding an ActionError in the Action

2001-04-26 Thread Rajan Gupta
Have u looked at saveErrors() method of Action object. It should do the work that you wish to do, just remember to use the errors tag in your page --Andrew Steady [EMAIL PROTECTED] wrote: Hi, If I form validates itself OK but subsequently the Action needs to raise an input

RE: STRUTS, tomcat, iis

2001-04-26 Thread Nanduri, Amarnath
Yes. You need the plugin for IIS (to use with Tomcat). I am sure that you can find this plugin at Tomcat website cheers, Amar.. -Original Message- From: Galon, Mary-Jay [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 9:11 AM To: '[EMAIL PROTECTED]' Subject: STRUTS, tomcat, iis

RE: STRUTS, tomcat, iis

2001-04-26 Thread Jivan, Rajiv
Yes there is a howto on the jakarta website on configuring Tomcat to work with IIS 4.0 http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/tomcat-iis-howto.htm l -Original Message- From: Galon, Mary-Jay [SMTP:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 9:11 AM To:

Re: STRUTS, tomcat, iis

2001-04-26 Thread Rajan Gupta
Yes --- Galon, Mary-Jay [EMAIL PROTECTED] wrote: this maybe a studpid questions BUT, can a TOMCAT - STRUTS setup work with IIS ? __ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/

RE: STRUTS, tomcat, iis

2001-04-26 Thread Erik Schalburg
Sure can... I have it working. You need the ISAPI redirector. It is indeed on Tomcat's site. -Original Message- From: Nanduri, Amarnath [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 9:14 AM To: '[EMAIL PROTECTED]' Subject: RE: STRUTS, tomcat, iis Yes. You need the plugin

can we compile .java automatically ???

2001-04-26 Thread Marouane Louah
hello struts-users I would like to know how can we compile automatically the .java files that are in the classes folder. In resin for exemple resin.conf permit that bat with struts i don't know how can xe do Maybe it's something in struts-config.xml !!! help will be apprecied thax in

Re: Help me defend Struts taglibs!!!

2001-04-26 Thread Calvin Yu
What are their arguments for using scriplets? Calvin --- Firmin David [EMAIL PROTECTED] wrote: Hi all, Members of my team are gradually turning against using the Struts taglibs and resorting to scriptlets. IMHO: scriptlets bad, tags good. I've had more experience in using them than the

RE: URL for the Struts mailing list

2001-04-26 Thread Marouane Louah
hello how can we compile automatically .java classes ??? -Message d'origine- De: Firmin David [mailto:[EMAIL PROTECTED]] Envoyé: jeudi 26 avril 2001 11:45 À: '[EMAIL PROTECTED]' Objet: RE: URL for the Struts mailing list Uday, You can find the mail archives for both the struts-user

No action instance for path [path] could be created

2001-04-26 Thread Anderson, Jessica
What could be the cause of this error? What might be done to fix it? The application deploys successfully but when attempting to retrieve a struts action page via a link, this HTTP 500 (No action instance for path [path] could be created) error occurs. I am attempting to deploy on Sun's RI.

help..bean write not working..html:form action=bean:write name='formAction' /

2001-04-26 Thread Dudley [EMAIL PROTECTED]
hi all, i cant seem to get this bean write tag to work, any ideas? logic:notPresent name=user bean:define id=formAction value=/eFilerAddNoUser scope=request / /logic:notPresent logic:present name=user bean:define id=formAction value=/eFilerAdd scope=request / /logic:present

RE: help..bean write not working..html:form action=bean:write name ='formAction' /

2001-04-26 Thread Scott Cressler
The thing this has always been for me was forgetting to have the taglib directive for the bean tags at the top of my JSP. If you forget that, the tag is just ignored, or rather, it is just output. Scott -Original Message- From: Dudley Butt@i-Commerce [mailto:[EMAIL PROTECTED]] Sent:

RE: How can I use a Image as a submit button using struts

2001-04-26 Thread Dan Miser
Scott, Bug #3 you referred to has been fixed for a while, and is available in the nightly build. Just wanted to save you the headache of adding that bug too! -- Dan Miser http://www.distribucon.com From: Scott Cressler [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: '[EMAIL PROTECTED]'

Re: Help me defend Struts taglibs!!!

2001-04-26 Thread Clarance_Howatt
1. The taglibs allow the separation of logic and presentation. You can change the implementation of a taglib without changing the JSP. 2. You need to know little, if anything, about programming or Java to use a taglib. I'm a programmer and know Java. I write the taglib and hand it off to

RE: Help me defend Struts taglibs!!!

2001-04-26 Thread Scott Cressler
One thing this argument might come down to is why custom tags, especially for if...else stuff (which, BTW, IMHO is not handled real well by the struts tags...would be nicer to have more flexibility in the conditions you can check and to have the ability to do else, rather than

Re: Set default file names in the upload

2001-04-26 Thread Sean
Title: Set default file names in the upload My experience with HTML and Forms is that they do NOT allow you to value of a File input form element dynamically or by specifying a default value in the HTML. Yes, this is a security thing and I thank them for that, don't want any strange hidden

RE: How can I use a Image as a submit button using struts

2001-04-26 Thread Scott Cressler
Oops, guess I'm not a nightly build kind of guy...but maybe I should be? I've been trying to treat this more as a product, but I suppose it's not quite there, yet. ;-) Thanks (and sorry for the bug, Craig), Scott -Original Message- From: Dan Miser [mailto:[EMAIL PROTECTED]] Sent:

Re: hi

2001-04-26 Thread Jean-Noel Ribette
You can use the menuing component written by Scott Sayles and available at http://www.husted.com/about/struts In the action class you'll need to - load the items from the database and create the menu components. - put the menu in the menu repository Then in the jsp you'll be able to use the

How to have two tags populate one field?

2001-04-26 Thread Alex Colic
Hi, I have a bit of a problem. I have a select box and a text box which I need to both point to one property. The combo has a list of titles. The user could select one of these titles or input there own but when they submit the box I need the following to occur: If there is text in the text

RE: How can I use a Image as a submit button using struts

2001-04-26 Thread Kyle Robinson
Uday, The code we have is quite complicated and does alot more than you want. One of our team members, Christine Robb, made a custom tag that does almost what the submit tag does. She took a copy of SubmitTag.java and instead of outputting the code for doing a gray button submit in the

multiple select

2001-04-26 Thread Joel Schmidt
I've looked through the mail list but still can't get multiple selections to display. I'm working on a form that can create or edit a particular role and it's functions I want to (in create mode) select multiple functions and then in edit mode display those multiple functions selected in a

Re: hi

2001-04-26 Thread Rakesh
But what about the 'links' and the 'images'? 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: Jean-Noel Ribette [EMAIL PROTECTED]

Help me convince my team in the need of separate development and deployment directory structures

2001-04-26 Thread Danail Grigorov
Hi everybody. Recently I had a heated discussion with some people in my team about our development directory structure. We are developing a set of loosely connected modules to be used in one big web application (the project is large!). I created separate development structure and created

PLEASE, PLEASE, PLEASE UNSUBSCRIBE ME!!!!!!!!!

2001-04-26 Thread Frank Lawlor
PLEASE, PLEASE, PLEASE UNSUBSCRIBE ME! Isn't there anyone managing this listserver? After many requests I still cannot get unsubscribed! try [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] etc. (Yes, I have tried the automated way.) PLEASE, PLEASE, PLEASE

Re: hi

2001-04-26 Thread Jean-Noel Ribette
You can specifiy the link and the image of an item with the MenuComponent class. Jean-Noel - Original Message - From: Rakesh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 6:04 PM Subject: Re: hi But what about the 'links' and the 'images'? Rakesh

RE: help..bean write not working..html:form action=bean:write name='formAction' /

2001-04-26 Thread Danail Grigorov
I' afraid that according to JSP specification you CANNOT nest custom tags in the way you are doing with html:form action=bean:write name=\formAction\ /bean:write Danail -Original Message- From: Dudley Butt@i-Commerce [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 4:17 PM

hard encoded charset i18n

2001-04-26 Thread Krzysztof Cielak
Hi, My application retrieves and stores some data in Oracle database using EJB. To obtain proper encoding of chars I use following statement on every jsp page %@ page language="java" contentType="text/html;charset=ISO-8859-2"% I also use international property file Resources_pl.properties.

Reducing the burden on ActionServlet.

2001-04-26 Thread Tewathia, Atul
Title: Reducing the burden on ActionServlet. In our project we have more than one hundred jsp (each having an average of 2 or 3 forms )and we have already decided to use struts as our framework. Now the dilema :- We found that managing such a large number of jsp from a single

Re: How to have two tags populate one field?

2001-04-26 Thread Peter Alfors
I would place the logic of which field to use in your action class that is submitting the request. Pete Alex Colic wrote: Hi, I have a bit of a problem. I have a select box and a text box which I need to both point to one property. The combo has a list of titles. The user could select

RE: Help me defend Struts taglibs!!!

2001-04-26 Thread Duffey, Kevin
scriplets are faster from what I understand as taglibs require some object creation, and they use the PrintWriter for output. Scriplets are much uglier though..and are much like adding html to servlets. Its much harder to manage. Personally, I prefer using XSL and JSP for dynamic XML output.

localization hor html tags

2001-04-26 Thread Eugene Krivopaltsev
I could use localized name in a button tag using construct like : input type=button value=bean:message key=/ / Are there any lighter way to specify i18n key for html tags. Thanks, -- Eugene Krivopaltsev Sun Microsystems, Inc. [EMAIL PROTECTED]

Re: Database access problem

2001-04-26 Thread TODD HARNEY
Do the files in the lib directory have to be a JAR file and not ZIP? Just wondering. Try renaming the ZIP to a JAR extension. Todd [EMAIL PROTECTED] 4/26/01 2:34 Hi Folks, For those of you with ten minutes to spare, please read on. I'm having trouble with my database test app. As a

Re: localization hor html tags

2001-04-26 Thread Mike Fitterman
This is may be left over from the struts version 0.5 days when their was one tag library rather than multiple. They probably didn't clean it up. Mike. At 11:01 AM 4/26/2001 -0700, you wrote: I could use localized name in a button tag using construct like : input type=button

RE: Database access problem

2001-04-26 Thread Robert Taylor
The second way I tried to run this was by simply establishing a connection to the database manually in my Action classand using Class.forName(jdbcUrl). However, this time, when I try run the app it will crap out when I try to do the actual query and give me a class not found

Database access problem

2001-04-26 Thread Scott Fitzgerald
Hi Folks, For those of you with ten minutes to spare, please read on. I'm having trouble with my database test app. As a background, I'm writing my Action and ActionForm classes in Visual Age for Java, then exporting my classes to the WEB-INF\classes directory of my application. Within

How to use the MESSAGE as an attribute's value?

2001-04-26 Thread Suriyanarayanan, Senthil Kumar
Title: Reducing the burden on ActionServlet. Hello, I would like to know how to subsitute the Message's value in the following code.. html:link page='%="/navigation.do?nav=profile"%'img src="/images/profile.gif" /html:link. How to replace the string "profile" with

RE: Database access problem

2001-04-26 Thread Scott Fitzgerald
Actually, it is jdbcDriver that I use in the call to Class.forName() not jdbcUrl. Sorry for the misprint. Scott Fitzgerald

RE: Visual Age 3.5.3 Tomcat with Struts

2001-04-26 Thread Darren_James
Struts Users, A little off topic, but I saw some discussion in prior messages about Apache Test Environment Visual Age. Is anybody using VA 3.5.3 with Apache Tomcat? Is there a download available somewhere for the Apache Test Env. that is compatible with VA 3.5.3? - Darren

RE: Visual Age 3.5.3 Tomcat with Struts

2001-04-26 Thread Natra, Uday
Hi Darren, R u Darren James Collins, by any chance. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 1:59 PM To: [EMAIL PROTECTED] Subject: RE: Visual Age 3.5.3 Tomcat with Struts Struts Users, A little off topic, but I saw some

RE: Database access problem

2001-04-26 Thread struts
sorry, i didn't read the full details of your problem earlier. however, for the below, just for kicks, try calling newInstance() as in: Class.forName(...).newInstance() I've noticed some drivers require an actual instance somewhere to be created just once. jae Scott Fitzgerald writes:

RE: Visual Age 3.5.3 Tomcat with Struts

2001-04-26 Thread Wayland Chan
Download it from IBM's VAJ site... http://www7.software.ibm.com/vad.nsf/(WebDLProductIndex)?openviewCount=500TargetFrame=webdlproductindex Wayland Chan __ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices

Can someone PLEASE PLEASE explain in more detail the path input attribute values of Action

2001-04-26 Thread Jonathan
It is not clear to me exactly whatthese values could or should be. I understand that the ".do" is stripped of the request, so does that mean I only have to match everything up to the ".do" ? Why is a "/" used? To me this means "root", and in fact in the Login example the path changes from

RE: (architectural issue/feature request) JavaBeans in Struts are n't flexible enough

2001-04-26 Thread Jason Te Whau
Hi Iraklis I did alot of experimenting with this approach on my previous project about four months ago i.e. a generic JavaBean that was an extension of the HashMap object with generic getProperty/setProperty methods. I hit upon the idea of storing the properties and meta data for the JavaBeans

RE: How to use the MESSAGE as an attribute's value?

2001-04-26 Thread TIqbal
I think it would be something like this: % java.util.ArrayList cards = new java.util.ArrayList(); cards.add(101); cards.add(102); cards.add(103); cards.add(104); pageContext.setAttribute(mycards, cards, PageContext.PAGE_SCOPE); % logic:iterate id=pagelink

How to create multiple select boxes?

2001-04-26 Thread Alex Colic
Hi, quick questions. I am trying to figure out how to create multiple select boxes on the fly. I have a class CategoryList the extends vector. To this list I add elements of type Category, which has a getCategoryValues() method which returns a vector of categories (String) as well as a

struts at webappcabaret

2001-04-26 Thread Jens Rehpöhler
Hi all, I have some questions/problems about using struts at www.webappcabaret.com: Which servlet engine should I use: Tomcat 3.1 or NGASI 1.0? Where do they differ? When using Tomcat 3.1 I get the followig error message: --- 8 --- Error: 500 Location: /xpmailorg/index.jsp Internal Servlet

RE: Help. Stuts + iPlanet Webserver

2001-04-26 Thread Matthew Fowkes
We have basically the same problem. We created a new project as a test and deployed it under iPlanet. Everything works so far except the custom tags. We are receiving the following exception: 26/Apr/2001:15:56:58] info ( 192): JSP: JSP1x compiler threw exception

Re: Help me convince my team in the need of separate development and deployment directory structures

2001-04-26 Thread Ted Husted
Danail Grigorov wrote: P.S. One of the commented applications was Ted Husted's WXXI-GAVEL. They claim that it uses single development and deployment structure and there is nothing wrong with that. Can anybody give me some clues ? I have my development structure under the deployment

Re: FormBeans and Thread Safety

2001-04-26 Thread Jonathan
Where in the docs does it say that Action objects are pooled?!! - Original Message - From: Rajan Gupta [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Ryan Rich [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 8:58 AM Subject: Re: FormBeans and Thread Safety No. ActionForm are created for

#### Can someone pleeeeeeeeese elaborate on the rules regarding Action attribues input and path ....Please ####

2001-04-26 Thread Jonathan
It is not clear to me exactly whatthese values could or should be. I understand that the ".do" is stripped of the request, so does that mean I only have to match everything up to the ".do" ? Why is a "/" used? To me this means "root", and in fact in the Login example the path changes from

RE: FormBeans and Thread Safety

2001-04-26 Thread Roman Fail
From: http://jakarta.apache.org/struts/userGuide/building_controller.html#acti on_classes Design issues to remember when coding Action classes include the following: The controller servlet creates only one instance of your Action class, and uses it for all requests. Thus, you need

Re: #### Can someone pleeeeeeeeese elaborate on the rules regarding Action attribues input and path ....Please ####

2001-04-26 Thread dhay
Hi. Have regular mapping in web.xml: !-- Action Servlet Mapping -- servlet-mapping servlet-nameaction/servlet-name url-pattern*.do/url-pattern /servlet-mapping and then in struts-config.xml, have the following path set up: !-- Show Log filter -- action

web.xml servlet element problem

2001-04-26 Thread Jeremy Mann
I am a newbie with struts. I have downloaded struts and have gotten the demo to work and am trying to get a hello world struts webapp to work. When I start weblogic I get the following exception. Org.xml.sax.SAXParseException: Element web-app does not allow servlet-mapping here.

MultipartIterator

2001-04-26 Thread hunkpapa
Hi i've try to use the MultipartIterator, but it doesn't work. In the JSP is: ... form action=testUpload.do enctype=multipart/form-data method=post ... In the Servlet ... MultipartIterator iterator = new MultipartIterator(request); MultipartElement element; while

Re: #### Can someone pleeeeeeeeese elaborate on the rules regarding Action attribues input and path ....Please ####

2001-04-26 Thread Jonathan
So what about your relative path after you hit the servlet. Doesit change?Does it change depending on your web.xml settings? Does it take you a level up? Does it take you to the root? How do you manage this? Does this assume you are in the same directory as "/index.jsp". That is, if I

html:form action suffix question

2001-04-26 Thread Jacob Thomas
I have a jsp with the following tag: html:form method=get action=/designer/folders.bws However, the form tag in the generated html has the .bws suffix changed to .do? form name=designerFoldersForm method=get action=/bam/designer/folders.do The action mapping is: action

RE: #### Can someone pleeeeeeeeese elaborate on the rules regarding Action attribues input and path ....Please ####

2001-04-26 Thread Natra, Uday
Path is basically what U specify in the html form action attribute. for ex:form action="/logon" so U need to define a matching action in the config file for the path "/logon". The input attribute in the config file is the name of the jsp to which the control should be forwarded in case

Boycott China - please read - your life may depend on it

2001-04-26 Thread Rick Horowitz
Hello Everyone, The following speech, reprinted from www.newsmax.com, was made this Tuesday night by U.S. Congressman Dana Rohrabacher of California. I urge you all to read every word of this speech. I have been aware of much of the budding catastrophe we face regarding China, yet have not

To Roman Fail

2001-04-26 Thread Jonathan
Roman, kindly tell me what this list is for if not for such questions. I just hope the rest of the helpful people on this list continue to be as helpful as they have. I can only assume you feel that this 2+ year framework is a cinch. Just ignore my questions so I can keep working with the rest

Re: (struts + EJB) example

2001-04-26 Thread Bryan Field-Elliot
Chris, I don't have an example for you, but I have written a brief post-mortem analysis of a major project just finished which used EJB and Struts. It can be found here: http://www.mail-archive.com/struts-user%40jakarta.apache.org/msg06088.html It was posted to this group, but no one had

Stuts + iPlanet Webserver (works for me...)

2001-04-26 Thread Keith Morrell
I am using iPlanet both Netscape 6 browsers and IE5.5, using a range of struts tags, and all is working fine for me... Email me if you want more details of my setup Keith Please note new extension number/s below... Keith Morrell EDS Consultant, TRAID Project Phone +64-9-308-5650 EDS

mod_jk troubles

2001-04-26 Thread Steve Taylor
I am trying to get Apache1.3.19 to forward requests with a .do extension to Tomcat3.2.1. I have included the following line in my httpd.conf: include /opt/jakarta-tomcat-3.2.1/conf/mod_jk.conf-auto Here is my mod_jk.conf: LoadModule jk_module libexec/mod_jk.so IfModule mod_jk.c JkWorkersFile

RE: To Roman Fail

2001-04-26 Thread Iraklis Kourtidis
Hi Jonathan, I hate to agree about the pushiness, but most people probably don't think it's very nice of you to post a question with or * around its subject. It implies that your questions are more urgent than others'. Nobody else in this list seems to be doing this right now. I

RE: Boycott China - please read - your life may depend on it

2001-04-26 Thread Robb Greathouse
We started boycotting them 5 years ago for human rights abuses, welcome to the club. But it is difficult to find shoes and other items that are today made almost exclusively in China, many with slave labor. -Original Message- From: Rick Horowitz [mailto:[EMAIL PROTECTED]] Sent:

How to achieve this..

2001-04-26 Thread Suriyanarayanan, Senthil Kumar
Hello, I would like to know how to assign a message:bean' s value to a variable. bean:define id=foo value=bean:message key=profile/ / does not work. Thanks in advance Senthil Kumar.S ** The Information

RE: mod_jk troubles

2001-04-26 Thread Chen, Yong
See mail archive article on your problem. http://www.mail-archive.com/struts-user@jakarta.apache.org/msg00476.html Yong Chen [EMAIL PROTECTED] -Original Message- From: Steve Taylor [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 6:07 PM To: 'Struts-User (E-mail) Subject:

RE: MultipartIterator

2001-04-26 Thread Chen, Yong
Would casting do you any good? while ((element = (MultipartElement) iterator.getNextElement()) != null) Yong Chen -Original Message- From: hunkpapa [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 5:17 PM To: [EMAIL PROTECTED] Subject: MultipartIterator Hi i've

Re: Boycott China - please read - your life may depend on it

2001-04-26 Thread Craig R. McClanahan
On Thu, 26 Apr 2001, Rick Horowitz wrote: Hello Everyone, The following speech, reprinted from www.newsmax.com, was made this Tuesday night by U.S. Congressman Dana Rohrabacher of California. I urge you all to read every word of this speech. I have been aware of much of the budding

RE: Session attributes in JRUN

2001-04-26 Thread Zhengxi Ruan
try HttpSession session = request.getSession(false); in action class jesse -Original Message- From: Gogineni, Pratima [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 1:12 PM To: '[EMAIL PROTECTED]' Subject: Session attributes in JRUN Hi, I have a webapp based on struts that

RE: Boycott China - please read - your life may depend on it

2001-04-26 Thread Kurt Olsen
Hey - politics and struts don't mix. Lay off my email address. -Original Message- From: Rick Horowitz [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 12:22 PM To: Horowitz Subject: Boycott China - please read - your life may depend on it Hello Everyone, The following speech,

My apologies

2001-04-26 Thread Rick Horowitz
My sincere apologies to the mailing list for the Boycott China message. I sent it by accident, without filtering mailing list addresses from my personal email addresses before sending. Sincerely, Rick Horowitz _

Apology

2001-04-26 Thread Rick Horowitz
At 02:19 PM 4/26/01 -1000, you wrote: Hey - politics and struts don't mix. I agree. I sent this msg to the Struts list totally by accident. Thanks for your tame reply. Regards, Rick -Original Message- From: Rick Horowitz [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001

Looking for struts sample demonstrating multi paged wizards

2001-04-26 Thread Jeff Trent
Can any one point me the right direction for finding a sample app built on struts that demonstrates multi-paged wizards supporting previous,next, finish type actions for each page along the way? Thanks, Jeff

RE: struts at webappcabaret

2001-04-26 Thread Michael Mok
Hi Jens The servlet engine to use is Tomcat 3.1. Looking at your error message. It looks like you have placed your struts-html.tld into the META-INF folder. Try placing it into your WEB-INF folder. Regards, Michael Mok -Original Message- From: Jens Rehpöhler [mailto:[EMAIL

RE: #### Can someone pleeeeeeeeese elaborate on the rules regarding Action attribues input and path ....Please ####

2001-04-26 Thread Natra, Uday
relative reference is enough. -Original Message-From: Jonathan [mailto:[EMAIL PROTECTED]]Sent: Thursday, April 26, 2001 5:17 PMTo: [EMAIL PROTECTED]Subject: Re: Can someone plese elaborate on the rules regarding Action attribues "input" and "path" Please

Re: struts at webappcabaret

2001-04-26 Thread Jim Richards
Michael Mok wrote: The servlet engine to use is Tomcat 3.1. Tomcat 3.1 has lots of buggies in it, you're better off using a 3.2.x version or go straight to a 4.0, although I think 4.0 is still in beta.

resin and struts example

2001-04-26 Thread Phil DiCorpo
Hello, I was trying to get the struts example to work with Resin 1.2.5, and was having some difficulty. When I run the web app I get the following stack trace ... java.lang.NoSuchMethodError: javax.servlet.UnavailableException: method init(Ljava/lang/String;)V not found at

RE: My apologies

2001-04-26 Thread Kurt Olsen
cool. forgiven. -Original Message- From: Rick Horowitz [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 2:25 PM To: Horowitz Subject: My apologies My sincere apologies to the mailing list for the Boycott China message. I sent it by accident, without filtering mailing list

Re: resin and struts example

2001-04-26 Thread Tharwat Abdul-Malik
It looks like the DatabaseServlet is not being loaded. If you are configuring your web app using resin.conf, you will need to add the DatabaseServlet to it and have it loaded at startup. I'm using Resin also, but I use an web.xml file as follows: !-- Initialization Database Servlet

Re: Looking for struts sample demonstrating multi paged wizards

2001-04-26 Thread Tharwat Abdul-Malik
Search the archives for: Re: wizard style example, anywhere? I posted a reply to a similar question two days ago. - Original Message - From: Jeff Trent To: [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 9:58 PM Subject: Looking for struts sample

  1   2   >