RE: Struts installation on iPlanet 4.1 SP7

2001-09-24 Thread Bacco, F. ing. DTO/SLOD/SSI/RSD

We also had a lot of problems, so we decided to use iPlanet 6.0 (sp1) and
now, after days of frustration with iPlanet 4.1, it works excellent. So.. my
advise, dont use iPlanet 4.1.

Good luck
Frank

-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Verzonden: maandag 24 september 2001 1:31
Aan: [EMAIL PROTECTED]
Onderwerp: Struts installation on iPlanet 4.1 SP7




Is there anyone out there who has sucessfully installed struts on iPlanet
4.1 ?
Please help me 

Thanks
  John



RE: STRUTS Installation problem

2001-09-18 Thread Bacco, F. ing. DTO/SLOD/SSI/RSD

You have to use an other XML parser in place of JAXP. Use Xerces instead and
put the jar in your lib directory.

Ciao, Frank

-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Verzonden: dinsdag 18 september 2001 15:42
Aan: [EMAIL PROTECTED]
Onderwerp: STRUTS Installation problem


Hi,

I have downloaded and unpacked Struts 1.0 and am trying to run the examples
but I am getting following error:-

A Servlet Exception Has Occurred
Exception Report:
javax.servlet.ServletException: Cannot retrieve ActionMappings under key
org.apache.struts.action.MAPPINGS
 at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:442)
 at org.apache.jsp.logon_jsp._jspService(logon_jsp.java:291)
 at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)

.

 I am using Tomcat 4.0 as the Servlet conatiner.

Thanks in advance for any help you can give, Michael



RE: WL5.1(sp8) Web Application 2.2 dtd

2001-09-12 Thread Bacco, F. ing. DTO/SLOD/SSI/RSD

Dinesh,

We encountered probably a similar problem with iPlanet webserver 6.0 (behind
a firewall) our solution was as follows:

The original:
!--DOCTYPE web-app
  PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN
  http://java.sun.com/j2ee/dtds/web-app_2_2.dtd--

Our change, we directed the dtd reference to our struts.jar file of our
application (#MyApp#):
!DOCTYPE web-app
  PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN
 
jar:file:///data/webserv/data/servlets/#MyApp#/WEB-INF/lib/struts.jar!/org/
apache/struts/resources/web-app_2_2.dtd

And it workes fine for us, would be nice if this is going to be of some help
for you.

Ciao, 
Frank Bacco

-Oorspronkelijk bericht-
Van: Dinesh K B [mailto:[EMAIL PROTECTED]]
Verzonden: maandag 10 september 2001 17:19
Aan: [EMAIL PROTECTED]
Onderwerp: WL5.1(sp8) Web Application 2.2 dtd


I'm getting this error while running my struts application (deployed as
a WAR) in Weblogic 5.1(sp 8).

[ServletEntityResolver] : Could not resolve entity '-//Sun Microsystems,
Inc.//DTD Web Application 2.2//EN'.  Check your dtd reference.
Mon Sep 10 20:22:35 GMT+05:30 2001:E HTTP Error reading Web
application 'c:/jakarta/webapps/joinStruts.war'

I'm not able to run my application at all after this.

Basically the XML parser (Xerces) with Weblogic doesn't like the
definition in the web.xml file. I tried changing it to '-//Sun
Microsystems, Inc.//DTD Web Application 1.2//EN'. 
This works well till the time the ActionServlet kicks up. The Xerces
parser then returns a similar error, for the 1.2//EN dtd.

Is there any fix for this, is it possible for Xerces to find the 1.2//EN
dtd locally and not throw the exception ? I have xerces.jar in
WEBLOGIC_CLASSPATH.

Thanks,
Dinesh