NoSuchMethodError exception in ActionServlet init

2002-12-05 Thread Moyer, Alan L
Hi, I just installed Struts 1.1 beta 2 under Weblogic 6.0. When I start up the server I'm getting the following exception during the init of the servlet: [INFO] PropertyMessageResources - -Initializing, config='org.apache.struts.util. LocalStrings', returnNull=true [INFO]

Design tools and Struts

2002-12-11 Thread Moyer, Alan L
I'm interested in finding what web design tools (Example: Dreamweaver) work well with Struts. With a good tool, the effort to go from web page design to JSP with struts tag libraries should be mimimized. Any recommendations? Tools to avoid? Thanks much, Al This transmission is intended only

Relative link to top of page and Struts

2003-02-25 Thread Moyer, Alan L
Hi, I'm having a problem with doing a link within the same page with Struts. The sequence is as follows: 1) Go through a Struts action that forwards to a jsp page. 2) jsp page has the following at the bottom of the page: html:link href=#top associated with an image button At the top of the page

RE: Relative link to top of page and Struts

2003-02-25 Thread Moyer, Alan L
I tried Wendy's suggestion - just used A HREF=#topJump to top of page/A I get the same behavior. Note: The page has struts tags for other, dynamic reasons. For example, html:base/ html:html html:form The browser doesn't seem to understand to just go to the top of the page. I confess I don't have

Sharing resources among multiple Struts modules

2003-03-07 Thread Moyer, Alan L
Hi, I'm working on an application where there are muliple Struts modules. In each struts config file there is a message-resources element with parameter set to a property file containing resources for the module. However, there are a number of properties that are common to all the modules. Is

JSP's under WEB-INF and Struts modules

2003-01-31 Thread Moyer, Alan L
I just read Chuck Cavaness' article Jakarta Struts: Seven Lessons from the Trenches In it he recommends putting the JSP pages underneath WEB-INF. In the article he shows how to write an action as action path=/logoff type=org.apache.struts.webapp.example.LogoffAction forward name=success

Help with using HttpUnit with Struts

2003-10-21 Thread Moyer, Alan L
I recently downloaded HttpUnit and have been trying to use it to test a working Struts application. If anyone is using HttpUnit, please help me get by this problem. Following is a HttpUnit test method adopted from the documentation: public void testGoodLogin() throws Exception {

RE: Help with using HttpUnit with Struts

2003-10-22 Thread Moyer, Alan L
the page directly (i.e. not go through HttpUnit)? Kirk Wylie M7 Corporation Moyer, Alan L wrote: I recently downloaded HttpUnit and have been trying to use it to test a working Struts application. If anyone is using HttpUnit, please help me get by this problem. Following is a HttpUnit test

RE: Help with using HttpUnit with Struts

2003-10-22 Thread Moyer, Alan L
)? That would be my advice too ... (loving HttpUnit :-). You should get the same error, which is likely to be a forward element that doesn't have a defined path attribute (which is what is being accessed on at line 441 of request processor. Craig Kirk Wylie M7 Corporation Moyer, Alan L wrote

HttpUnit and Struts: Problem solved

2003-10-22 Thread Moyer, Alan L
It was a coding bug in my application. I hadn't provided an input parameter for the Login action and the way HttpUnit called the server, it exercised a different code path where mapping.getInputForward() was called. As a Struts enhancement, it would be nice if a different exception besides null