RE: javax.servlet.UnavailableException: Input/output error reading configuration from resource path /WEB-INF/struts-config.xml

2001-06-22 Thread Sukachevin, Stoehr
But the XML parser that the Digester uses should be able to get the dtd from struts.jar. Is struts.jar in your weblogic classpath or in your web app? I have no problems when struts.jar is in the weblogic classpath for v5.1 SP9. Not sure about when it is in a web app's lib directory, though.

RE: javax.servlet.include.path_info ????

2001-06-21 Thread Sukachevin, Stoehr
Check the Java Servlet Spec API. v2.2 says: When a servlet is being used from within an include, it is sometimes necessary for that servlet to know the path by which it was invoked and not the original request paths. The following request attributes are set: javax.servlet.include.request_uri

RE: html:errors/ tag

2001-05-23 Thread Sukachevin, Stoehr
Sounds like you want the application resource bundle to be an instance of your MessageResource subclass. In that case, you should just have to specify your MessageResourcesFactory subclass fully qualified name for the factory init parameter of the ActionServlet (see

RE: html:errors/ tag

2001-05-22 Thread Sukachevin, Stoehr
You can subclass org.apache.struts.util.MessageResources to provide your own database implementation of a resource bundle (as opposed to the common properties implementation via org.apache.struts.util.PropertyMessageResources), put an instance of your subclass in a servlet context

RE: A struts-compatible controller

2001-04-13 Thread Sukachevin, Stoehr
Dan - Blue Lotus Software wrote: I think if this thing is to go into production, I should actually create marker [GoF '95] interfaces to indicate what type of variable it is. Are you referencing a particular GoF design pattern or something they wrote in general in the '95 book? -- Stoehr

Use of RequestUtils.absoluteURL() in LinkTag [and RedirectTag]

2001-04-12 Thread Sukachevin, Stoehr
Is it really necessary to have the LinkTag [and RedirectTag] use the RequestUtils.absoluteURL() method when the "forward" or "page" attribute is specified? Doing so for LinkTag (obviously) causes the generated URL to be an absolute URL (e.g., "http://jakarta.apache.org/struts/index.html" as

RE: cvs commit: jakarta-struts/web/upload display.jsp upload.jsp

2001-04-12 Thread Sukachevin, Stoehr
We're using it on a large web application, and have been very happy with it. (Kudos to Craig McClanahan and everyone else for a great framework!) -- Stoehr -Original Message- From: Natra, Uday [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 11, 2001 07:02 PM To: '[EMAIL PROTECTED]'

RE: Use of RequestUtils.absoluteURL() in LinkTag [and RedirectTag ]

2001-04-12 Thread Sukachevin, Stoehr
al Message----- From: Sukachevin, Stoehr Sent: Thursday, April 12, 2001 02:18 PM To: '[EMAIL PROTECTED]' Subject: RE: Use of RequestUtils.absoluteURL() in LinkTag [and RedirectTag ] Craig McClanahan wrote: * For the link tag, the logic is faced with having a context-relative path (retrieved f

RE: keepgenerated with struts in Weblogic

2001-03-27 Thread Sukachevin, Stoehr
Are you saying that the compiled JSPs are not being kept by WebLogic? If so, you should specify the following at the beginning of the web.xml file for the particular web application: context-param param-nameweblogic.jsp.keepgenerated/param-name param-valuetrue/param-value

RE: Multiple ActionServlet instances in a web app

2001-03-22 Thread Sukachevin, Stoehr
My implementation erroneously did not have the "fix" applied to the html:rewrite tag, so here it is for those interested: http://users.erols.com/sukachevin/struts/MultiRewriteTag.java -- Stoehr -Original Message----- From: Sukachevin, Stoehr Sent: Wednesday, February 28, 200

RE: ActionErrors and Debug Info of JBuilder saved in the Class Files

2001-03-01 Thread Sukachevin, Stoehr
Let's not forget the 3rd solution of explicitly specify the serialVersionUID (private static final long) for the class, which seems to be the best solution. -- Stoehr -Original Message- From: Vincent Harcq [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 08:54 AM To: [EMAIL