Struts JBuilder 5

2002-01-04 Thread Sushant Patney
Hi All, Can anyone please tell me the meaning of Struts support for JBuilder 4 /5 If struts is a Java framework , it should be supported by any IDE. 1) Is there anything special supported by JBuilder for Struts. 2) What is the need for any plugin for JBuilder to work with Struts. I am using

AW: Resin 2.0.0 Struts 1.0 JDK1.4.0-beta3 BUG?

2002-01-04 Thread Lenharcik Juraj
Hi Simon and All, I have tried it like Simon with the one application and then with the second one in the container alone and it worked. That means, that one application in the container work without any problems but when I have two struts based applications in the container, than I become a

RE: Struts JBuilder 5

2002-01-04 Thread Andres Marcel (KASO 21)
Hi Sushant You are right. You can use/run Struts within JBuilder5 without any need for additional plugin (at least at my workplace, we don't use the open tools from Borland). But there are other resources, which tell you how to use the plugin (which I don't know in detail). See

Re: javax.servlet.ServletException: Cannot find message resources under key org.apache.struts.action.MESSAGE

2002-01-04 Thread Andy Timm
Jack, I just had this problem while migrating from an NT box to Linux. My problem was that I had struts.jar not only in the WEB-INF/lib directory, but also in the Tomcat classpath. I took the jar file out of the classpath and all was good. Hope this is your problem, Andy --- Jack [EMAIL

Re: File upload error when no file attached - IOException

2002-01-04 Thread Daniel WAMARA
Hi Doug, I don't know if you've already found solution to your problem but what you can do is to put a form validation in your ActionForm that handles that, here is what I did for mine (it also handles the case if a file is empty, saying with a 0 Kb size) : /** * Validate the

RE: Struts JBuilder 5

2002-01-04 Thread Jesse Alexander (KABS 11)
Hi Sushant, in the mailing-list searchable archive you can look for an email in which I describe how we use Struts and JBuilder (basically a special way to start the tomcat-environment) and for which the plug-ins are not necessary.

RE: Using Struts with XSLT

2002-01-04 Thread Taylor Cowan
Yes, you are correct about comlexity. However, when you define the XML format, you only need 1 style sheet. Then you are modifying the XML. As for things XSLT cannot do see http://www.javaworld.com/javaworld/jw-12-2001/jw-1221-xslt.html? Taylor -Original Message- From: Shengmeng Liu

RE: Struts JBuilder 5

2002-01-04 Thread Charlotte
Hi Yes it is possible to use JB5(Pro/Ent) without the opentool plugins from borland - but - life is a whole lot easier if you do use them. - Without the tools you will have problems deploying the JB generated war files - the tld's will be excluded!! I would also suggest using

Re: [ANNOUNCE] Struts Console v1.3

2002-01-04 Thread James Holmes
Hi Sushant, The Struts Console software is simply an add on tool for JBuilder that assists in the management of Struts config files. The software is not required in any way to make Struts work with JBuilder. Thanks, -james [EMAIL PROTECTED] http://www.jamesholmes.com/struts/ --- Sushant

Cheap and nasty Single Sign On through a HttpConnection proxy?

2002-01-04 Thread Peter Pilgrim
Happy new year Everyone here must have written a Logon action and Login form bean. Has any used jakarta's HttpConnection class? http://jakarta.apache.org/commons/httpclient/api/org/apache/commons/httpclient/HttpConnection.html I have an idea to perform a very basic single sign-on to another

taglib question

2002-01-04 Thread William Shulman
Here is something I have been having trouble with: (1) Imagine I have written the tag library defined in foo.tld (2) Image I am also developing many webapps that use foo.tld Question: when I deploy my webapps, must I have a copy of foo.tld in each and every webapp that uses it? Thus, if I

Strategy for International/XML Project

2002-01-04 Thread Robert Jackson
Folks, I will be arechtecting/developing an application as follows: 1) Support for English/Spanish Presentation 2) No Database Available 3) All site data stored in flat files or XML files 4) XML messages sent/received from third parties 5) App Server will be Weblogic 6.1 6) Use cookie to store

RE: Strategy for International/XML Project

2002-01-04 Thread Luke Studley
Robert, For issues concerning schema languages etc have a look at http://www.xml.com/pub/a/2001/12/12/schemacompare.html I definitely recommend Log4J over servletcontext log. You may want to consider using DOM4J instead of JDOM - similar capabilities but dom4j has programmatic XPath support.

RE: taglib question

2002-01-04 Thread Siggelkow, Bill
If you are using Weblogic, you would put the jar file containing foo.tld in the application server's classpath as opposed to the WEB-INF for each of the web apps. -Original Message- From: William Shulman [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 8:11 AM To: [EMAIL

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
Thanks everyone so much for the quick responses. Turns out that it was very simple, and I had a jar in the weblogic classpath that was trying to make use of struts. thanks Jeremy -Original Message- From: Lawrence, Jane K [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
I am now getting the dreaded ClassCastException. This again only occurs when the webapps is unpacked. Any solutions besides putting struts.jar in the weblogic classpath? Jeremy -Original Message- From: Lawrence, Jane K [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 03, 2002 5:54

RE: taglib question

2002-01-04 Thread Michelle Popovits
In my opinion, yes, but that does not mean you have to maintain 10 separate copies of this file. Have one copy of the file, and in your build scripts for your web application simply copy the file into your webapp as needed. Personally, I prefer to have everything within the webapp (3rd party

RE: Parser error while testing struts-layout

2002-01-04 Thread DUPRAT Alexandre
I just managed to execute struts-layout. My problem was i did not remome jaxp.jar in tomcat\lib directory. So i had 2 classes with the same name loaded in tomcat VM. Removing jaxp.jar, putting xerces.jar in place and replacing strut-layout\WEB-INF\lib\digester.jar by the last version of digester

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Kiet Nguyen
There is a patch for wls 5.1 sp8. Search for in on the struts mailing list. wls 5.1 conflicts with struts. -Original Message- From: Jeremy Mann [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 6:27 AM To: Struts Users Mailing List Subject: RE: NoClassDefFound Error in weblogic

RE: taglib question

2002-01-04 Thread McDowell, Mark
Actually, if you have a web server that's always available to your applications, you can put the tld on the web server and use the url rather than the direct path to the tld, can't you? I'm not an expert, but I thought I've seen some examples do this... Mark -Original Message- From:

RE: NoClassDefFound Error in weblogic

2002-01-04 Thread Jeremy Mann
I tried this but I am still getting the class cast exception. Any other ideas. Will service pack 10/11 do this trick? I didn't see anything in their decriptions in the weblogic site that would indicate this. Jeremy -Original Message- From: Kiet Nguyen [mailto:[EMAIL PROTECTED]]

Anyone using STUTS with Webgain's Visual Cafe?

2002-01-04 Thread Phil Jackson
Just wondering if anyone has setup a STRUTS project template in Visual Cafe? Thanks! Phillip Jackson Programmer/Analyst Enterprise Data Warehouse -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: taglib question

2002-01-04 Thread Michelle Popovits
I don't think so (someone please correct me if I'm wrong). I believe you specify in the web.xml the location of the tablib within the webapp (taglib-location) and a name that will be used to reference it within the jsp (taglib-uri). Often people specify something that looks like a url for the

RE: taglib question

2002-01-04 Thread McDowell, Mark
I'm pretty sure you're right, Michelle. I was thinking of XML files... oops... -Original Message- From: Michelle Popovits [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 9:59 AM To: 'Struts Users Mailing List' Subject: RE: taglib question I don't think so (someone please

anyone have struts templates for netbeans/forte?

2002-01-04 Thread Lawson, Rick
Hi. Has anyone created templates for quickly creating action classes and so on in Netbeans? I already have the (very good) struts console installed - just need to save some finger tapping with the actual code and the World will be a better place... Rick Lawson.

I am pushing Tomcat / Struts in my company...

2002-01-04 Thread wbchmura
Hello, I am doing a push to bring in Tomcat/Struts for our web development. You see the choice is going to be that or .NET. In any case, I am going to dog and pony the whole thing in a week or so, and right now an looking at ways to speed the development of an application under struts /

RE: Forwarding Data For A Form

2002-01-04 Thread Jack Frosch
Jake, Thanks for the tip. I hadn't thought of prepopulating a form and pushing onto the request object before returning the ActionForward. Is the form name (i.e. key) you store the form under in the request object the same as that set in the name property of the action tag in the action

GUI Taglib - where to download?

2002-01-04 Thread Matt Raible
There is a very cool tag library at http://edhill.its.uiowa.edu/taglib-gui/. Anyone know where I can get it's binary or source distribution? Thanks, Matt -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Dynamic drop down lists

2002-01-04 Thread Michael Hass
Hello, I'm using the following piece of code to generate a select box with dynamic options: strutshtml:select property=ageId strutshtml:options name=myStringArray/ /strutshtml:select This grabs a String array out of session called myStringArray and properly displays the

Struts under ATG Dynamo

2002-01-04 Thread Paolo Balzarotti
Hello, does anyoune of you use Struts under ATG Dynamo or have notice of anyone using? Thanks -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

controller servlet session lost

2002-01-04 Thread Narendranatha R Sajjala
Hi, we are using 5 web servers WeblogicEnterprice where all my jsp's and servlets are residing, and we have a cluster of WLS for EJB's. Load balancing on webservers is done by third party software. Now the problem is first time user hits the website the load balancer transfers the request to one

Re: I am pushing Tomcat / Struts in my company...

2002-01-04 Thread Pete Carapetyan
Can anyone recommend any code generators, bean builders, etc, etc that can make the whole process faster? webAppWriter.com has 33 struts database access samples, downloadable, viewable, etc, all generated by it's own code generator. The code generator is still proprietary until I attract

RE: controller servlet session lost

2002-01-04 Thread Robert Nocera
I believe you should be able to configure load balancing so that it is sticky and sends the same client to the same webserver each time. Robert Nocera New England Open Solutions www.neosllc.com You supply the vision, we'll do the rest. -Original Message- From: Narendranatha R Sajjala

RE: Forwarding Data For A Form

2002-01-04 Thread Jack
Jake, Just to follow-up, this worked exactly as I would have hoped. For anyone interested, this approach is useful to handle situations where information is accumulating across multiple forms and beans each subsequent form needs some of the data from earlier forms. Off the top of my head, it

RE: I am pushing Tomcat / Struts in my company...

2002-01-04 Thread Chappell, Simon P
Thus spake Pete Carapetyan: The code generator is still proprietary until I attract enough interest in my little practice to quit using it as a magnet. That would be wonderful. :-) I sincerely wish you good fortune, so that you can bring this to pass. I'm just sorry that I can't rustle up any

struts-example question

2002-01-04 Thread Balu Raman
I just downloaded struts and I am trying to get the struts-example application running. Needless to say that I am new to struts. index.title is in the proper file at ~/jakarta-tomcat-3.2.3/webapps/struts-example/WEB-INF/classes/org/apache/struts/ webapp/example/ApplicationResources.properties.

Re: I am pushing Tomcat / Struts in my company...

2002-01-04 Thread Pete Carapetyan
The code generator is still proprietary until I attract enough interest in my little practice to quit using it as a magnet. That would be wonderful. :-) I sincerely wish you good fortune, so that you can bring this to pass. I'm just sorry that I can't rustle up any work for you. I'll keep

Need info for Struts Presentation

2002-01-04 Thread Michelle Popovits
Good Day Everyone, I am preparing to give a presentation on Struts to our internal engineering staff. This is intended to be short technical presentation on Struts of about 20 minutes in length. If anyone out there has done any such presentation and has some documents (ie. PowerPoint slides)

Example of using Jmeter with Struts

2002-01-04 Thread Alex Colic
Hi, does anyone have an example of using jmeter to stress test a struts app? I have downloaded the jmeter files and I am going over the docs but it looks pretty complicated. Any examples would be appreciated. Alex -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

RE: Strategy for International/XML Project

2002-01-04 Thread Robert Jackson
Folks, I just figured out that my favorite XML tool (XMLSPY) has unicode support. Robert Jackson -Original Message- From: Robert Jackson [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 7:33 AM To: 'Struts Users Mailing List' Subject: Strategy for International/XML Project

precompile struts page

2002-01-04 Thread Gao, Gang
Hi, I need to precompile the struts page. I deploy the whole jsp pages as a filename.war file.(I'm using Weblogic 6.0) When I went through the Weblogic 6.0 documentation, I found the Weblogic 6.0 has a tag: context-param param-nameweblogic.jsp.precompile/param-name

RE: Forwarding Data For A Form

2002-01-04 Thread Todd Pettepier
Let's assume your jsp is named login.jsp and that it has a corresponding form bean named LogonForm. In the forwarding Action instantiate an instance of Logon Form and then put it on the request (using setAttribute). i.e. LogonForm logonForm = new LogonForm(); logonForm.setUserName(milton);

Re: Struts with BES 5.0 problem

2002-01-04 Thread Mark Gordon
I don't have a full answer for you, just some info. I have had problem with the digester (this seems to be where you are having problems also) with the following configuration: JDK 1.4.0b? Apache (latest version ...not sure exactly) mod_webapp (latest version) Tomcat 4.0.1 (I think latest

Browser timed-out while action still going on

2002-01-04 Thread Thinh Doan
Hello everyone, I have a file upload process that could take up to 1 hour to finish. It always returns some ActionErrors to the input page when done. I have the following questions: 1) I observed that the browser timed-out and return to the input page but the upload process still running in

Newbie question

2002-01-04 Thread Mark Woon
Hello, I've just started looking at Struts, and I'm trying to figure out how to set an action as the default file for the webapp? For example, I have an index.do Action, and I'd like that served by default instead of index.htm[l]. Is this possible? Thanks, -Mark -- To unsubscribe, e-mail:

Documentation for struts-config.xml?

2002-01-04 Thread Mark Woon
Hello all... Another newbie question: is there any documentation for struts-config.xml? Thanks, -Mark -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Documentation for struts-config.xml?

2002-01-04 Thread Ramanswamy, Muthu
Check the following dtd: http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd -Original Message- From: Mark Woon [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 5:50 PM To: [EMAIL PROTECTED] Subject: Documentation for struts-config.xml? Hello all... Another newbie

index.do as welcome file?

2002-01-04 Thread Mark Woon
Mark Woon wrote: I've just started looking at Struts, and I'm trying to figure out how to set an action as the default file for the webapp? For example, I have an index.do Action, and I'd like that served by default instead of index.htm[l]. Is this possible? After looking at the

Questions on Actions

2002-01-04 Thread Mark Woon
Hello all... I've got a couple more questions I'm hoping someone can help me with: 1) What's the difference between action include and action forward if they both target a JSP page? Is it the same as jsp:include vs. jsp:forward (I don't see how it could be)? 2) After an action include or

Another Question on Actions

2002-01-04 Thread Mark Woon
Hello all... Last question tonight, I promise: Can an Action class forward to/include a JSP or HTML page that is neither listed in global-forwards nor defined as a legitimate forward in an action tag in struts-config.xml? Thanks, -Mark -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

Re: index.do as welcome file?

2002-01-04 Thread Barry L. White
Mark Woon wrote: Mark Woon wrote: I've just started looking at Struts, and I'm trying to figure out how to set an action as the default file for the webapp? For example, I have an index.do Action, and I'd like that served by default instead of index.htm[l]. Is this possible? After looking

Re: Need info for Struts Presentation

2002-01-04 Thread Barry L. White
Michelle Popovits wrote: Good Day Everyone, I am preparing to give a presentation on Struts to our internal engineering staff. This is intended to be short technical presentation on Struts of about 20 minutes in length. If anyone out there has done any such presentation and has some documents

Re: Newbie question

2002-01-04 Thread Barry L. White
Mark Woon wrote: Hello, I've just started looking at Struts, and I'm trying to figure out how to set an action as the default file for the webapp? For example, I have an index.do Action, and I'd like that served by default instead of index.htm[l]. Is this possible? Thanks, -Mark -- To

Re: Struts JBuilder 5

2002-01-04 Thread Barry L. White
Charlotte wrote: Hi Yes it is possible to use JB5(Pro/Ent) without the opentool plugins from borland - but - life is a whole lot easier if you do use them. - Without the tools you will have problems deploying the JB generated war files - the tld's will be excluded!! I would also suggest using