I am running on Tomcat with pooling turned off. The top lines from the
error/stack trace are below. Let me know if you need to see more and I
> show us that error in the tomcat's (or any other jsp container that you use)
> console.
> That may help somebody find the error.
> guillem
> On Thu, May 15, 2008 at 4:56 PM, mrwe...@gmail.com <mrwe...@gmail.com>
> wrote:
> > I'm using Struts and having difficulty defining multiple points on a
> > map by iterating through beans in an array. The array contains beans
> > each storing the lat and long information for each point. I'm able to
> > print out the lat and long info (commented out in code below) but when
> > I put that data into googlemaps:point I get JasperException: Unable to
> > load class for JSP.
> > Any help would be appreciated.
> > <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
> > <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
> > <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
> > <%@ taglib uri="/WEB-INF/googlemaps.tld" prefix="googlemaps" %>
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <html>
> > <head><title>Locations</title>
> > </head>
> > <body vLink=#660099 aLink=#ff9933 bgColor=#ffffff>
> > <table width='745' border='0' cellspacing="0" cellpadding='0'>
> > <tr><td>
> > <googlemaps:map id="map" width="510" height="500" version="1"
> > type="STREET"
> > zoom="3">
> > <googlemaps:key domain="mydomain" key="mykey"/>
> > <logic:iterate id="location" name="routedata"
> > indexId="locationidx">
> > <%--
> > latitudeAsString='<bean:write name="location"
> > property="latitude" />' longitudeAsString='<bean:write name="location"
> > property="longitude" />' id='<%="point"%><bean:write
> > name="locationidx" />'
> > id='<%="marker"%><bean:write name="locationidx" />' point='<
> > %="point"%><bean:write name="locationidx" />'
> > --%>
> > <googlemaps:point latitudeAsString='<bean:write name="location"
> > property="latitude" />' longitudeAsString='<bean:write name="location"
> > property="longitude" />' id='<%="point"%><bean:write
> > name="locationidx" />' />
> > <googlemaps:marker id='<%="marker"%><bean:write
> > name="locationidx" />' point='<%="point"%><bean:write
> > name="locationidx" />' />
> > </logic:iterate>
> > <googlemaps:panControl enable="true"/>
> > <googlemaps:typeControl enable="true"/>
> > <googlemaps:zoomControl enable="true" size="large"/>
> > <googlemaps:wheelControl enable="true"/>
> > </googlemaps:map>
> > <googlemaps:scripttag id="map" scope="page" />
> > <googlemaps:javascript id="map" scope="page" />
> > <googlemaps:div id="map" scope="page" />
> > <googlemaps:initialize id="map" scope="page" />
> > </td></tr>
> > </table>
> > </body>
> > </html>
> --
> Guillem Corominas
> R&D
> Dexma Sensors, SL
> Riu de l'or 35, ES-08034, Barcelona
> m:
...